@erclx/aitk 0.108.0 → 0.110.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/claude/.claude-plugin/plugin.json +1 -1
- package/claude/skills/claude-orchestrate/REQUIREMENT.md +1 -3
- package/claude/skills/claude-orchestrate/SKILL.md +10 -18
- package/claude/skills/claude-pr-review/REQUIREMENT.md +1 -1
- package/claude/skills/claude-pr-review/SKILL.md +6 -6
- package/claude/skills/migration-superseded/REQUIREMENT.md +1 -1
- package/claude/skills/migration-superseded/SKILL.md +1 -1
- package/docs/agents/audits.md +88 -0
- package/docs/agents/commands.md +3 -0
- package/docs/agents/index.md +1 -0
- package/docs/agents/scripting.md +13 -9
- package/docs/ai-workflow.md +2 -3
- package/docs/operating-model.md +18 -19
- package/package.json +1 -1
- package/scripts/core/verify.sh +74 -6
- package/src/audits/baseline.ts +194 -0
- package/src/audits/catalog.ts +464 -0
- package/src/audits/run.ts +202 -0
- package/src/cli.ts +4 -0
- package/src/commands/audits.ts +342 -0
- package/standards/requirements.md +2 -2
- package/standards/tasks.md +4 -3
- package/claude/skills/claude-roadmap/REQUIREMENT.md +0 -41
- package/claude/skills/claude-roadmap/SKILL.md +0 -61
- package/claude/skills/claude-roadmap/references/roadmap.md +0 -62
- package/standards/bundled/roadmap.md +0 -62
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: claude-roadmap
|
|
3
|
-
description: Drafts or updates `.claude/ROADMAP.md` by sequencing the MVP scope from `.claude/REQUIREMENTS.md` into ordered versions, each a usable increment. Use when asked to "draft a roadmap", "build the roadmap", "sequence the versions", "plan the roadmap", or "update the roadmap". Do NOT break versions into task-level steps. That is `claude-feature` and `.claude/tasks/`.
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Claude roadmap
|
|
7
|
-
|
|
8
|
-
## Guards
|
|
9
|
-
|
|
10
|
-
- If `.claude/REQUIREMENTS.md` is absent or has no MVP features, stop: `❌ No requirements to sequence. Draft .claude/REQUIREMENTS.md first.`
|
|
11
|
-
- If the requirements file carries a later scope section, stop per Lifecycle gate below
|
|
12
|
-
- Sequence versions and their outcomes only. Do not produce file lists or task steps.
|
|
13
|
-
|
|
14
|
-
## Lifecycle gate
|
|
15
|
-
|
|
16
|
-
A roadmap sequences the MVP list alone, so a later scope section means that list has shipped and a fresh requirements pass owns what follows. The rule is the Lifecycle section of `.claude/standards/requirements.md`, falling back to `${CLAUDE_SKILL_DIR}/../../standards/requirements.md` when the project has no copy.
|
|
17
|
-
|
|
18
|
-
- A later scope section is a `##` heading after `## MVP features` that `.claude/standards/requirements.md` names nowhere, neither among the six it fixes nor as the conditional `## Distribution`
|
|
19
|
-
- On finding one, stop: `❌ MVP scope already sequenced. ## <section> is later scope, which a fresh requirements pass sequences rather than this roadmap. Say to sequence it anyway to override.`
|
|
20
|
-
- Draft without the gate when neither copy of the standard resolves. Refusing on a rule that could not be read stops more than it protects.
|
|
21
|
-
- When the caller overrides, sequence the later scope section's entries as versions and proceed
|
|
22
|
-
|
|
23
|
-
## Step 1: read context
|
|
24
|
-
|
|
25
|
-
Read these in parallel from the project root, skipping any that do not exist:
|
|
26
|
-
|
|
27
|
-
- `.claude/REQUIREMENTS.md`: the MVP feature scope to sequence
|
|
28
|
-
- `.claude/ROADMAP.md`: the existing roadmap, when updating rather than drafting
|
|
29
|
-
- `.claude/tasks/index.md`: what is in flight, to mark the active version
|
|
30
|
-
- `.claude/ARCHITECTURE.md`: technical dependencies that constrain ordering
|
|
31
|
-
|
|
32
|
-
Follow `${CLAUDE_SKILL_DIR}/references/roadmap.md` for the doc shape, sections, and version format.
|
|
33
|
-
|
|
34
|
-
## Step 2: sequence
|
|
35
|
-
|
|
36
|
-
Group the MVP features into versions, each a usable increment that stands on its own. Order the versions by two forces:
|
|
37
|
-
|
|
38
|
-
- Dependency: a version that produces data or a contract another version consumes comes first.
|
|
39
|
-
- De-risking: a version that de-risks an unproven subsystem comes early, inside the version that first needs it.
|
|
40
|
-
|
|
41
|
-
For each version, state the observable outcome as what the user can then do, list the features it groups by name, and note what it depends on and why.
|
|
42
|
-
|
|
43
|
-
When updating an existing roadmap, preserve rows that still hold. Resequence, add, or split only where scope shifted. Do not rewrite rows that did not change.
|
|
44
|
-
|
|
45
|
-
## Step 3: write
|
|
46
|
-
|
|
47
|
-
Write the roadmap to `.claude/ROADMAP.md` at the project root, following `${CLAUDE_SKILL_DIR}/references/roadmap.md`. Create the file when absent.
|
|
48
|
-
|
|
49
|
-
Unlike `.claude/plans/` and `.claude/tasks/`, `.claude/ROADMAP.md` is committed. Do not stage or commit it here. Leave staging to the git skills.
|
|
50
|
-
|
|
51
|
-
## Step 4: output
|
|
52
|
-
|
|
53
|
-
```markdown
|
|
54
|
-
📝 Wrote .claude/ROADMAP.md
|
|
55
|
-
|
|
56
|
-
<N> versions sequenced. Active: vX.Y.
|
|
57
|
-
|
|
58
|
-
Next: /claude-feature for the first version's opening feature.
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
When updating, replace the first line with `📝 Updated .claude/ROADMAP.md` and name which versions changed.
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Roadmap reference
|
|
3
|
-
description: Shape and content rules for .claude/ROADMAP.md
|
|
4
|
-
consumers: claude-roadmap
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Roadmap reference
|
|
8
|
-
|
|
9
|
-
Applies to `.claude/ROADMAP.md`. Sequences the scope from `.claude/REQUIREMENTS.md` into ordered versions, each a usable increment. Update when the sequence changes or a version ships. The roadmap is committed because the sequence and its rationale are shared strategic truth a fresh session needs, unlike `.claude/tasks/`, which is ephemeral scratch.
|
|
10
|
-
|
|
11
|
-
The roadmap is one scannable table. That is what keeps it distinct from `.claude/tasks/`: the roadmap is an overview read at a glance, while tasks are worked one file at a time.
|
|
12
|
-
|
|
13
|
-
## Scope
|
|
14
|
-
|
|
15
|
-
Governs the sequencing document at `.claude/ROADMAP.md`: the version table, its columns, and its lifecycle.
|
|
16
|
-
|
|
17
|
-
Does not govern:
|
|
18
|
-
|
|
19
|
-
- What the scope is, which the roadmap sequences rather than defines: `requirements.md`
|
|
20
|
-
- Task files, outcomes, and board state: `tasks.md`
|
|
21
|
-
- Phase-label format and semver discipline: `versioning.md`
|
|
22
|
-
- Rationale for a technical choice: `architecture.md`
|
|
23
|
-
|
|
24
|
-
## What goes in
|
|
25
|
-
|
|
26
|
-
- One row per version, ordered top to bottom by sequence
|
|
27
|
-
- A status per version: active, next in line, or deferred
|
|
28
|
-
- The observable outcome each version delivers, as a short phrase
|
|
29
|
-
- The features a version groups, by name, drawn from the MVP list in `.claude/REQUIREMENTS.md`
|
|
30
|
-
- The version each row depends on, and a short why
|
|
31
|
-
|
|
32
|
-
## What does not go in
|
|
33
|
-
|
|
34
|
-
- Task breakdown, checkboxes, or per-feature file lists
|
|
35
|
-
- Implementation detail, API names, or component references
|
|
36
|
-
- Sentence-long cells. Keep each cell terse so the table stays scannable.
|
|
37
|
-
|
|
38
|
-
## Format
|
|
39
|
-
|
|
40
|
-
One table. Columns, in order:
|
|
41
|
-
|
|
42
|
-
- `Version`: the `vX.Y` phase label. Phase-label format is governed by `standards/versioning.md`.
|
|
43
|
-
- `Status`: `Now` for the active version, `Next` for sequenced upcoming versions, `Later` for deferred themes.
|
|
44
|
-
- `Outcome`: what the user can do once this version ships, as a phrase.
|
|
45
|
-
- `Features`: the feature names this version groups, comma-separated.
|
|
46
|
-
- `Depends on`: the version this one needs and a short why, or `none` when independent.
|
|
47
|
-
|
|
48
|
-
## Template
|
|
49
|
-
|
|
50
|
-
```markdown
|
|
51
|
-
# Roadmap
|
|
52
|
-
|
|
53
|
-
| Version | Status | Outcome | Features | Depends on |
|
|
54
|
-
| ------- | ------ | -------- | -------------------- | ------------------ |
|
|
55
|
-
| v0.1 | Now | <phrase> | <feature>, <feature> | none |
|
|
56
|
-
| v0.2 | Next | <phrase> | <feature> | v0.1, for <reason> |
|
|
57
|
-
| v0.3 | Later | <phrase> | <feature> | none |
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
## Lifecycle
|
|
61
|
-
|
|
62
|
-
The roadmap sequences a finite, known scope. When the last version ships, the scope is exhausted and the project cuts a semver release per `standards/versioning.md`. Later work arrives as discrete items, a fresh requirements pass or tracked issues, rather than extending the original roadmap without end.
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Roadmap reference
|
|
3
|
-
description: Shape and content rules for .claude/ROADMAP.md
|
|
4
|
-
consumers: claude-roadmap
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Roadmap reference
|
|
8
|
-
|
|
9
|
-
Applies to `.claude/ROADMAP.md`. Sequences the scope from `.claude/REQUIREMENTS.md` into ordered versions, each a usable increment. Update when the sequence changes or a version ships. The roadmap is committed because the sequence and its rationale are shared strategic truth a fresh session needs, unlike `.claude/tasks/`, which is ephemeral scratch.
|
|
10
|
-
|
|
11
|
-
The roadmap is one scannable table. That is what keeps it distinct from `.claude/tasks/`: the roadmap is an overview read at a glance, while tasks are worked one file at a time.
|
|
12
|
-
|
|
13
|
-
## Scope
|
|
14
|
-
|
|
15
|
-
Governs the sequencing document at `.claude/ROADMAP.md`: the version table, its columns, and its lifecycle.
|
|
16
|
-
|
|
17
|
-
Does not govern:
|
|
18
|
-
|
|
19
|
-
- What the scope is, which the roadmap sequences rather than defines: `requirements.md`
|
|
20
|
-
- Task files, outcomes, and board state: `tasks.md`
|
|
21
|
-
- Phase-label format and semver discipline: `versioning.md`
|
|
22
|
-
- Rationale for a technical choice: `architecture.md`
|
|
23
|
-
|
|
24
|
-
## What goes in
|
|
25
|
-
|
|
26
|
-
- One row per version, ordered top to bottom by sequence
|
|
27
|
-
- A status per version: active, next in line, or deferred
|
|
28
|
-
- The observable outcome each version delivers, as a short phrase
|
|
29
|
-
- The features a version groups, by name, drawn from the MVP list in `.claude/REQUIREMENTS.md`
|
|
30
|
-
- The version each row depends on, and a short why
|
|
31
|
-
|
|
32
|
-
## What does not go in
|
|
33
|
-
|
|
34
|
-
- Task breakdown, checkboxes, or per-feature file lists
|
|
35
|
-
- Implementation detail, API names, or component references
|
|
36
|
-
- Sentence-long cells. Keep each cell terse so the table stays scannable.
|
|
37
|
-
|
|
38
|
-
## Format
|
|
39
|
-
|
|
40
|
-
One table. Columns, in order:
|
|
41
|
-
|
|
42
|
-
- `Version`: the `vX.Y` phase label. Phase-label format is governed by `standards/versioning.md`.
|
|
43
|
-
- `Status`: `Now` for the active version, `Next` for sequenced upcoming versions, `Later` for deferred themes.
|
|
44
|
-
- `Outcome`: what the user can do once this version ships, as a phrase.
|
|
45
|
-
- `Features`: the feature names this version groups, comma-separated.
|
|
46
|
-
- `Depends on`: the version this one needs and a short why, or `none` when independent.
|
|
47
|
-
|
|
48
|
-
## Template
|
|
49
|
-
|
|
50
|
-
```markdown
|
|
51
|
-
# Roadmap
|
|
52
|
-
|
|
53
|
-
| Version | Status | Outcome | Features | Depends on |
|
|
54
|
-
| ------- | ------ | -------- | -------------------- | ------------------ |
|
|
55
|
-
| v0.1 | Now | <phrase> | <feature>, <feature> | none |
|
|
56
|
-
| v0.2 | Next | <phrase> | <feature> | v0.1, for <reason> |
|
|
57
|
-
| v0.3 | Later | <phrase> | <feature> | none |
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
## Lifecycle
|
|
61
|
-
|
|
62
|
-
The roadmap sequences a finite, known scope. When the last version ships, the scope is exhausted and the project cuts a semver release per `standards/versioning.md`. Later work arrives as discrete items, a fresh requirements pass or tracked issues, rather than extending the original roadmap without end.
|