@open-agent-toolkit/cli 0.1.52 → 0.1.54
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/assets/docs/cli-utilities/tool-packs.md +23 -2
- package/assets/docs/contributing/skills.md +16 -0
- package/assets/docs/workflows/projects/implementation-execution.md +20 -0
- package/assets/docs/workflows/skills/index.md +3 -0
- package/assets/docs/workflows/skills/repo-improve.md +45 -0
- package/assets/public-package-versions.json +4 -4
- package/assets/skills/oat-dispatch-subagents/SKILL.md +254 -0
- package/assets/skills/oat-dispatch-subagents/references/provider-claude.md +44 -0
- package/assets/skills/oat-dispatch-subagents/references/provider-codex.md +69 -0
- package/assets/skills/oat-dispatch-subagents/references/provider-cursor.md +61 -0
- package/assets/skills/oat-dispatch-subagents/references/record-schema.md +109 -0
- package/assets/skills/oat-pjm-add-backlog-item/SKILL.md +6 -3
- package/assets/skills/oat-pjm-review-backlog/SKILL.md +22 -10
- package/assets/skills/oat-project-dispatch-subagents/SKILL.md +234 -0
- package/assets/skills/oat-repo-improve/SKILL.md +280 -0
- package/assets/skills/oat-repo-improve/references/audit-playbook.md +130 -0
- package/assets/skills/oat-repo-improve/references/plan-template.md +200 -0
- package/assets/skills/oat-repo-maintainability-review/SKILL.md +22 -7
- package/assets/templates/backlog-item.md +1 -0
- package/assets/templates/pjm-agents.md +8 -0
- package/assets/templates/reference-agents.md +3 -1
- package/dist/commands/init/tools/shared/skill-manifest.d.ts +2 -2
- package/dist/commands/init/tools/shared/skill-manifest.d.ts.map +1 -1
- package/dist/commands/init/tools/shared/skill-manifest.js +3 -0
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: oat-repo-maintainability-review
|
|
3
|
-
version: 1.
|
|
4
|
-
description: Use when you need a structured maintainability analysis for a repository or directory target with actionable findings.
|
|
3
|
+
version: 1.3.0
|
|
4
|
+
description: Use when you need a structured maintainability analysis for a repository or directory target with actionable findings and an optional external-plan handoff.
|
|
5
5
|
argument-hint: '[--scope repo|directory] [--target <path>] [--mode auto|tracked|local|inline] [--output <path>] [--focus <areas>] [--analysis-mode full] [--fan-out]'
|
|
6
6
|
disable-model-invocation: true
|
|
7
7
|
user-invocable: true
|
|
@@ -42,11 +42,12 @@ Analyze repository maintainability and developer experience using a deterministi
|
|
|
42
42
|
- ` OAT ▸ REPO MAINTAINABILITY REVIEW`
|
|
43
43
|
- `━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━`
|
|
44
44
|
- Print step indicators before major work:
|
|
45
|
-
- `[1/
|
|
46
|
-
- `[2/
|
|
47
|
-
- `[3/
|
|
48
|
-
- `[4/
|
|
49
|
-
- `[5/
|
|
45
|
+
- `[1/6] Resolving scope, arguments, and output policy...`
|
|
46
|
+
- `[2/6] Collecting repository evidence...`
|
|
47
|
+
- `[3/6] Running dimension analysis (single-agent or multi-agent)...`
|
|
48
|
+
- `[4/6] Synthesizing findings and scoring...`
|
|
49
|
+
- `[5/6] Rendering artifact and summary...`
|
|
50
|
+
- `[6/6] (Optional) Handing selected findings to repo improve...` — only print after the user accepts the offer
|
|
50
51
|
- For long-running fan-out or large scans, print start + completion lines.
|
|
51
52
|
- Print a resolved run-options summary before evidence collection begins.
|
|
52
53
|
|
|
@@ -58,6 +59,7 @@ Analyze repository maintainability and developer experience using a deterministi
|
|
|
58
59
|
4. Gather evidence across required dimensions.
|
|
59
60
|
5. Synthesize findings into prioritized recommendations.
|
|
60
61
|
6. Render artifact or return inline output.
|
|
62
|
+
7. Offer a scoped external-plan handoff when a file artifact exists.
|
|
61
63
|
|
|
62
64
|
### Output Policy Resolution
|
|
63
65
|
|
|
@@ -190,9 +192,22 @@ Final user-facing summary must include:
|
|
|
190
192
|
- Artifact path (`inline-only` when no file is emitted)
|
|
191
193
|
- Execution mode (`single-agent` or `multi-agent`)
|
|
192
194
|
|
|
195
|
+
### Optional Repo Improve Handoff
|
|
196
|
+
|
|
197
|
+
When tracked or local output produced a file artifact, offer one bounded next step after the completion summary:
|
|
198
|
+
|
|
199
|
+
> Want to turn selected findings from this maintainability review into self-contained external implementation plans with `oat-repo-improve`?
|
|
200
|
+
|
|
201
|
+
If the user accepts, invoke `oat-repo-improve` in `maintainability-review` mode and pass the exact artifact path. That skill must use this artifact as its candidate source and perform only bounded live-evidence verification; it must not repeat a full repository audit. The user selects which findings become plans.
|
|
202
|
+
|
|
203
|
+
If output was inline-only, explain that the handoff requires a file-backed review artifact. Offer to render the completed review to the normal tracked/local destination before invoking `oat-repo-improve`; do not silently create it.
|
|
204
|
+
|
|
205
|
+
The maintainability-review skill never writes external plans itself. `oat-repo-improve` is the sole owner of `.oat/repo/reference/external-plans/` output for this flow.
|
|
206
|
+
|
|
193
207
|
## Success Criteria
|
|
194
208
|
|
|
195
209
|
- Output includes required sections and metadata.
|
|
196
210
|
- Findings include scoring fields and evidence.
|
|
197
211
|
- Result includes now/next/later execution guidance.
|
|
198
212
|
- Required arguments are explicitly resolved before analysis execution.
|
|
213
|
+
- File-backed runs offer an optional, source-scoped `oat-repo-improve maintainability-review <artifact>` handoff without re-auditing the repository.
|
|
@@ -60,6 +60,14 @@ doctor` surfaces this drift.
|
|
|
60
60
|
recent commits against open items: work that shipped without a close-out
|
|
61
61
|
should be closed retroactively with a note.
|
|
62
62
|
|
|
63
|
+
## External Plan Reverse Links
|
|
64
|
+
|
|
65
|
+
Backlog item frontmatter may include `external_plans`, a YAML string array of
|
|
66
|
+
repo-relative paths under `.oat/repo/reference/external-plans/`.
|
|
67
|
+
`oat-repo-improve` owns additions to this field after a plan write succeeds.
|
|
68
|
+
Preserve existing links, deduplicate additions, and never link a failed or
|
|
69
|
+
partial write. These are durable source-to-plan references, not project status.
|
|
70
|
+
|
|
63
71
|
## Project Kickoff Handoffs
|
|
64
72
|
|
|
65
73
|
`handoffs/` holds one-shot kickoff prompts — consumable context for turning a
|
|
@@ -9,7 +9,9 @@ This directory owns append-mostly reference material.
|
|
|
9
9
|
|
|
10
10
|
- `decisions/` stores file-per-record decisions and the generated decision index.
|
|
11
11
|
- `project-summaries/` stores archived project summaries.
|
|
12
|
-
- `external-plans/` stores imported provider
|
|
12
|
+
- `external-plans/` stores imported provider plans and external implementation
|
|
13
|
+
plans generated by `oat-repo-improve`. Improve owns plan generation; project
|
|
14
|
+
import optionally normalizes one selected file into an OAT project.
|
|
13
15
|
- Create research, brainstorm, and deck folders on demand when a workflow needs them.
|
|
14
16
|
- Do not put active roadmap, current-state, or backlog records directly under `reference/`.
|
|
15
17
|
|
|
@@ -11,7 +11,7 @@ export interface PackMetadata {
|
|
|
11
11
|
}
|
|
12
12
|
export declare const PACK_METADATA: Record<string, PackMetadata>;
|
|
13
13
|
export declare function resolvePackDefaultScope(packName: string): 'user' | 'project';
|
|
14
|
-
export declare const WORKFLOW_SKILLS: readonly ["oat-project-capture", "oat-project-clear-active", "oat-project-complete", "oat-project-design", "oat-project-discover", "oat-project-document", "oat-project-implement", "oat-project-import-plan", "oat-project-new", "oat-project-next", "oat-project-open", "oat-project-plan", "oat-project-plan-writing", "oat-project-pr-final", "oat-project-pr-progress", "oat-project-progress", "oat-project-promote-spec-driven", "oat-project-quick-start", "oat-project-reconcile", "oat-project-revise", "oat-project-review-provide", "oat-project-review-provide-remote", "oat-project-review-receive", "oat-project-review-receive-remote", "oat-project-spec", "oat-project-split", "oat-project-summary", "oat-repo-knowledge-index", "oat-worktree-bootstrap", "oat-worktree-bootstrap-auto", "oat-wrap-up"];
|
|
14
|
+
export declare const WORKFLOW_SKILLS: readonly ["oat-project-capture", "oat-project-clear-active", "oat-project-complete", "oat-project-design", "oat-project-dispatch-subagents", "oat-project-discover", "oat-project-document", "oat-project-implement", "oat-project-import-plan", "oat-project-new", "oat-project-next", "oat-project-open", "oat-project-plan", "oat-project-plan-writing", "oat-project-pr-final", "oat-project-pr-progress", "oat-project-progress", "oat-project-promote-spec-driven", "oat-project-quick-start", "oat-project-reconcile", "oat-project-revise", "oat-project-review-provide", "oat-project-review-provide-remote", "oat-project-review-receive", "oat-project-review-receive-remote", "oat-project-spec", "oat-project-split", "oat-project-summary", "oat-repo-knowledge-index", "oat-worktree-bootstrap", "oat-worktree-bootstrap-auto", "oat-wrap-up"];
|
|
15
15
|
export declare const WORKFLOW_AGENTS: readonly ["oat-codebase-mapper.md", "oat-phase-implementer.md", "oat-reviewer.md"];
|
|
16
16
|
export declare const WORKFLOW_TEMPLATES: readonly ["state.md", "discovery.md", "spec.md", "design.md", "plan.md", "implementation.md", "summary.md"];
|
|
17
17
|
export declare const WORKFLOW_SCRIPTS: readonly ["generate-oat-state.sh", "generate-thin-index.sh", "resolve-tracking.sh"];
|
|
@@ -19,7 +19,7 @@ export declare const IDEA_SKILLS: readonly ["oat-idea-new", "oat-idea-ideate", "
|
|
|
19
19
|
export declare const CORE_SKILLS: readonly ["oat-docs", "oat-doctor"];
|
|
20
20
|
export declare const DOCS_SKILLS: readonly ["authoring-docs", "oat-agent-instructions-analyze", "oat-agent-instructions-apply", "oat-docs-analyze", "oat-docs-apply", "oat-docs-authoring", "oat-docs-bootstrap"];
|
|
21
21
|
export declare const DOCS_SCRIPTS: readonly ["resolve-tracking.sh"];
|
|
22
|
-
export declare const UTILITY_SKILLS: readonly ["create-agnostic-skill", "oat-repo-maintainability-review", "oat-review-provide", "oat-review-provide-remote", "oat-review-receive", "oat-review-receive-remote"];
|
|
22
|
+
export declare const UTILITY_SKILLS: readonly ["create-agnostic-skill", "oat-dispatch-subagents", "oat-repo-improve", "oat-repo-maintainability-review", "oat-review-provide", "oat-review-provide-remote", "oat-review-receive", "oat-review-receive-remote"];
|
|
23
23
|
export declare const PROJECT_MANAGEMENT_SKILLS: readonly ["oat-pjm-add-backlog-item", "oat-pjm-decision", "oat-pjm-update-repo-reference", "oat-pjm-review-backlog"];
|
|
24
24
|
export declare const PROJECT_MANAGEMENT_TEMPLATES: readonly ["backlog-item.md", "roadmap.md", "current-state.md", "decision.md", "repo-agents.md", "pjm-agents.md", "reference-agents.md"];
|
|
25
25
|
export declare const PROJECT_MANAGEMENT_SCRIPTS: readonly [];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skill-manifest.d.ts","sourceRoot":"","sources":["../../../../../src/commands/init/tools/shared/skill-manifest.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAgBH,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,GAAG,SAAS,CAAC;CAClC;AAED,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAKtD,CAAC;AAEF,wBAAgB,uBAAuB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAE5E;AAID,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"skill-manifest.d.ts","sourceRoot":"","sources":["../../../../../src/commands/init/tools/shared/skill-manifest.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAgBH,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,GAAG,SAAS,CAAC;CAClC;AAED,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAKtD,CAAC;AAEF,wBAAgB,uBAAuB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAE5E;AAID,eAAO,MAAM,eAAe,+zBAiClB,CAAC;AAEX,eAAO,MAAM,eAAe,oFAIlB,CAAC;AAEX,eAAO,MAAM,kBAAkB,6GAQrB,CAAC;AAEX,eAAO,MAAM,gBAAgB,qFAInB,CAAC;AAIX,eAAO,MAAM,WAAW,2FAKd,CAAC;AAIX,eAAO,MAAM,WAAW,qCAAsC,CAAC;AAI/D,eAAO,MAAM,WAAW,iLAQd,CAAC;AAEX,eAAO,MAAM,YAAY,kCAAmC,CAAC;AAI7D,eAAO,MAAM,cAAc,2NASjB,CAAC;AAIX,eAAO,MAAM,yBAAyB,sHAK5B,CAAC;AAEX,eAAO,MAAM,4BAA4B,yIAQ/B,CAAC;AAEX,eAAO,MAAM,0BAA0B,aAAc,CAAC;AAItD,eAAO,MAAM,iBAAiB,6BAA8B,CAAC;AAI7D,eAAO,MAAM,eAAe,2EAMlB,CAAC;AAEX,eAAO,MAAM,eAAe,qCAAsC,CAAC"}
|
|
@@ -20,6 +20,7 @@ export const WORKFLOW_SKILLS = [
|
|
|
20
20
|
'oat-project-clear-active',
|
|
21
21
|
'oat-project-complete',
|
|
22
22
|
'oat-project-design',
|
|
23
|
+
'oat-project-dispatch-subagents',
|
|
23
24
|
'oat-project-discover',
|
|
24
25
|
'oat-project-document',
|
|
25
26
|
'oat-project-implement',
|
|
@@ -90,6 +91,8 @@ export const DOCS_SCRIPTS = ['resolve-tracking.sh'];
|
|
|
90
91
|
// ── Utility pack ───────────────────────────────────────────────────
|
|
91
92
|
export const UTILITY_SKILLS = [
|
|
92
93
|
'create-agnostic-skill',
|
|
94
|
+
'oat-dispatch-subagents',
|
|
95
|
+
'oat-repo-improve',
|
|
93
96
|
'oat-repo-maintainability-review',
|
|
94
97
|
'oat-review-provide',
|
|
95
98
|
'oat-review-provide-remote',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-agent-toolkit/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.54",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Open Agent Toolkit CLI",
|
|
6
6
|
"homepage": "https://github.com/voxmedia/open-agent-toolkit/tree/main/packages/cli",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"ora": "^9.0.0",
|
|
35
35
|
"yaml": "2.8.2",
|
|
36
36
|
"zod": "^3.25.76",
|
|
37
|
-
"@open-agent-toolkit/control-plane": "0.1.
|
|
37
|
+
"@open-agent-toolkit/control-plane": "0.1.54"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^22.10.0",
|