You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[generate_agent.md](../commands/01_onboard/generate_agent.md)|`Generates a customized agent based on user-defined parameters.`| - |
103
-
|[generate_architecture.md](../commands/01_onboard/generate_architecture.md)|`Generate project architecture with agents, skills, coordination diagram, and optional rules/commands for code projects`|`Project description and domain requirements`|
104
-
|[generate_command.md](../commands/01_onboard/generate_command.md)|`Generate optimized, action-oriented prompts using best practices and structured template`|`The command details to generate the prompt for`|
105
-
|[generate_rules.md](../commands/01_onboard/generate_rules.md)|`Generate or modify coding rules manually or auto-scan the codebase to propose rules`|`Rule topic to write, or 'auto' to scan codebase and propose rules`|
106
-
|[generate_skill.md](../commands/01_onboard/generate_skill.md)|`Generate a customized skill based on repeated patterns and user workflows.`|`Description of the workflow to package as a skill`|
107
-
|[init.md](../commands/01_onboard/init.md)|`Create or update the memory bank files to reflect the current state of the codebase`| - |
108
-
|[onboard.md](../commands/01_onboard/onboard.md)|`Detect project state and tell the user exactly what to run next`| - |
|[brainstorm.md](../commands/02_context/brainstorm.md)|`Interactive brainstorming session to clarify and refine feature requests`| - |
115
-
|[challenge.md](../commands/02_context/challenge.md)|`Rethink and challenge previous work for improvements`| - |
116
-
|[create_user_stories.md](../commands/02_context/create_user_stories.md)|`Create user stories through iterative questioning`|`[Feature description or requirements for user story generation]`|
117
-
|[ticket_info.md](../commands/02_context/ticket_info.md)|`Get ticket information from the project's ticketing tool`|`[Ticket URL or number]`|
|[components_behavior.md](../commands/03_plan/components_behavior.md)|`Define the expected behavior of frontend components into a state machine format.`|`names of the components to define behavior for.`|
124
-
|[image_extract_details.md](../commands/03_plan/image_extract_details.md)|`Analyze image to identify and extract main components with hierarchical organization`|`the image to analyze`|
125
-
|[plan.md](../commands/03_plan/plan.md)|`Generate technical implementation plans from requirements`|`requirements (ticket URL or raw text)`|
126
-
127
-
#### `commands/04_code`
128
-
129
-
| File | Description | Argument Hint |
130
-
|------|---|---|
131
-
|[assert_architecture.md](../commands/04_code/assert_architecture.md)|`Verify code conforms to architecture diagrams, ADRs, and project structure.`|`[Optional scope to verify (module, service, or layer name)]`|
132
-
|[assert_frontend.md](../commands/04_code/assert_frontend.md)|`Assert a frontend feature works as intended.`|`The frontend behavior you need to assert and validate.`|
133
-
|[assert.md](../commands/04_code/assert.md)|`Assert that a feature must work as intended.`| - |
134
-
|[implement_from_design.md](../commands/04_code/implement_from_design.md)|`Implement a frontend component from a Figma design with pixel-perfect accuracy.`|`The Figma file URL and frame/component to implement.`|
135
-
|[implement.md](../commands/04_code/implement.md)|`Implement plan following project rules with validation`|`The technical plan to implement`|
136
-
|[run_projection.md](../commands/04_code/run_projection.md)|`Project the solution you mentioned on a part of the codebase so we can see if this will work.`| - |
137
-
138
-
#### `commands/05_review`
139
-
140
-
| File | Description | Argument Hint |
141
-
|------|---|---|
142
-
|[review_code.md](../commands/05_review/review_code.md)|`Ensure code quality and rules compliance`| - |
143
-
|[review_functional.md](../commands/05_review/review_functional.md)|`Review feature behavior against plan specification and current diff`|`Plan path to validate against`|
144
-
145
-
#### `commands/06_tests`
146
-
147
-
| File | Description | Argument Hint |
148
-
|------|---|---|
149
-
|[test_journey.md](../commands/06_tests/test_journey.md)|`Test a user journey end-to-end by navigating and validating each step in the browser.`|`The user journey steps to validate and the URL to test on.`|
150
-
|[test.md](../commands/06_tests/test.md)|`List untested behaviors and iterate on test creation until tests pass with best practices`|`[things you want to test]`|
139
+
#### `plugins/aidd-vcs`
151
140
152
-
#### `commands/07_documentation`
153
-
154
-
| File | Description |
155
-
|------|---|
156
-
|[learn.md](../commands/07_documentation/learn.md)|`Update memory bank or rules with new information or requirements.`|
157
-
|[mermaid.md](../commands/07_documentation/mermaid.md)|`When need to generate Mermaid diagrams`|
158
-
159
-
#### `commands/08_deploy`
160
-
161
-
| File | Description | Argument Hint |
162
-
|------|---|---|
163
-
|[commit.md](../commands/08_deploy/commit.md)|`Create git commit with proper message format`|`auto`|
164
-
|[create_request.md](../commands/08_deploy/create_request.md)|`Create PR (GitHub) or MR (GitLab) with filled template`| - |
165
-
|[tag.md](../commands/08_deploy/tag.md)|`Create and push git tag with semantic versioning`| - |
166
-
167
-
#### `commands/09_refactor`
168
-
169
-
| File | Description | Argument Hint |
170
-
|------|---|---|
171
-
|[audit.md](../commands/09_refactor/audit.md)|`Perform deep codebase analysis for technical debt and improvements`|`Scope to audit (optional - defaults to full codebase)`|
172
-
|[performance.md](../commands/09_refactor/performance.md)|`Optimize code for better performance`| - |
173
-
|[security_refactor.md](../commands/09_refactor/security_refactor.md)|`Identify and fix security vulnerabilities`| - |
174
-
175
-
#### `commands/10_maintenance`
176
-
177
-
| File | Description | Argument Hint |
178
-
|------|---|---|
179
-
|[debug.md](../commands/10_maintenance/debug.md)|`Debug issue to find root cause.`| - |
180
-
|[new_issue.md](../commands/10_maintenance/new_issue.md)|`Create issues in the configured ticketing tool`|`Describe the problem you want to create an issue for`|
181
-
|[reflect_issue.md](../commands/10_maintenance/reflect_issue.md)|`Reflect on possible sources, identify most likely causes, add validation logs before fixing`| - |
182
-
|[reproduce.md](../commands/10_maintenance/reproduce.md)|`Fix bugs with test-driven workflow from issue to PR`|`Bug description or issue number`|
|[ide-mapping.claude.md](../rules/04-tooling/ide-mapping.claude.md)|`Claude Code file locations, syntax, frontmatter, and include patterns reference. Apply when creating or configuring Claude-specific files.`|
163
+
|[ide-mapping.codex.md](../rules/04-tooling/ide-mapping.codex.md)|`Codex CLI file locations, path mapping, and AIDD install-time @path expansion. Apply when creating or configuring Codex-specific files.`|
200
164
|[ide-mapping.copilot.md](../rules/04-tooling/ide-mapping.copilot.md)|`GitHub Copilot file locations, syntax, frontmatter, and instruction patterns reference. Apply when creating or configuring Copilot-specific files.`|
201
165
|[ide-mapping.cursor.md](../rules/04-tooling/ide-mapping.cursor.md)|`Cursor file locations, syntax, frontmatter, and rule patterns reference. Apply when creating or configuring Cursor-specific files.`|
202
166
|[ide-mapping.opencode.md](../rules/04-tooling/ide-mapping.opencode.md)|`OpenCode file locations, syntax, frontmatter, and configuration reference. Apply when creating or configuring OpenCode-specific files.`|
@@ -208,17 +172,14 @@ No files found.
208
172
|[aidd.sh](../scripts/aidd.sh)|
209
173
|[build-dist.sh](../scripts/build-dist.sh)|
210
174
211
-
### `skills`
212
-
213
-
#### `skills/aidd-auto-implement`
175
+
#### `scripts/schemas`
214
176
215
-
| File | Description | Argument Hint |
216
-
|------|---|---|
217
-
|[SKILL.md](../skills/aidd-auto-implement/SKILL.md)|`Autonomously run the AI-Driven Development workflow to code an high quality feature.`|`The URL or file path of the issue or task to implement.`|
|[SKILL.md](../skills/challenge/SKILL.md)|`Review and challenge previous work for improvements and correctness. Use when the user says 'challenge this', 'review my work', 'is this correct', asks for a critical review, or wants to rethink a decision.`|
0 commit comments