Skip to content

Commit 97573bc

Browse files
blafourcadeclaude
andcommitted
chore(framework): bump aidd-pm to 1.0.0 and apply audit fixes
Version: aidd-pm goes from 1.0.0-rc.1 to 1.0.0 (manifest, marketplace.json, plugin.json, README status). Audit fixes (cross-plugin): - aidd-context: project-init description in plugin README aligned with skill README (rule dirs are created lazily by 03-context-generate). - aidd-dev: 02-implement README clarifies branching is the caller's responsibility (matches 00-sdlc policy). - aidd-orchestrator/02-run-async-dev: rewrote action 05/06 descriptions and Outputs section to match SKILL.md contract (skill emits run-result.json, post-job owns audit, Check Run, label transition; no orchestrator vocabulary in delegation prompt). - aidd-orchestrator/03-review-async-dev: action names aligned with files and SKILL.md (fix-iteration, finalize). - aidd-orchestrator/01-setup-async-dev: drop "asks ~6 questions" tilde filler. - aidd-refine/04-shadow-areas: drop dead reference to evals/validate-report.mjs. - Plugin READMEs (context, dev, orchestrator, refine, vcs): strip "(or the first listed skill if no onboard exists)" filler. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent af8d6ef commit 97573bc

15 files changed

Lines changed: 35 additions & 33 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
},
3232
{
3333
"name": "aidd-pm",
34-
"version": "1.0.0-rc.1",
34+
"version": "1.0.0",
3535
"source": "./plugins/aidd-pm",
36-
"description": "Product management (release candidate): ticket-info, user-stories-create, prd, spec",
36+
"description": "Product management: ticket-info, user-stories-create, prd, spec",
3737
"strict": true,
3838
"recommended": true
3939
},

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"plugins/aidd-context": "1.0.0",
44
"plugins/aidd-dev": "1.0.0",
55
"plugins/aidd-vcs": "1.0.0",
6-
"plugins/aidd-pm": "1.0.0-rc.1",
6+
"plugins/aidd-pm": "1.0.0",
77
"plugins/aidd-orchestrator": "1.0.0",
88
"plugins/aidd-refine": "1.0.0"
99
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Commits, pull / merge requests, release tags, issue creation.
112112

113113
### 📋 [aidd-pm](plugins/aidd-pm/README.md)
114114

115-
`4 skills` · release candidate
115+
`4 skills` · stable
116116

117117
Ticket info, user stories, PRD, spec drafting.
118118

plugins/aidd-context/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Knowledge production plugin for the AI-Driven Development framework.
66

77
> Status: stable.
88
9-
First time? Install with `/plugin install aidd-context@aidd-framework`, then run `aidd-context:00:onboard` (or the first listed skill if no onboard exists).
9+
First time? Install with `/plugin install aidd-context@aidd-framework`, then run `aidd-context:00:onboard`.
1010

1111
Covers project bootstrap, project initialisation, context generation, Mermaid diagrams, learning, discovery, and a state-aware onboarding loop.
1212

@@ -16,7 +16,7 @@ Covers project bootstrap, project initialisation, context generation, Mermaid di
1616
| ---------- | -------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
1717
| [1.0] | [onboard](skills/00-onboard/README.md) | Detect the project's aidd-context state and guide the user to ONE next aidd-context action through a state -> recommend -> execute loop. |
1818
| [1.1] | [bootstrap](skills/01-bootstrap/README.md) | Imagine and validate the technical architecture of a new SaaS through interactive Q&A, candidate-stack comparison, multi-agent audit, and an INSTALL.md output. |
19-
| [1.2] | [project-init](skills/02-project-init/README.md) | Initialize project memory bank and scaffold the rules directory structure. |
19+
| [1.2] | [project-init](skills/02-project-init/README.md) | Initialize the project memory bank (rule directories are created lazily by `03-context-generate`). |
2020
| [1.3] | [context-generate](skills/03-context-generate/README.md) | Generate Claude Code context artifacts - router-based skills, agents, and rules. |
2121
| [1.4] | [mermaid](skills/04-mermaid/README.md) | Generate high-quality Mermaid diagrams from markdown content using a structured plan-validate workflow. |
2222
| [1.5] | [learn](skills/05-learn/README.md) | Capture and store learnings from recently implemented features into memory bank, decisions, or coding rules. |

plugins/aidd-dev/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Code transformation plugin for the AI-Driven Development framework.
66

77
> Status: stable.
88
9-
First time? Install with `/plugin install aidd-dev@aidd-framework`, then run `aidd-dev:00:sdlc` (or the first listed skill if no onboard exists).
9+
First time? Install with `/plugin install aidd-dev@aidd-framework`, then run `aidd-dev:00:sdlc`.
1010

1111
Covers the full SDLC coding loop: orchestrator, planning, assertions, audits, code review, testing, refactoring, debugging, and the for-sure workflow. Also hosts AI agents.
1212

plugins/aidd-dev/skills/02-implement/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ Use skill aidd-dev:02:implement
2828

2929
Pass the plan path or content as `$ARGUMENTS`. The skill exposes 1 action:
3030

31-
1. `implement` - branch (if specified), then loop each plan phase: spawn the
32-
`implementer` agent, wait for structured output, re-spawn with
33-
`items_remaining` until the phase hits 100 %. Plan amendments are made
34-
inline and tagged with the robot marker.
31+
1. `implement` - loop each plan phase: spawn the `implementer` agent, wait
32+
for structured output, re-spawn with `items_remaining` until the phase
33+
hits 100 %. Branching is the caller's responsibility; this skill never
34+
creates branches. Plan amendments are made inline and tagged with the
35+
robot marker.
3536

3637
## Outputs
3738

plugins/aidd-orchestrator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Orchestration plugin for the AI-Driven Development framework.
66

77
> Status: stable for use case `async-dev`; other use cases on the roadmap are experimental.
88
9-
First time? Install with `/plugin install aidd-orchestrator@aidd-framework`, then run `aidd-orchestrator:01:setup-async-dev` (or the first listed skill if no onboard exists).
9+
First time? Install with `/plugin install aidd-orchestrator@aidd-framework`, then run `aidd-orchestrator:01:setup-async-dev`.
1010

1111
Composes capabilities into deterministic, auditable flows. Each skill is one orchestration brick; several use cases coexist inside the same plugin.
1212

plugins/aidd-orchestrator/skills/01-setup-async-dev/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ from a fresh clone to the first triggered run.
2323
Use skill aidd-orchestrator:01:setup-async-dev
2424
```
2525

26-
The skill asks ~6 questions:
26+
The skill asks 6 questions:
2727

2828
| Question | Default | Notes |
2929
|----------|---------|-------|

plugins/aidd-orchestrator/skills/02-run-async-dev/README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -63,20 +63,22 @@ The skill walks 6 atomic actions:
6363
2. `resolve-deps` - filter out blocked ones.
6464
3. `acquire-lock` - swap `to-implement``claude/working`.
6565
4. `check-sdlc` - discover the SDLC capability by description.
66-
5. `delegate-sdlc` - invoke that capability via the `Skill` tool with the
67-
delegation contract (branch name, base, body containing `Closes #N`).
68-
6. `write-audit` - commit and push the audit JSON to the PR branch, create
69-
the GitHub Check Run, transition the label to `claude/awaiting-review`.
66+
5. `delegate-sdlc` - invoke that capability via the `Skill` tool with a
67+
single free-text `request` plus any human comments. No branch name, no
68+
`Closes #N`, no PR-title format - the SDLC owns those decisions so it
69+
runs identically whether called by the orchestrator or by a human.
70+
6. `write-audit` - emit `$RUNNER_TEMP/run-result.json` and exit.
7071

7172
## Outputs
7273

73-
- A feature branch `feat/issue-<N>-<slug>` on the repo.
74-
- A pull request with body containing `Closes #<N>`.
75-
- `aidd_docs/async-runs/<YYYY_MM>/<run-id>.json` on the PR branch.
76-
- A GitHub Check Run `aidd-async/<run-id>`.
77-
- Label transition on the issue: `to-implement``claude/working`
78-
`claude/awaiting-review` (or `claude/blocked` on failure, with a comment
79-
describing the cause).
74+
This skill emits one artifact: `$RUNNER_TEMP/run-result.json`.
75+
76+
Everything else (audit log persistence under `aidd_docs/async-runs/`, the
77+
GitHub Check Run, the label transition to `claude/awaiting-review` or
78+
`claude/blocked`, the completion marker) is owned by the workflow's
79+
post-job step, which reads `run-result.json` after the skill exits. Branch
80+
name and pull-request body shape are owned by the SDLC that action 05
81+
delegated to.
8082

8183
## Prerequisites
8284

plugins/aidd-orchestrator/skills/03-review-async-dev/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ The skill walks 4 atomic actions:
3333
2. `detect-stop` - decide whether to fix or stop. Stop reasons:
3434
`blocked_label`, `max_iterations`, `human_reviewer` (only iteration >1),
3535
`no_comments`.
36-
3. `delegate-fix` - invoke the SDLC capability with the comment context to
36+
3. `fix-iteration` - invoke the SDLC capability with the comment context to
3737
produce one fix commit on the PR branch; reply inline on each addressed
3838
comment and resolve the thread.
39-
4. `write-summary` - post a structured iteration summary comment, transition
39+
4. `finalize` - post a structured iteration summary comment, transition
4040
the label back to `claude/awaiting-review`, write the audit record.
4141

4242
## Outputs

0 commit comments

Comments
 (0)