

Also from Kynth Studios


Also from Kynth Studios


Also from Kynth Studios
12345# AI-DLC Adaptive Workflow Overview67**Purpose**: Technical reference for AI model and developers to understand complete workflow structure.89**Note**: Similar content exists in welcome-message.md (user welcome message) and README.md (documentation). This duplication is INTENTIONAL - each file serves a different purpose:10- **This file**: Detailed technical reference with Mermaid diagram for AI model context loading11- **welcome-message.md**: User-facing welcome message with ASCII diagram12- **README.md**: Human-readable documentation for repository1314## The Three-Phase Lifecycle:15• **INCEPTION PHASE**: Planning and architecture (Workspace Detection + conditional phases + Workflow Planning)16• **CONSTRUCTION PHASE**: Design, implementation, build and test (per-unit design + Code Generation + Build & Test)17• **OPERATIONS PHASE**: Placeholder for future deployment and monitoring workflows1819## The Adaptive Workflow:20• **Workspace Detection** (always) → **Reverse Engineering** (brownfield only) → **Requirements Analysis** (always, adaptive depth) → **Conditional Phases** (as needed) → **Workflow Planning** (always) → **Code Generation** (always, per-unit) → **Build and Test** (always)2122## How It Works:23• **AI analyzes** your request, workspace, and complexity to determine which stages are needed24• **These stages always execute**: Workspace Detection, Requirements Analysis (adaptive depth), Workflow Planning, Code Generation (per-unit), Build and Test25• **All other stages are conditional**: Reverse Engineering, User Stories, Application Design, Units Generation, per-unit design stages (Functional Design, NFR Requirements, NFR Design, Infrastructure Design)26• **No fixed sequences**: Stages execute in the order that makes sense for your specific task2728## Your Team's Role:29• **Answer questions** in dedicated question files using [Answer]: tags with letter choices (A, B, C, D, E)30• **Option E available**: Choose "Other" and describe your custom response if provided options don't match31• **Work as a team** to review and approve each phase before proceeding32• **Collectively decide** on architectural approach when needed33• **Important**: This is a team effort - involve relevant stakeholders for each phase3435## AI-DLC Three-Phase Workflow:3637```mermaid38flowchart TD39 Start(["User Request"])4041 subgraph INCEPTION["🔵 INCEPTION PHASE"]42 WD["Workspace Detection<br/><b>ALWAYS</b>"]43 RE["Reverse Engineering<br/><b>CONDITIONAL</b>"]44 RA["Requirements Analysis<br/><b>ALWAYS</b>"]45 Stories["User Stories<br/><b>CONDITIONAL</b>"]46 WP["Workflow Planning<br/><b>ALWAYS</b>"]47 AppDesign["Application Design<br/><b>CONDITIONAL</b>"]48 UnitsG["Units Generation<br/><b>CONDITIONAL</b>"]49 end5051 subgraph CONSTRUCTION["🟢 CONSTRUCTION PHASE"]52 FD["Functional Design<br/><b>CONDITIONAL</b>"]53 NFRA["NFR Requirements<br/><b>CONDITIONAL</b>"]54 NFRD["NFR Design<br/><b>CONDITIONAL</b>"]55 ID["Infrastructure Design<br/><b>CONDITIONAL</b>"]56 CG["Code Generation<br/><b>ALWAYS</b>"]57 BT["Build and Test<br/><b>ALWAYS</b>"]58 end5960 subgraph OPERATIONS["🟡 OPERATIONS PHASE"]61 OPS["Operations<br/><b>PLACEHOLDER</b>"]62 end6364 Start --> WD65 WD -.-> RE66 WD --> RA67 RE --> RA6869 RA -.-> Stories70 RA --> WP71 Stories --> WP7273 WP -.-> AppDesign74 WP -.-> UnitsG75 AppDesign -.-> UnitsG76 UnitsG --> FD77 FD -.-> NFRA78 NFRA -.-> NFRD79 NFRD -.-> ID8081 WP --> CG82 FD --> CG83 NFRA --> CG84 NFRD --> CG85 ID --> CG86 CG -.->|Next Unit| FD87 CG --> BT88 BT -.-> OPS89 BT --> End(["Complete"])9091 style WD fill:#4CAF50,stroke:#1B5E20,stroke-width:3px,color:#fff92 style RA fill:#4CAF50,stroke:#1B5E20,stroke-width:3px,color:#fff93 style WP fill:#4CAF50,stroke:#1B5E20,stroke-width:3px,color:#fff9495 style CG fill:#4CAF50,stroke:#1B5E20,stroke-width:3px,color:#fff96 style BT fill:#4CAF50,stroke:#1B5E20,stroke-width:3px,color:#fff97 style OPS fill:#BDBDBD,stroke:#424242,stroke-width:2px,stroke-dasharray: 5 5,color:#00098 style RE fill:#FFA726,stroke:#E65100,stroke-width:3px,stroke-dasharray: 5 5,color:#00099 style Stories fill:#FFA726,stroke:#E65100,stroke-width:3px,stroke-dasharray: 5 5,color:#000100 style AppDesign fill:#FFA726,stroke:#E65100,stroke-width:3px,stroke-dasharray: 5 5,color:#000101102 style UnitsG fill:#FFA726,stroke:#E65100,stroke-width:3px,stroke-dasharray: 5 5,color:#000103 style FD fill:#FFA726,stroke:#E65100,stroke-width:3px,stroke-dasharray: 5 5,color:#000104 style NFRA fill:#FFA726,stroke:#E65100,stroke-width:3px,stroke-dasharray: 5 5,color:#000105 style NFRD fill:#FFA726,stroke:#E65100,stroke-width:3px,stroke-dasharray: 5 5,color:#000106 style ID fill:#FFA726,stroke:#E65100,stroke-width:3px,stroke-dasharray: 5 5,color:#000107 style INCEPTION fill:#BBDEFB,stroke:#1565C0,stroke-width:3px, color:#000108 style CONSTRUCTION fill:#C8E6C9,stroke:#2E7D32,stroke-width:3px, color:#000109 style OPERATIONS fill:#FFF59D,stroke:#F57F17,stroke-width:3px, color:#000110 style Start fill:#CE93D8,stroke:#6A1B9A,stroke-width:3px,color:#000111 style End fill:#CE93D8,stroke:#6A1B9A,stroke-width:3px,color:#000112113 linkStyle default stroke:#333,stroke-width:2px114```115116**Stage Descriptions:**117118**🔵 INCEPTION PHASE** - Planning and Architecture119- Workspace Detection: Analyze workspace state and project type (ALWAYS)120- Reverse Engineering: Analyze existing codebase (CONDITIONAL - Brownfield only)121- Requirements Analysis: Gather and validate requirements (ALWAYS - Adaptive depth)122- User Stories: Create user stories and personas (CONDITIONAL)123- Workflow Planning: Create execution plan (ALWAYS)124- Application Design: High-level component identification and service layer design (CONDITIONAL)125- Units Generation: Decompose into units of work (CONDITIONAL)126127**🟢 CONSTRUCTION PHASE** - Design, Implementation, Build and Test128- Functional Design: Detailed business logic design per unit (CONDITIONAL, per-unit)129- NFR Requirements: Determine NFRs and select tech stack (CONDITIONAL, per-unit)130- NFR Design: Incorporate NFR patterns and logical components (CONDITIONAL, per-unit)131- Infrastructure Design: Map to actual infrastructure services (CONDITIONAL, per-unit)132- Code Generation: Generate code with Part 1 - Planning, Part 2 - Generation (ALWAYS, per-unit)133- Build and Test: Build all units and execute comprehensive testing (ALWAYS)134135**🟡 OPERATIONS PHASE** - Placeholder136- Operations: Placeholder for future deployment and monitoring workflows (PLACEHOLDER)137138**Key Principles:**139- Phases execute only when they add value140- Each phase independently evaluated141- INCEPTION focuses on "what" and "why"142- CONSTRUCTION focuses on "how" plus "build and test"143- OPERATIONS is placeholder for future expansion144- Simple changes may skip conditional INCEPTION stages145- Complex changes get full INCEPTION and CONSTRUCTION treatment146
One repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-build.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-code-simplify.mdc · 51 | Cursor rules | testing-strategy | 30/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-plan.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-review.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-ship.mdc · 51 | Cursor rules | testing-strategygitdeploymentdo-not | 61/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-spec.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-test.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-forgecat/AGENTS.md · 51 | AGENTS.md | lint-formatstylearchdo-not | 73/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-forgecat/CLAUDE.md · 51 | CLAUDE.md | teststylearchagent-behaviour | 70/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-code/anthropics_claude-code_ralph-wiggum/for-cursor/.cursor/rules/cmd-cancel-ralph.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-code/anthropics_claude-code_ralph-wiggum/for-cursor/.cursor/rules/cmd-help.mdc · 51 | Cursor rules | no sections | 54/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-code/anthropics_claude-code_ralph-wiggum/for-cursor/.cursor/rules/cmd-ralph-loop.mdc · 51 | Cursor rules | no sections | 22/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_agent-sdk-dev/for-cursor/.cursor/rules/cmd-new-sdk-app.mdc · 51 | Cursor rules | setupstylearchdocs | 76/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_claude-md-management/for-cursor/.cursor/rules/cmd-revise-claude-md.mdc · 51 | Cursor rules | agent-behaviour | 50/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_code-review/for-cursor/.cursor/rules/cmd-code-review.mdc · 51 | Cursor rules | testing-strategygit | 35/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_commit-commands/for-cursor/.cursor/rules/cmd-clean_gone.mdc · 51 | Cursor rules | no sections | 60/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_commit-commands/for-cursor/.cursor/rules/cmd-commit-push-pr.mdc · 51 | Cursor rules | stylegit | 44/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_commit-commands/for-cursor/.cursor/rules/cmd-commit.mdc · 51 | Cursor rules | style | 44/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_example-plugin/for-cursor/.cursor/rules/cmd-example-command.mdc · 51 | Cursor rules | lint-formatstyleagent-behaviour | 58/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_feature-dev/for-cursor/.cursor/rules/cmd-feature-dev.mdc · 51 | Cursor rules | stylearchgit | 56/100 | today |
Same format, overlapping stack, ranked by quality.
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| hiromaily/go-crypto-wallet.cursor/rules/typescript.mdc · 126 | Cursor rules | setupbuildtestlint-format+6 | 100/100 | 14 days ago | |
| TechSquidTV/Hermes.cursor/rules/10-hermes-api.mdc · 46 | Cursor rules | testlint-formatstylearch+5 | 100/100 | 14 days ago | |
| Allymahmoud/case-intake-platform.cursor/rules/frontend.mdc · 0 | Cursor rules | setuptestlint-formatstyle+7 | 99/100 | 14 days ago | |
| dodgecfr/combatfilms-webapp.cursor/rules/frontend.mdc · 0 | Cursor rules | setuptestlint-formatstyle+7 | 99/100 | 14 days ago | |
| deifos/clipmira-subtitles.cursor/rules/frontend.mdc · 1 | Cursor rules | setuptestlint-formatstyle+7 | 99/100 | 14 days ago | |
| markstev/mark-starter.cursor/rules/frontend.mdc · 0 | Cursor rules | setuptestlint-formatstyle+6 | 99/100 | 14 days ago | |
| langflow-ai/langflow.cursor/rules/docs_development.mdc · 153k | Cursor rules | setupbuildtestlint-format+7 | 97/100 | 14 days ago | |
| bybren-llc/safe-agentic-workflow.cursor/rules/10-backend-python.mdc · 399 | Cursor rules | testlint-formatstylegit+4 | 97/100 | today |
A badge carrying the measured quality of the strongest agent config file in this repository, out of 100. It reads from this index every time somebody loads your page, so it changes when the measurement changes and there is nothing to keep up to date. Free, no account, and the value is not something you or we can set by hand.
[](https://rulestack.kynth.studio/configs/nota-america-forgecat-agent-profiles-profiles-awslabs-aidlc-workflows-for-cursor-cursor-rules-rule-process-overview)Would rather not hotlink us? Every badge is also served in shields.io’s endpoint schema, so shields renders the image and your readers never talk to our domain:
Published by Toolproof, the masthead over this index and eight others. The method behind the number is at toolproof.kynth.studio/methodology, and the whole thing is readable as JSON with no key at /api.