@open-agent-toolkit/cli 0.0.10
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/README.md +50 -0
- package/assets/agents/oat-codebase-mapper.md +275 -0
- package/assets/agents/oat-reviewer.md +350 -0
- package/assets/agents/skeptical-evaluator.md +126 -0
- package/assets/docs/contributing/code.md +95 -0
- package/assets/docs/contributing/commit-conventions.md +41 -0
- package/assets/docs/contributing/design-principles.md +124 -0
- package/assets/docs/contributing/documentation.md +69 -0
- package/assets/docs/contributing/hooks-and-safety.md +31 -0
- package/assets/docs/contributing/index.md +18 -0
- package/assets/docs/contributing/markdown-features.md +117 -0
- package/assets/docs/contributing/skills.md +68 -0
- package/assets/docs/guide/cli-reference.md +211 -0
- package/assets/docs/guide/concepts.md +88 -0
- package/assets/docs/guide/configuration.md +130 -0
- package/assets/docs/guide/documentation/commands.md +157 -0
- package/assets/docs/guide/documentation/index.md +27 -0
- package/assets/docs/guide/documentation/quickstart.md +164 -0
- package/assets/docs/guide/documentation/workflows.md +67 -0
- package/assets/docs/guide/getting-started.md +63 -0
- package/assets/docs/guide/ideas/index.md +34 -0
- package/assets/docs/guide/ideas/lifecycle.md +106 -0
- package/assets/docs/guide/index.md +20 -0
- package/assets/docs/guide/provider-sync/commands.md +100 -0
- package/assets/docs/guide/provider-sync/config.md +77 -0
- package/assets/docs/guide/provider-sync/index.md +65 -0
- package/assets/docs/guide/provider-sync/manifest-and-drift.md +55 -0
- package/assets/docs/guide/provider-sync/providers.md +67 -0
- package/assets/docs/guide/provider-sync/scope-and-surface.md +64 -0
- package/assets/docs/guide/skills/index.md +115 -0
- package/assets/docs/guide/tool-packs.md +167 -0
- package/assets/docs/guide/workflow/artifacts.md +44 -0
- package/assets/docs/guide/workflow/hill-checkpoints.md +53 -0
- package/assets/docs/guide/workflow/index.md +34 -0
- package/assets/docs/guide/workflow/lifecycle.md +207 -0
- package/assets/docs/guide/workflow/pr-flow.md +55 -0
- package/assets/docs/guide/workflow/repo-analysis.md +96 -0
- package/assets/docs/guide/workflow/reviews.md +98 -0
- package/assets/docs/guide/workflow/state-machine.md +74 -0
- package/assets/docs/index.md +45 -0
- package/assets/docs/quickstart.md +162 -0
- package/assets/docs/reference/docs-index-contract.md +53 -0
- package/assets/docs/reference/file-locations.md +109 -0
- package/assets/docs/reference/index.md +29 -0
- package/assets/docs/reference/oat-directory-structure.md +236 -0
- package/assets/docs/reference/troubleshooting.md +63 -0
- package/assets/public-package-versions.json +6 -0
- package/assets/scripts/resolve-tracking.sh +233 -0
- package/assets/skills/analyze/SKILL.md +358 -0
- package/assets/skills/compare/SKILL.md +276 -0
- package/assets/skills/create-agnostic-skill/SKILL.md +410 -0
- package/assets/skills/create-agnostic-skill/references/skill-template.md +195 -0
- package/assets/skills/deep-research/SKILL.md +350 -0
- package/assets/skills/deep-research/references/schema-analysis.md +93 -0
- package/assets/skills/deep-research/references/schema-architectural.md +75 -0
- package/assets/skills/deep-research/references/schema-base.md +70 -0
- package/assets/skills/deep-research/references/schema-comparative.md +72 -0
- package/assets/skills/deep-research/references/schema-conceptual.md +68 -0
- package/assets/skills/deep-research/references/schema-technical.md +64 -0
- package/assets/skills/oat-agent-instructions-analyze/SKILL.md +500 -0
- package/assets/skills/oat-agent-instructions-analyze/references/analysis-artifact-template.md +248 -0
- package/assets/skills/oat-agent-instructions-analyze/references/bundle-summary-template.md +31 -0
- package/assets/skills/oat-agent-instructions-analyze/references/directory-assessment-criteria.md +93 -0
- package/assets/skills/oat-agent-instructions-analyze/references/docs/agent-instruction.md +575 -0
- package/assets/skills/oat-agent-instructions-analyze/references/docs/cursor-rules-files.md +510 -0
- package/assets/skills/oat-agent-instructions-analyze/references/docs/provider-reference.md +429 -0
- package/assets/skills/oat-agent-instructions-analyze/references/docs/rules-files.md +594 -0
- package/assets/skills/oat-agent-instructions-analyze/references/file-type-discovery-checklist.md +273 -0
- package/assets/skills/oat-agent-instructions-analyze/references/quality-checklist.md +125 -0
- package/assets/skills/oat-agent-instructions-analyze/references/recommendation-pack-template.md +45 -0
- package/assets/skills/oat-agent-instructions-analyze/references/recommendations-manifest-template.yaml +27 -0
- package/assets/skills/oat-agent-instructions-analyze/scripts/resolve-instruction-files.sh +120 -0
- package/assets/skills/oat-agent-instructions-analyze/scripts/resolve-providers.sh +135 -0
- package/assets/skills/oat-agent-instructions-apply/SKILL.md +507 -0
- package/assets/skills/oat-agent-instructions-apply/references/apply-plan-template.md +80 -0
- package/assets/skills/oat-agent-instructions-apply/references/docs/agent-instruction.md +575 -0
- package/assets/skills/oat-agent-instructions-apply/references/docs/cursor-rules-files.md +510 -0
- package/assets/skills/oat-agent-instructions-apply/references/docs/provider-reference.md +429 -0
- package/assets/skills/oat-agent-instructions-apply/references/docs/rules-files.md +594 -0
- package/assets/skills/oat-agent-instructions-apply/references/instruction-file-templates/agents-md-root.md +85 -0
- package/assets/skills/oat-agent-instructions-apply/references/instruction-file-templates/agents-md-scoped.md +62 -0
- package/assets/skills/oat-agent-instructions-apply/references/instruction-file-templates/frontmatter/claude-rule.md +67 -0
- package/assets/skills/oat-agent-instructions-apply/references/instruction-file-templates/frontmatter/copilot-instruction.md +70 -0
- package/assets/skills/oat-agent-instructions-apply/references/instruction-file-templates/frontmatter/copilot-shim.md +35 -0
- package/assets/skills/oat-agent-instructions-apply/references/instruction-file-templates/frontmatter/cursor-rule.md +84 -0
- package/assets/skills/oat-agent-instructions-apply/references/instruction-file-templates/glob-scoped-rule.md +59 -0
- package/assets/skills/oat-docs/SKILL.md +214 -0
- package/assets/skills/oat-docs-analyze/SKILL.md +355 -0
- package/assets/skills/oat-docs-analyze/references/analysis-artifact-template.md +192 -0
- package/assets/skills/oat-docs-analyze/references/directory-assessment-criteria.md +46 -0
- package/assets/skills/oat-docs-analyze/references/quality-checklist.md +48 -0
- package/assets/skills/oat-docs-apply/SKILL.md +339 -0
- package/assets/skills/oat-docs-apply/references/apply-plan-template.md +69 -0
- package/assets/skills/oat-doctor/SKILL.md +293 -0
- package/assets/skills/oat-idea-ideate/SKILL.md +187 -0
- package/assets/skills/oat-idea-new/SKILL.md +152 -0
- package/assets/skills/oat-idea-scratchpad/SKILL.md +115 -0
- package/assets/skills/oat-idea-summarize/SKILL.md +172 -0
- package/assets/skills/oat-pjm-add-backlog-item/SKILL.md +155 -0
- package/assets/skills/oat-pjm-review-backlog/SKILL.md +171 -0
- package/assets/skills/oat-pjm-review-backlog/references/backlog-review-template.md +172 -0
- package/assets/skills/oat-pjm-update-repo-reference/SKILL.md +128 -0
- package/assets/skills/oat-project-capture/SKILL.md +306 -0
- package/assets/skills/oat-project-clear-active/SKILL.md +50 -0
- package/assets/skills/oat-project-complete/SKILL.md +461 -0
- package/assets/skills/oat-project-design/SKILL.md +461 -0
- package/assets/skills/oat-project-discover/SKILL.md +395 -0
- package/assets/skills/oat-project-document/SKILL.md +468 -0
- package/assets/skills/oat-project-implement/SKILL.md +736 -0
- package/assets/skills/oat-project-import-plan/SKILL.md +228 -0
- package/assets/skills/oat-project-import-plan/scripts/find-recent-provider-plans.sh +149 -0
- package/assets/skills/oat-project-new/SKILL.md +74 -0
- package/assets/skills/oat-project-next/SKILL.md +345 -0
- package/assets/skills/oat-project-open/SKILL.md +47 -0
- package/assets/skills/oat-project-plan/SKILL.md +415 -0
- package/assets/skills/oat-project-plan-writing/SKILL.md +116 -0
- package/assets/skills/oat-project-pr-final/SKILL.md +391 -0
- package/assets/skills/oat-project-pr-progress/SKILL.md +354 -0
- package/assets/skills/oat-project-progress/SKILL.md +342 -0
- package/assets/skills/oat-project-promote-spec-driven/SKILL.md +155 -0
- package/assets/skills/oat-project-quick-start/SKILL.md +363 -0
- package/assets/skills/oat-project-reconcile/SKILL.md +738 -0
- package/assets/skills/oat-project-review-provide/SKILL.md +728 -0
- package/assets/skills/oat-project-review-receive/SKILL.md +641 -0
- package/assets/skills/oat-project-review-receive-remote/SKILL.md +235 -0
- package/assets/skills/oat-project-revise/SKILL.md +316 -0
- package/assets/skills/oat-project-spec/SKILL.md +471 -0
- package/assets/skills/oat-project-subagent-implement/SKILL.md +549 -0
- package/assets/skills/oat-project-subagent-implement/examples/pattern-hill-checkpoint.md +110 -0
- package/assets/skills/oat-project-subagent-implement/examples/pattern-parallel-phases.md +118 -0
- package/assets/skills/oat-project-subagent-implement/scripts/dispatch.sh +133 -0
- package/assets/skills/oat-project-subagent-implement/scripts/reconcile.sh +182 -0
- package/assets/skills/oat-project-subagent-implement/scripts/review-gate.sh +187 -0
- package/assets/skills/oat-project-subagent-implement/tests/fixtures/sample-plan.md +234 -0
- package/assets/skills/oat-project-subagent-implement/tests/test-dry-run.sh +126 -0
- package/assets/skills/oat-project-subagent-implement/tests/test-hill-checkpoint.sh +127 -0
- package/assets/skills/oat-project-subagent-implement/tests/test-reconcile.sh +254 -0
- package/assets/skills/oat-project-subagent-implement/tests/test-review-gate.sh +220 -0
- package/assets/skills/oat-project-summary/SKILL.md +227 -0
- package/assets/skills/oat-repo-knowledge-index/SKILL.md +724 -0
- package/assets/skills/oat-repo-knowledge-index/references/templates/architecture.md +83 -0
- package/assets/skills/oat-repo-knowledge-index/references/templates/concerns.md +97 -0
- package/assets/skills/oat-repo-knowledge-index/references/templates/conventions.md +100 -0
- package/assets/skills/oat-repo-knowledge-index/references/templates/integrations.md +91 -0
- package/assets/skills/oat-repo-knowledge-index/references/templates/stack.md +86 -0
- package/assets/skills/oat-repo-knowledge-index/references/templates/structure.md +88 -0
- package/assets/skills/oat-repo-knowledge-index/references/templates/testing.md +137 -0
- package/assets/skills/oat-repo-maintainability-review/SKILL.md +198 -0
- package/assets/skills/oat-repo-maintainability-review/references/dx-checklist.md +33 -0
- package/assets/skills/oat-repo-maintainability-review/references/repo-review-artifact-template.md +72 -0
- package/assets/skills/oat-repo-maintainability-review/references/repo-review-rubric.md +66 -0
- package/assets/skills/oat-repo-maintainability-review/scripts/resolve-analysis-output.sh +162 -0
- package/assets/skills/oat-review-provide/SKILL.md +231 -0
- package/assets/skills/oat-review-provide/references/review-artifact-template.md +55 -0
- package/assets/skills/oat-review-provide/scripts/resolve-review-output.sh +124 -0
- package/assets/skills/oat-review-receive/SKILL.md +238 -0
- package/assets/skills/oat-review-receive-remote/SKILL.md +250 -0
- package/assets/skills/oat-worktree-bootstrap/SKILL.md +208 -0
- package/assets/skills/oat-worktree-bootstrap/references/worktree-conventions.md +58 -0
- package/assets/skills/oat-worktree-bootstrap-auto/SKILL.md +245 -0
- package/assets/skills/oat-worktree-bootstrap-auto/scripts/bootstrap.sh +194 -0
- package/assets/skills/skeptic/SKILL.md +261 -0
- package/assets/skills/synthesize/SKILL.md +361 -0
- package/assets/templates/backlog-item.md +24 -0
- package/assets/templates/design.md +315 -0
- package/assets/templates/discovery.md +135 -0
- package/assets/templates/docs-app-fuma/app/[[...slug]]/page.tsx +30 -0
- package/assets/templates/docs-app-fuma/app/api/search/route.ts +8 -0
- package/assets/templates/docs-app-fuma/app/globals.css +69 -0
- package/assets/templates/docs-app-fuma/app/layout.tsx +26 -0
- package/assets/templates/docs-app-fuma/docs/contributing.md +71 -0
- package/assets/templates/docs-app-fuma/docs/getting-started.md +40 -0
- package/assets/templates/docs-app-fuma/docs/index.md +13 -0
- package/assets/templates/docs-app-fuma/lib/source.ts +8 -0
- package/assets/templates/docs-app-fuma/next.config.js +6 -0
- package/assets/templates/docs-app-fuma/package.json.template +38 -0
- package/assets/templates/docs-app-fuma/postcss.config.mjs +7 -0
- package/assets/templates/docs-app-fuma/source.config.ts +14 -0
- package/assets/templates/docs-app-fuma/tsconfig.json +25 -0
- package/assets/templates/docs-app-mkdocs/docs/contributing.md +122 -0
- package/assets/templates/docs-app-mkdocs/docs/getting-started.md +28 -0
- package/assets/templates/docs-app-mkdocs/docs/index.md +8 -0
- package/assets/templates/docs-app-mkdocs/mkdocs.yml +47 -0
- package/assets/templates/docs-app-mkdocs/package.json.template +19 -0
- package/assets/templates/docs-app-mkdocs/requirements.txt +6 -0
- package/assets/templates/docs-app-mkdocs/setup-docs.sh +18 -0
- package/assets/templates/ideas/idea-discovery.md +39 -0
- package/assets/templates/ideas/idea-summary.md +42 -0
- package/assets/templates/ideas/ideas-backlog.md +21 -0
- package/assets/templates/ideas/ideas-scratchpad.md +10 -0
- package/assets/templates/implementation.md +207 -0
- package/assets/templates/plan.md +171 -0
- package/assets/templates/roadmap.md +24 -0
- package/assets/templates/spec.md +138 -0
- package/assets/templates/state.md +49 -0
- package/assets/templates/summary.md +82 -0
- package/dist/agents/canonical/index.d.ts +4 -0
- package/dist/agents/canonical/index.d.ts.map +1 -0
- package/dist/agents/canonical/index.js +2 -0
- package/dist/agents/canonical/parse.d.ts +4 -0
- package/dist/agents/canonical/parse.d.ts.map +1 -0
- package/dist/agents/canonical/parse.js +97 -0
- package/dist/agents/canonical/render.d.ts +3 -0
- package/dist/agents/canonical/render.d.ts.map +1 -0
- package/dist/agents/canonical/render.js +17 -0
- package/dist/agents/canonical/types.d.ts +22 -0
- package/dist/agents/canonical/types.d.ts.map +1 -0
- package/dist/agents/canonical/types.js +1 -0
- package/dist/app/command-context.d.ts +21 -0
- package/dist/app/command-context.d.ts.map +1 -0
- package/dist/app/command-context.js +18 -0
- package/dist/app/create-program.d.ts +3 -0
- package/dist/app/create-program.d.ts.map +1 -0
- package/dist/app/create-program.js +17 -0
- package/dist/commands/__tests__/helpers.d.ts +12 -0
- package/dist/commands/__tests__/helpers.d.ts.map +1 -0
- package/dist/commands/__tests__/helpers.js +36 -0
- package/dist/commands/backlog/index.d.ts +14 -0
- package/dist/commands/backlog/index.d.ts.map +1 -0
- package/dist/commands/backlog/index.js +80 -0
- package/dist/commands/backlog/init.d.ts +2 -0
- package/dist/commands/backlog/init.d.ts.map +1 -0
- package/dist/commands/backlog/init.js +66 -0
- package/dist/commands/backlog/regenerate-index.d.ts +2 -0
- package/dist/commands/backlog/regenerate-index.d.ts.map +1 -0
- package/dist/commands/backlog/regenerate-index.js +78 -0
- package/dist/commands/backlog/shared/generate-id.d.ts +4 -0
- package/dist/commands/backlog/shared/generate-id.d.ts.map +1 -0
- package/dist/commands/backlog/shared/generate-id.js +65 -0
- package/dist/commands/cleanup/artifacts/artifacts.d.ts +44 -0
- package/dist/commands/cleanup/artifacts/artifacts.d.ts.map +1 -0
- package/dist/commands/cleanup/artifacts/artifacts.js +381 -0
- package/dist/commands/cleanup/artifacts/artifacts.types.d.ts +13 -0
- package/dist/commands/cleanup/artifacts/artifacts.types.d.ts.map +1 -0
- package/dist/commands/cleanup/artifacts/artifacts.types.js +1 -0
- package/dist/commands/cleanup/artifacts/artifacts.utils.d.ts +14 -0
- package/dist/commands/cleanup/artifacts/artifacts.utils.d.ts.map +1 -0
- package/dist/commands/cleanup/artifacts/artifacts.utils.js +74 -0
- package/dist/commands/cleanup/cleanup.types.d.ts +26 -0
- package/dist/commands/cleanup/cleanup.types.d.ts.map +1 -0
- package/dist/commands/cleanup/cleanup.types.js +1 -0
- package/dist/commands/cleanup/cleanup.utils.d.ts +17 -0
- package/dist/commands/cleanup/cleanup.utils.d.ts.map +1 -0
- package/dist/commands/cleanup/cleanup.utils.js +44 -0
- package/dist/commands/cleanup/index.d.ts +3 -0
- package/dist/commands/cleanup/index.d.ts.map +1 -0
- package/dist/commands/cleanup/index.js +9 -0
- package/dist/commands/cleanup/project/project.d.ts +20 -0
- package/dist/commands/cleanup/project/project.d.ts.map +1 -0
- package/dist/commands/cleanup/project/project.js +263 -0
- package/dist/commands/cleanup/project/project.utils.d.ts +8 -0
- package/dist/commands/cleanup/project/project.utils.d.ts.map +1 -0
- package/dist/commands/cleanup/project/project.utils.js +48 -0
- package/dist/commands/config/index.d.ts +16 -0
- package/dist/commands/config/index.d.ts.map +1 -0
- package/dist/commands/config/index.js +700 -0
- package/dist/commands/docs/analyze.d.ts +8 -0
- package/dist/commands/docs/analyze.d.ts.map +1 -0
- package/dist/commands/docs/analyze.js +45 -0
- package/dist/commands/docs/apply.d.ts +8 -0
- package/dist/commands/docs/apply.d.ts.map +1 -0
- package/dist/commands/docs/apply.js +45 -0
- package/dist/commands/docs/index-generate/generator.d.ts +9 -0
- package/dist/commands/docs/index-generate/generator.d.ts.map +1 -0
- package/dist/commands/docs/index-generate/generator.js +114 -0
- package/dist/commands/docs/index-generate/index.d.ts +16 -0
- package/dist/commands/docs/index-generate/index.d.ts.map +1 -0
- package/dist/commands/docs/index-generate/index.js +72 -0
- package/dist/commands/docs/index.d.ts +3 -0
- package/dist/commands/docs/index.d.ts.map +1 -0
- package/dist/commands/docs/index.js +17 -0
- package/dist/commands/docs/init/index.d.ts +18 -0
- package/dist/commands/docs/init/index.d.ts.map +1 -0
- package/dist/commands/docs/init/index.js +129 -0
- package/dist/commands/docs/init/resolve-options.d.ts +41 -0
- package/dist/commands/docs/init/resolve-options.d.ts.map +1 -0
- package/dist/commands/docs/init/resolve-options.js +120 -0
- package/dist/commands/docs/init/scaffold.d.ts +18 -0
- package/dist/commands/docs/init/scaffold.d.ts.map +1 -0
- package/dist/commands/docs/init/scaffold.js +233 -0
- package/dist/commands/docs/migrate/codemod.d.ts +6 -0
- package/dist/commands/docs/migrate/codemod.d.ts.map +1 -0
- package/dist/commands/docs/migrate/codemod.js +62 -0
- package/dist/commands/docs/migrate/frontmatter.d.ts +12 -0
- package/dist/commands/docs/migrate/frontmatter.d.ts.map +1 -0
- package/dist/commands/docs/migrate/frontmatter.js +55 -0
- package/dist/commands/docs/migrate/index.d.ts +18 -0
- package/dist/commands/docs/migrate/index.d.ts.map +1 -0
- package/dist/commands/docs/migrate/index.js +138 -0
- package/dist/commands/docs/nav/contents.d.ts +14 -0
- package/dist/commands/docs/nav/contents.d.ts.map +1 -0
- package/dist/commands/docs/nav/contents.js +106 -0
- package/dist/commands/docs/nav/index.d.ts +3 -0
- package/dist/commands/docs/nav/index.d.ts.map +1 -0
- package/dist/commands/docs/nav/index.js +7 -0
- package/dist/commands/docs/nav/sync.d.ts +20 -0
- package/dist/commands/docs/nav/sync.d.ts.map +1 -0
- package/dist/commands/docs/nav/sync.js +92 -0
- package/dist/commands/doctor/index.d.ts +32 -0
- package/dist/commands/doctor/index.d.ts.map +1 -0
- package/dist/commands/doctor/index.js +373 -0
- package/dist/commands/index-cmd/index.d.ts +11 -0
- package/dist/commands/index-cmd/index.d.ts.map +1 -0
- package/dist/commands/index-cmd/index.js +62 -0
- package/dist/commands/index-cmd/thin-index.d.ts +19 -0
- package/dist/commands/index-cmd/thin-index.d.ts.map +1 -0
- package/dist/commands/index-cmd/thin-index.js +330 -0
- package/dist/commands/index.d.ts +3 -0
- package/dist/commands/index.d.ts.map +1 -0
- package/dist/commands/index.js +38 -0
- package/dist/commands/init/detect-docs.d.ts +11 -0
- package/dist/commands/init/detect-docs.d.ts.map +1 -0
- package/dist/commands/init/detect-docs.js +51 -0
- package/dist/commands/init/gitignore.d.ts +6 -0
- package/dist/commands/init/gitignore.d.ts.map +1 -0
- package/dist/commands/init/gitignore.js +41 -0
- package/dist/commands/init/index.d.ts +70 -0
- package/dist/commands/init/index.d.ts.map +1 -0
- package/dist/commands/init/index.js +570 -0
- package/dist/commands/init/tools/core/index.d.ts +12 -0
- package/dist/commands/init/tools/core/index.d.ts.map +1 -0
- package/dist/commands/init/tools/core/index.js +67 -0
- package/dist/commands/init/tools/core/install-core.d.ts +30 -0
- package/dist/commands/init/tools/core/install-core.d.ts.map +1 -0
- package/dist/commands/init/tools/core/install-core.js +50 -0
- package/dist/commands/init/tools/docs/index.d.ts +17 -0
- package/dist/commands/init/tools/docs/index.d.ts.map +1 -0
- package/dist/commands/init/tools/docs/index.js +110 -0
- package/dist/commands/init/tools/docs/install-docs.d.ts +23 -0
- package/dist/commands/init/tools/docs/install-docs.d.ts.map +1 -0
- package/dist/commands/init/tools/docs/install-docs.js +58 -0
- package/dist/commands/init/tools/ideas/index.d.ts +16 -0
- package/dist/commands/init/tools/ideas/index.d.ts.map +1 -0
- package/dist/commands/init/tools/ideas/index.js +94 -0
- package/dist/commands/init/tools/ideas/install-ideas.d.ts +25 -0
- package/dist/commands/init/tools/ideas/install-ideas.d.ts.map +1 -0
- package/dist/commands/init/tools/ideas/install-ideas.js +78 -0
- package/dist/commands/init/tools/index.d.ts +51 -0
- package/dist/commands/init/tools/index.d.ts.map +1 -0
- package/dist/commands/init/tools/index.js +387 -0
- package/dist/commands/init/tools/project-management/index.d.ts +12 -0
- package/dist/commands/init/tools/project-management/index.d.ts.map +1 -0
- package/dist/commands/init/tools/project-management/index.js +61 -0
- package/dist/commands/init/tools/project-management/install-project-management.d.ts +22 -0
- package/dist/commands/init/tools/project-management/install-project-management.d.ts.map +1 -0
- package/dist/commands/init/tools/project-management/install-project-management.js +52 -0
- package/dist/commands/init/tools/research/index.d.ts +17 -0
- package/dist/commands/init/tools/research/index.d.ts.map +1 -0
- package/dist/commands/init/tools/research/index.js +110 -0
- package/dist/commands/init/tools/research/install-research.d.ts +23 -0
- package/dist/commands/init/tools/research/install-research.d.ts.map +1 -0
- package/dist/commands/init/tools/research/install-research.js +52 -0
- package/dist/commands/init/tools/shared/copy-helpers.d.ts +12 -0
- package/dist/commands/init/tools/shared/copy-helpers.d.ts.map +1 -0
- package/dist/commands/init/tools/shared/copy-helpers.js +52 -0
- package/dist/commands/init/tools/shared/skill-manifest.d.ts +22 -0
- package/dist/commands/init/tools/shared/skill-manifest.d.ts.map +1 -0
- package/dist/commands/init/tools/shared/skill-manifest.js +102 -0
- package/dist/commands/init/tools/shared/version.d.ts +3 -0
- package/dist/commands/init/tools/shared/version.d.ts.map +1 -0
- package/dist/commands/init/tools/shared/version.js +27 -0
- package/dist/commands/init/tools/utility/index.d.ts +17 -0
- package/dist/commands/init/tools/utility/index.d.ts.map +1 -0
- package/dist/commands/init/tools/utility/index.js +109 -0
- package/dist/commands/init/tools/utility/install-utility.d.ts +20 -0
- package/dist/commands/init/tools/utility/install-utility.d.ts.map +1 -0
- package/dist/commands/init/tools/utility/install-utility.js +35 -0
- package/dist/commands/init/tools/workflows/index.d.ts +14 -0
- package/dist/commands/init/tools/workflows/index.d.ts.map +1 -0
- package/dist/commands/init/tools/workflows/index.js +84 -0
- package/dist/commands/init/tools/workflows/install-workflows.d.ts +32 -0
- package/dist/commands/init/tools/workflows/install-workflows.d.ts.map +1 -0
- package/dist/commands/init/tools/workflows/install-workflows.js +135 -0
- package/dist/commands/instructions/index.d.ts +3 -0
- package/dist/commands/instructions/index.d.ts.map +1 -0
- package/dist/commands/instructions/index.js +9 -0
- package/dist/commands/instructions/instructions.types.d.ts +52 -0
- package/dist/commands/instructions/instructions.types.d.ts.map +1 -0
- package/dist/commands/instructions/instructions.types.js +1 -0
- package/dist/commands/instructions/instructions.utils.d.ts +13 -0
- package/dist/commands/instructions/instructions.utils.d.ts.map +1 -0
- package/dist/commands/instructions/instructions.utils.js +211 -0
- package/dist/commands/instructions/sync/sync.d.ts +4 -0
- package/dist/commands/instructions/sync/sync.d.ts.map +1 -0
- package/dist/commands/instructions/sync/sync.js +142 -0
- package/dist/commands/instructions/validate/validate.d.ts +4 -0
- package/dist/commands/instructions/validate/validate.d.ts.map +1 -0
- package/dist/commands/instructions/validate/validate.js +53 -0
- package/dist/commands/internal/index.d.ts +3 -0
- package/dist/commands/internal/index.d.ts.map +1 -0
- package/dist/commands/internal/index.js +7 -0
- package/dist/commands/internal/validate-oat-skills.d.ts +10 -0
- package/dist/commands/internal/validate-oat-skills.d.ts.map +1 -0
- package/dist/commands/internal/validate-oat-skills.js +66 -0
- package/dist/commands/local/apply.d.ts +6 -0
- package/dist/commands/local/apply.d.ts.map +1 -0
- package/dist/commands/local/apply.js +56 -0
- package/dist/commands/local/expand.d.ts +8 -0
- package/dist/commands/local/expand.d.ts.map +1 -0
- package/dist/commands/local/expand.js +83 -0
- package/dist/commands/local/index.d.ts +3 -0
- package/dist/commands/local/index.d.ts.map +1 -0
- package/dist/commands/local/index.js +248 -0
- package/dist/commands/local/manage.d.ts +18 -0
- package/dist/commands/local/manage.d.ts.map +1 -0
- package/dist/commands/local/manage.js +66 -0
- package/dist/commands/local/status.d.ts +7 -0
- package/dist/commands/local/status.d.ts.map +1 -0
- package/dist/commands/local/status.js +46 -0
- package/dist/commands/local/sync.d.ts +20 -0
- package/dist/commands/local/sync.d.ts.map +1 -0
- package/dist/commands/local/sync.js +40 -0
- package/dist/commands/project/archive/archive-utils.d.ts +70 -0
- package/dist/commands/project/archive/archive-utils.d.ts.map +1 -0
- package/dist/commands/project/archive/archive-utils.js +236 -0
- package/dist/commands/project/archive/index.d.ts +20 -0
- package/dist/commands/project/archive/index.d.ts.map +1 -0
- package/dist/commands/project/archive/index.js +217 -0
- package/dist/commands/project/index.d.ts +3 -0
- package/dist/commands/project/index.d.ts.map +1 -0
- package/dist/commands/project/index.js +15 -0
- package/dist/commands/project/new/index.d.ts +17 -0
- package/dist/commands/project/new/index.d.ts.map +1 -0
- package/dist/commands/project/new/index.js +76 -0
- package/dist/commands/project/new/scaffold.d.ts +24 -0
- package/dist/commands/project/new/scaffold.d.ts.map +1 -0
- package/dist/commands/project/new/scaffold.js +177 -0
- package/dist/commands/project/open/index.d.ts +26 -0
- package/dist/commands/project/open/index.d.ts.map +1 -0
- package/dist/commands/project/open/index.js +139 -0
- package/dist/commands/project/pause/index.d.ts +27 -0
- package/dist/commands/project/pause/index.d.ts.map +1 -0
- package/dist/commands/project/pause/index.js +120 -0
- package/dist/commands/project/set-mode/index.d.ts +14 -0
- package/dist/commands/project/set-mode/index.d.ts.map +1 -0
- package/dist/commands/project/set-mode/index.js +115 -0
- package/dist/commands/providers/index.d.ts +4 -0
- package/dist/commands/providers/index.d.ts.map +1 -0
- package/dist/commands/providers/index.js +11 -0
- package/dist/commands/providers/inspect/inspect.d.ts +4 -0
- package/dist/commands/providers/inspect/inspect.d.ts.map +1 -0
- package/dist/commands/providers/inspect/inspect.js +156 -0
- package/dist/commands/providers/list/list.d.ts +4 -0
- package/dist/commands/providers/list/list.d.ts.map +1 -0
- package/dist/commands/providers/list/list.js +163 -0
- package/dist/commands/providers/providers.types.d.ts +63 -0
- package/dist/commands/providers/providers.types.d.ts.map +1 -0
- package/dist/commands/providers/providers.types.js +1 -0
- package/dist/commands/providers/set/index.d.ts +4 -0
- package/dist/commands/providers/set/index.d.ts.map +1 -0
- package/dist/commands/providers/set/index.js +138 -0
- package/dist/commands/remove/index.d.ts +3 -0
- package/dist/commands/remove/index.d.ts.map +1 -0
- package/dist/commands/remove/index.js +9 -0
- package/dist/commands/remove/skill/index.d.ts +2 -0
- package/dist/commands/remove/skill/index.d.ts.map +1 -0
- package/dist/commands/remove/skill/index.js +1 -0
- package/dist/commands/remove/skill/remove-skill.d.ts +23 -0
- package/dist/commands/remove/skill/remove-skill.d.ts.map +1 -0
- package/dist/commands/remove/skill/remove-skill.js +231 -0
- package/dist/commands/remove/skills/index.d.ts +2 -0
- package/dist/commands/remove/skills/index.d.ts.map +1 -0
- package/dist/commands/remove/skills/index.js +1 -0
- package/dist/commands/remove/skills/remove-skills.d.ts +14 -0
- package/dist/commands/remove/skills/remove-skills.d.ts.map +1 -0
- package/dist/commands/remove/skills/remove-skills.js +98 -0
- package/dist/commands/repo/index.d.ts +3 -0
- package/dist/commands/repo/index.d.ts.map +1 -0
- package/dist/commands/repo/index.js +7 -0
- package/dist/commands/repo/pr-comments/collect/collect-comments.d.ts +9 -0
- package/dist/commands/repo/pr-comments/collect/collect-comments.d.ts.map +1 -0
- package/dist/commands/repo/pr-comments/collect/collect-comments.js +284 -0
- package/dist/commands/repo/pr-comments/collect/graphql-queries.d.ts +3 -0
- package/dist/commands/repo/pr-comments/collect/graphql-queries.d.ts.map +1 -0
- package/dist/commands/repo/pr-comments/collect/graphql-queries.js +56 -0
- package/dist/commands/repo/pr-comments/collect/index.d.ts +4 -0
- package/dist/commands/repo/pr-comments/collect/index.d.ts.map +1 -0
- package/dist/commands/repo/pr-comments/collect/index.js +25 -0
- package/dist/commands/repo/pr-comments/collect/pr-comments.types.d.ts +62 -0
- package/dist/commands/repo/pr-comments/collect/pr-comments.types.d.ts.map +1 -0
- package/dist/commands/repo/pr-comments/collect/pr-comments.types.js +1 -0
- package/dist/commands/repo/pr-comments/index.d.ts +3 -0
- package/dist/commands/repo/pr-comments/index.d.ts.map +1 -0
- package/dist/commands/repo/pr-comments/index.js +9 -0
- package/dist/commands/repo/pr-comments/triage-collection/index.d.ts +4 -0
- package/dist/commands/repo/pr-comments/triage-collection/index.d.ts.map +1 -0
- package/dist/commands/repo/pr-comments/triage-collection/index.js +21 -0
- package/dist/commands/repo/pr-comments/triage-collection/triage-comments.d.ts +13 -0
- package/dist/commands/repo/pr-comments/triage-collection/triage-comments.d.ts.map +1 -0
- package/dist/commands/repo/pr-comments/triage-collection/triage-comments.js +81 -0
- package/dist/commands/shared/adopt-stray.d.ts +22 -0
- package/dist/commands/shared/adopt-stray.d.ts.map +1 -0
- package/dist/commands/shared/adopt-stray.js +135 -0
- package/dist/commands/shared/agents-md.d.ts +18 -0
- package/dist/commands/shared/agents-md.d.ts.map +1 -0
- package/dist/commands/shared/agents-md.js +81 -0
- package/dist/commands/shared/codex-strays.d.ts +16 -0
- package/dist/commands/shared/codex-strays.d.ts.map +1 -0
- package/dist/commands/shared/codex-strays.js +116 -0
- package/dist/commands/shared/frontmatter-write.d.ts +8 -0
- package/dist/commands/shared/frontmatter-write.d.ts.map +1 -0
- package/dist/commands/shared/frontmatter-write.js +27 -0
- package/dist/commands/shared/frontmatter.d.ts +6 -0
- package/dist/commands/shared/frontmatter.d.ts.map +1 -0
- package/dist/commands/shared/frontmatter.js +35 -0
- package/dist/commands/shared/messages.d.ts +2 -0
- package/dist/commands/shared/messages.d.ts.map +1 -0
- package/dist/commands/shared/messages.js +1 -0
- package/dist/commands/shared/oat-paths.d.ts +2 -0
- package/dist/commands/shared/oat-paths.d.ts.map +1 -0
- package/dist/commands/shared/oat-paths.js +13 -0
- package/dist/commands/shared/shared.prompts.d.ts +21 -0
- package/dist/commands/shared/shared.prompts.d.ts.map +1 -0
- package/dist/commands/shared/shared.prompts.js +107 -0
- package/dist/commands/shared/shared.utils.d.ts +6 -0
- package/dist/commands/shared/shared.utils.d.ts.map +1 -0
- package/dist/commands/shared/shared.utils.js +9 -0
- package/dist/commands/state/generate.d.ts +21 -0
- package/dist/commands/state/generate.d.ts.map +1 -0
- package/dist/commands/state/generate.js +440 -0
- package/dist/commands/state/index.d.ts +11 -0
- package/dist/commands/state/index.d.ts.map +1 -0
- package/dist/commands/state/index.js +58 -0
- package/dist/commands/status/index.d.ts +44 -0
- package/dist/commands/status/index.d.ts.map +1 -0
- package/dist/commands/status/index.js +340 -0
- package/dist/commands/sync/apply.d.ts +4 -0
- package/dist/commands/sync/apply.d.ts.map +1 -0
- package/dist/commands/sync/apply.js +100 -0
- package/dist/commands/sync/dry-run.d.ts +4 -0
- package/dist/commands/sync/dry-run.d.ts.map +1 -0
- package/dist/commands/sync/dry-run.js +74 -0
- package/dist/commands/sync/index.d.ts +4 -0
- package/dist/commands/sync/index.d.ts.map +1 -0
- package/dist/commands/sync/index.js +225 -0
- package/dist/commands/sync/sync.types.d.ts +80 -0
- package/dist/commands/sync/sync.types.d.ts.map +1 -0
- package/dist/commands/sync/sync.types.js +1 -0
- package/dist/commands/sync/sync.utils.d.ts +3 -0
- package/dist/commands/sync/sync.utils.d.ts.map +1 -0
- package/dist/commands/sync/sync.utils.js +8 -0
- package/dist/commands/tools/index.d.ts +3 -0
- package/dist/commands/tools/index.d.ts.map +1 -0
- package/dist/commands/tools/index.js +17 -0
- package/dist/commands/tools/info/index.d.ts +4 -0
- package/dist/commands/tools/info/index.d.ts.map +1 -0
- package/dist/commands/tools/info/index.js +74 -0
- package/dist/commands/tools/info/info-tool.d.ts +21 -0
- package/dist/commands/tools/info/info-tool.d.ts.map +1 -0
- package/dist/commands/tools/info/info-tool.js +52 -0
- package/dist/commands/tools/install/index.d.ts +4 -0
- package/dist/commands/tools/install/index.d.ts.map +1 -0
- package/dist/commands/tools/install/index.js +34 -0
- package/dist/commands/tools/list/index.d.ts +4 -0
- package/dist/commands/tools/list/index.d.ts.map +1 -0
- package/dist/commands/tools/list/index.js +25 -0
- package/dist/commands/tools/list/list-tools.d.ts +13 -0
- package/dist/commands/tools/list/list-tools.d.ts.map +1 -0
- package/dist/commands/tools/list/list-tools.js +43 -0
- package/dist/commands/tools/outdated/index.d.ts +4 -0
- package/dist/commands/tools/outdated/index.d.ts.map +1 -0
- package/dist/commands/tools/outdated/index.js +25 -0
- package/dist/commands/tools/outdated/outdated-tools.d.ts +13 -0
- package/dist/commands/tools/outdated/outdated-tools.d.ts.map +1 -0
- package/dist/commands/tools/outdated/outdated-tools.js +43 -0
- package/dist/commands/tools/remove/index.d.ts +5 -0
- package/dist/commands/tools/remove/index.d.ts.map +1 -0
- package/dist/commands/tools/remove/index.js +122 -0
- package/dist/commands/tools/remove/remove-tools.d.ts +31 -0
- package/dist/commands/tools/remove/remove-tools.d.ts.map +1 -0
- package/dist/commands/tools/remove/remove-tools.js +41 -0
- package/dist/commands/tools/shared/auto-sync.d.ts +16 -0
- package/dist/commands/tools/shared/auto-sync.d.ts.map +1 -0
- package/dist/commands/tools/shared/auto-sync.js +17 -0
- package/dist/commands/tools/shared/scan-tools.d.ts +18 -0
- package/dist/commands/tools/shared/scan-tools.d.ts.map +1 -0
- package/dist/commands/tools/shared/scan-tools.js +128 -0
- package/dist/commands/tools/shared/types.d.ts +12 -0
- package/dist/commands/tools/shared/types.d.ts.map +1 -0
- package/dist/commands/tools/shared/types.js +1 -0
- package/dist/commands/tools/update/index.d.ts +8 -0
- package/dist/commands/tools/update/index.d.ts.map +1 -0
- package/dist/commands/tools/update/index.js +149 -0
- package/dist/commands/tools/update/update-tools.d.ts +29 -0
- package/dist/commands/tools/update/update-tools.d.ts.map +1 -0
- package/dist/commands/tools/update/update-tools.js +148 -0
- package/dist/config/index.d.ts +4 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +2 -0
- package/dist/config/oat-config.d.ts +61 -0
- package/dist/config/oat-config.d.ts.map +1 -0
- package/dist/config/oat-config.js +319 -0
- package/dist/config/runtime.d.ts +2 -0
- package/dist/config/runtime.d.ts.map +1 -0
- package/dist/config/runtime.js +3 -0
- package/dist/config/sync-config.d.ts +49 -0
- package/dist/config/sync-config.d.ts.map +1 -0
- package/dist/config/sync-config.js +94 -0
- package/dist/drift/detector.d.ts +4 -0
- package/dist/drift/detector.d.ts.map +1 -0
- package/dist/drift/detector.js +69 -0
- package/dist/drift/drift.types.d.ts +17 -0
- package/dist/drift/drift.types.d.ts.map +1 -0
- package/dist/drift/drift.types.js +1 -0
- package/dist/drift/index.d.ts +4 -0
- package/dist/drift/index.d.ts.map +1 -0
- package/dist/drift/index.js +2 -0
- package/dist/drift/strays.d.ts +7 -0
- package/dist/drift/strays.d.ts.map +1 -0
- package/dist/drift/strays.js +153 -0
- package/dist/engine/compute-plan.d.ts +16 -0
- package/dist/engine/compute-plan.d.ts.map +1 -0
- package/dist/engine/compute-plan.js +234 -0
- package/dist/engine/engine.types.d.ts +28 -0
- package/dist/engine/engine.types.d.ts.map +1 -0
- package/dist/engine/engine.types.js +8 -0
- package/dist/engine/execute-plan.d.ts +5 -0
- package/dist/engine/execute-plan.d.ts.map +1 -0
- package/dist/engine/execute-plan.js +141 -0
- package/dist/engine/hook.d.ts +23 -0
- package/dist/engine/hook.d.ts.map +1 -0
- package/dist/engine/hook.js +254 -0
- package/dist/engine/index.d.ts +9 -0
- package/dist/engine/index.d.ts.map +1 -0
- package/dist/engine/index.js +6 -0
- package/dist/engine/markers.d.ts +6 -0
- package/dist/engine/markers.d.ts.map +1 -0
- package/dist/engine/markers.js +24 -0
- package/dist/engine/scanner.d.ts +11 -0
- package/dist/engine/scanner.d.ts.map +1 -0
- package/dist/engine/scanner.js +65 -0
- package/dist/engine/test-helpers.d.ts +3 -0
- package/dist/engine/test-helpers.d.ts.map +1 -0
- package/dist/engine/test-helpers.js +31 -0
- package/dist/errors/cli-error.d.ts +5 -0
- package/dist/errors/cli-error.d.ts.map +1 -0
- package/dist/errors/cli-error.js +8 -0
- package/dist/errors/index.d.ts +2 -0
- package/dist/errors/index.d.ts.map +1 -0
- package/dist/errors/index.js +1 -0
- package/dist/fs/assets.d.ts +2 -0
- package/dist/fs/assets.d.ts.map +1 -0
- package/dist/fs/assets.js +22 -0
- package/dist/fs/index.d.ts +4 -0
- package/dist/fs/index.d.ts.map +1 -0
- package/dist/fs/index.js +3 -0
- package/dist/fs/io.d.ts +9 -0
- package/dist/fs/io.d.ts.map +1 -0
- package/dist/fs/io.js +74 -0
- package/dist/fs/paths.d.ts +9 -0
- package/dist/fs/paths.d.ts.map +1 -0
- package/dist/fs/paths.js +42 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +48 -0
- package/dist/manifest/hash.d.ts +5 -0
- package/dist/manifest/hash.d.ts.map +1 -0
- package/dist/manifest/hash.js +75 -0
- package/dist/manifest/index.d.ts +5 -0
- package/dist/manifest/index.d.ts.map +1 -0
- package/dist/manifest/index.js +3 -0
- package/dist/manifest/manager.d.ts +8 -0
- package/dist/manifest/manager.d.ts.map +1 -0
- package/dist/manifest/manager.js +86 -0
- package/dist/manifest/manifest.types.d.ts +157 -0
- package/dist/manifest/manifest.types.d.ts.map +1 -0
- package/dist/manifest/manifest.types.js +56 -0
- package/dist/providers/claude/adapter.d.ts +3 -0
- package/dist/providers/claude/adapter.d.ts.map +1 -0
- package/dist/providers/claude/adapter.js +20 -0
- package/dist/providers/claude/index.d.ts +3 -0
- package/dist/providers/claude/index.d.ts.map +1 -0
- package/dist/providers/claude/index.js +2 -0
- package/dist/providers/claude/paths.d.ts +4 -0
- package/dist/providers/claude/paths.d.ts.map +1 -0
- package/dist/providers/claude/paths.js +38 -0
- package/dist/providers/claude/rule-transform.d.ts +3 -0
- package/dist/providers/claude/rule-transform.d.ts.map +1 -0
- package/dist/providers/claude/rule-transform.js +22 -0
- package/dist/providers/codex/adapter.d.ts +3 -0
- package/dist/providers/codex/adapter.d.ts.map +1 -0
- package/dist/providers/codex/adapter.js +20 -0
- package/dist/providers/codex/codec/config-merge.d.ts +17 -0
- package/dist/providers/codex/codec/config-merge.d.ts.map +1 -0
- package/dist/providers/codex/codec/config-merge.js +61 -0
- package/dist/providers/codex/codec/export-to-codex.d.ts +9 -0
- package/dist/providers/codex/codec/export-to-codex.d.ts.map +1 -0
- package/dist/providers/codex/codec/export-to-codex.js +45 -0
- package/dist/providers/codex/codec/import-from-codex.d.ts +9 -0
- package/dist/providers/codex/codec/import-from-codex.d.ts.map +1 -0
- package/dist/providers/codex/codec/import-from-codex.js +52 -0
- package/dist/providers/codex/codec/shared.d.ts +7 -0
- package/dist/providers/codex/codec/shared.d.ts.map +1 -0
- package/dist/providers/codex/codec/shared.js +21 -0
- package/dist/providers/codex/codec/sync-extension.d.ts +32 -0
- package/dist/providers/codex/codec/sync-extension.d.ts.map +1 -0
- package/dist/providers/codex/codec/sync-extension.js +227 -0
- package/dist/providers/codex/index.d.ts +6 -0
- package/dist/providers/codex/index.d.ts.map +1 -0
- package/dist/providers/codex/index.js +5 -0
- package/dist/providers/codex/paths.d.ts +4 -0
- package/dist/providers/codex/paths.d.ts.map +1 -0
- package/dist/providers/codex/paths.js +28 -0
- package/dist/providers/copilot/adapter.d.ts +3 -0
- package/dist/providers/copilot/adapter.d.ts.map +1 -0
- package/dist/providers/copilot/adapter.js +30 -0
- package/dist/providers/copilot/index.d.ts +3 -0
- package/dist/providers/copilot/index.d.ts.map +1 -0
- package/dist/providers/copilot/index.js +2 -0
- package/dist/providers/copilot/paths.d.ts +4 -0
- package/dist/providers/copilot/paths.d.ts.map +1 -0
- package/dist/providers/copilot/paths.js +38 -0
- package/dist/providers/copilot/rule-transform.d.ts +3 -0
- package/dist/providers/copilot/rule-transform.d.ts.map +1 -0
- package/dist/providers/copilot/rule-transform.js +58 -0
- package/dist/providers/cursor/adapter.d.ts +3 -0
- package/dist/providers/cursor/adapter.d.ts.map +1 -0
- package/dist/providers/cursor/adapter.js +20 -0
- package/dist/providers/cursor/index.d.ts +3 -0
- package/dist/providers/cursor/index.d.ts.map +1 -0
- package/dist/providers/cursor/index.js +2 -0
- package/dist/providers/cursor/paths.d.ts +4 -0
- package/dist/providers/cursor/paths.d.ts.map +1 -0
- package/dist/providers/cursor/paths.js +38 -0
- package/dist/providers/cursor/rule-transform.d.ts +3 -0
- package/dist/providers/cursor/rule-transform.d.ts.map +1 -0
- package/dist/providers/cursor/rule-transform.js +48 -0
- package/dist/providers/gemini/adapter.d.ts +3 -0
- package/dist/providers/gemini/adapter.d.ts.map +1 -0
- package/dist/providers/gemini/adapter.js +20 -0
- package/dist/providers/gemini/index.d.ts +3 -0
- package/dist/providers/gemini/index.d.ts.map +1 -0
- package/dist/providers/gemini/index.js +2 -0
- package/dist/providers/gemini/paths.d.ts +4 -0
- package/dist/providers/gemini/paths.d.ts.map +1 -0
- package/dist/providers/gemini/paths.js +28 -0
- package/dist/providers/shared/adapter.types.d.ts +21 -0
- package/dist/providers/shared/adapter.types.d.ts.map +1 -0
- package/dist/providers/shared/adapter.types.js +1 -0
- package/dist/providers/shared/adapter.utils.d.ts +12 -0
- package/dist/providers/shared/adapter.utils.d.ts.map +1 -0
- package/dist/providers/shared/adapter.utils.js +57 -0
- package/dist/providers/shared/agent-codec.types.d.ts +13 -0
- package/dist/providers/shared/agent-codec.types.d.ts.map +1 -0
- package/dist/providers/shared/agent-codec.types.js +1 -0
- package/dist/providers/shared/index.d.ts +6 -0
- package/dist/providers/shared/index.d.ts.map +1 -0
- package/dist/providers/shared/index.js +2 -0
- package/dist/providers/shared/markdown-agent-codec.d.ts +5 -0
- package/dist/providers/shared/markdown-agent-codec.d.ts.map +1 -0
- package/dist/providers/shared/markdown-agent-codec.js +12 -0
- package/dist/release/public-package-contract.d.ts +14 -0
- package/dist/release/public-package-contract.d.ts.map +1 -0
- package/dist/release/public-package-contract.js +97 -0
- package/dist/rules/canonical/index.d.ts +6 -0
- package/dist/rules/canonical/index.d.ts.map +1 -0
- package/dist/rules/canonical/index.js +4 -0
- package/dist/rules/canonical/parse.d.ts +9 -0
- package/dist/rules/canonical/parse.d.ts.map +1 -0
- package/dist/rules/canonical/parse.js +103 -0
- package/dist/rules/canonical/provider-filenames.d.ts +3 -0
- package/dist/rules/canonical/provider-filenames.d.ts.map +1 -0
- package/dist/rules/canonical/provider-filenames.js +13 -0
- package/dist/rules/canonical/render.d.ts +5 -0
- package/dist/rules/canonical/render.d.ts.map +1 -0
- package/dist/rules/canonical/render.js +32 -0
- package/dist/rules/canonical/types.d.ts +16 -0
- package/dist/rules/canonical/types.d.ts.map +1 -0
- package/dist/rules/canonical/types.js +6 -0
- package/dist/shared/index.d.ts +3 -0
- package/dist/shared/index.d.ts.map +1 -0
- package/dist/shared/index.js +1 -0
- package/dist/shared/types.d.ts +10 -0
- package/dist/shared/types.d.ts.map +1 -0
- package/dist/shared/types.js +14 -0
- package/dist/ui/ansi.d.ts +2 -0
- package/dist/ui/ansi.d.ts.map +1 -0
- package/dist/ui/ansi.js +19 -0
- package/dist/ui/index.d.ts +7 -0
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/ui/index.js +3 -0
- package/dist/ui/logger.d.ts +15 -0
- package/dist/ui/logger.d.ts.map +1 -0
- package/dist/ui/logger.js +52 -0
- package/dist/ui/output.d.ts +16 -0
- package/dist/ui/output.d.ts.map +1 -0
- package/dist/ui/output.js +135 -0
- package/dist/ui/spinner.d.ts +16 -0
- package/dist/ui/spinner.d.ts.map +1 -0
- package/dist/ui/spinner.js +46 -0
- package/dist/validation/index.d.ts +3 -0
- package/dist/validation/index.d.ts.map +1 -0
- package/dist/validation/index.js +1 -0
- package/dist/validation/skills.d.ts +10 -0
- package/dist/validation/skills.d.ts.map +1 -0
- package/dist/validation/skills.js +166 -0
- package/package.json +62 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Writing Skills
|
|
3
|
+
description: 'Contributor guide to authoring OAT skills, including runtime contracts, governance, and where to start.'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Writing Skills
|
|
7
|
+
|
|
8
|
+
Use this page when you are creating or updating OAT skills in `.agents/skills`.
|
|
9
|
+
|
|
10
|
+
Skill behavior is defined by frontmatter plus the process contract in each `SKILL.md`. The goal is to make lifecycle behavior explicit, reviewable, and reusable across sessions.
|
|
11
|
+
|
|
12
|
+
## Where Skills Live
|
|
13
|
+
|
|
14
|
+
- Canonical skills live in `.agents/skills`
|
|
15
|
+
- `AGENTS.md` is the session-facing registry and should stay aligned with skill frontmatter
|
|
16
|
+
- OAT project and review artifacts should reference skill names consistently
|
|
17
|
+
|
|
18
|
+
## Authoring Priorities
|
|
19
|
+
|
|
20
|
+
- Make the mode and purpose explicit.
|
|
21
|
+
- Keep prerequisites and expected artifacts concrete.
|
|
22
|
+
- Spell out blocked vs allowed activities for state-advancing skills.
|
|
23
|
+
- Define user-facing progress indicators for longer workflows.
|
|
24
|
+
- Keep output obligations explicit so downstream skills and users know what changed.
|
|
25
|
+
|
|
26
|
+
## Contract components
|
|
27
|
+
|
|
28
|
+
- Mode assertion (purpose, blocked/allowed activities)
|
|
29
|
+
- Preconditions and required artifacts
|
|
30
|
+
- User-facing progress indicator expectations
|
|
31
|
+
- Output obligations
|
|
32
|
+
- Escalation/guardrail behavior
|
|
33
|
+
|
|
34
|
+
## Frontmatter fields in active use
|
|
35
|
+
|
|
36
|
+
- `name`
|
|
37
|
+
- `description`
|
|
38
|
+
- `version`
|
|
39
|
+
- `disable-model-invocation`
|
|
40
|
+
- `user-invocable`
|
|
41
|
+
- `allowed-tools`
|
|
42
|
+
|
|
43
|
+
## Practical Authoring Flow
|
|
44
|
+
|
|
45
|
+
1. Decide whether you are adding a general reusable skill or an OAT-specific lifecycle skill.
|
|
46
|
+
2. Add or update the skill under `.agents/skills/<name>/SKILL.md`.
|
|
47
|
+
3. Keep the `AGENTS.md` skills registry synchronized with the new frontmatter.
|
|
48
|
+
4. Update related docs or lifecycle references if the skill changes user-visible behavior.
|
|
49
|
+
|
|
50
|
+
## Governance rules
|
|
51
|
+
|
|
52
|
+
- Prefer skill-first invocation language.
|
|
53
|
+
- Keep `AGENTS.md` skills table synchronized with `.agents/skills`.
|
|
54
|
+
- Require explicit user approval for destructive or state-advancing transitions.
|
|
55
|
+
|
|
56
|
+
## Recommended Starting Points
|
|
57
|
+
|
|
58
|
+
- Use `create-oat-skill` when the new skill belongs to an OAT lifecycle or maintenance flow.
|
|
59
|
+
- Use `create-agnostic-skill` when you want a reusable workflow skill that is not OAT-specific.
|
|
60
|
+
- Use existing lifecycle skills as examples for progress banners, prerequisites, and artifact updates.
|
|
61
|
+
|
|
62
|
+
## Reference artifacts
|
|
63
|
+
|
|
64
|
+
- `.agents/skills/*/SKILL.md`
|
|
65
|
+
- `AGENTS.md`
|
|
66
|
+
- `.agents/skills/oat-project-implement/SKILL.md`
|
|
67
|
+
- `.agents/skills/oat-project-complete/SKILL.md`
|
|
68
|
+
- `.agents/skills/oat-project-review-receive/SKILL.md`
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: CLI Reference
|
|
3
|
+
description: 'Scannable reference for the current OAT CLI surface, with links to the deeper guide pages for each command family.'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# CLI Reference
|
|
7
|
+
|
|
8
|
+
Use this page when you need a quick map of the OAT CLI rather than the full command-by-command docs. It is intentionally shallow: each section points to the guide page that owns the detailed behavior.
|
|
9
|
+
|
|
10
|
+
The CLI is also a standalone value path. You can use `oat init`, `oat sync`, `oat tools`, docs commands, and repo-analysis commands without adopting the full project workflow.
|
|
11
|
+
|
|
12
|
+
## Contents
|
|
13
|
+
|
|
14
|
+
- [Getting Started](getting-started.md) - Bootstrap a repo with `oat init`, guided setup, and initial provider adoption.
|
|
15
|
+
- [Tool Packs](tool-packs.md) - Install, update, inspect, and remove bundled OAT skills and agents.
|
|
16
|
+
- [Documentation Commands](documentation/commands.md) - Docs app scaffolding, migration, index generation, and nav sync.
|
|
17
|
+
- [Provider Sync](provider-sync/index.md) - Sync behavior, provider capabilities, config, and drift management.
|
|
18
|
+
- [Workflow & Projects](workflow/index.md) - Project lifecycle, artifacts, reviews, PR flow, and state-machine docs.
|
|
19
|
+
- [Repository Analysis](workflow/repo-analysis.md) - Detailed `oat repo pr-comments ...` behavior.
|
|
20
|
+
|
|
21
|
+
## Command Groups
|
|
22
|
+
|
|
23
|
+
| Command group | What it covers | Go deeper |
|
|
24
|
+
| ------------------------------------------------------ | ----------------------------------------------------------------------------------------- | --------------------------------------------------- |
|
|
25
|
+
| `oat init` | Bootstrap canonical OAT directories, sync config, optional hooks, and guided setup. | [Getting Started](getting-started.md) |
|
|
26
|
+
| `oat tools ...` | Install, inspect, update, and remove bundled OAT tool packs and assets. | [Tool Packs](tool-packs.md) |
|
|
27
|
+
| `oat backlog ...` | Generate backlog IDs and rebuild the managed file-backed backlog index. | See sections below |
|
|
28
|
+
| `oat config ...` | Inspect resolved config values, update supported keys, and discover config ownership. | See sections below |
|
|
29
|
+
| `oat docs ...` | Docs app bootstrap, migration, index generation, nav sync, and docs workflow entrypoints. | [Documentation Commands](documentation/commands.md) |
|
|
30
|
+
| `oat status` / `oat sync` / `oat providers ...` | Provider sync, drift inspection, provider configuration, and adoption behavior. | [Provider Sync](provider-sync/index.md) |
|
|
31
|
+
| `oat project ...` / `oat cleanup ...` | Project scaffolding, execution mode, and project/artifact cleanup commands. | [Workflow & Projects](workflow/index.md) |
|
|
32
|
+
| `oat repo ...` | Repository-level analysis workflows, currently centered on PR comments. | [Repository Analysis](workflow/repo-analysis.md) |
|
|
33
|
+
| `oat state ...` / `oat index ...` / `oat internal ...` | Repo dashboard refresh, repo indexing, and internal validation helpers. | See sections below |
|
|
34
|
+
|
|
35
|
+
## Bootstrap and Setup
|
|
36
|
+
|
|
37
|
+
### `oat init`
|
|
38
|
+
|
|
39
|
+
Use `oat init` to establish the canonical OAT directory layout, sync config, provider manifest state, and optional setup hooks.
|
|
40
|
+
|
|
41
|
+
Key behavior:
|
|
42
|
+
|
|
43
|
+
- initializes project- or user-scope OAT directories idempotently
|
|
44
|
+
- can detect and adopt provider strays during setup
|
|
45
|
+
- supports guided setup for tool packs, local paths, and provider sync
|
|
46
|
+
- prepares the repo for later `oat status`, `oat sync`, `oat doctor`, and workflow usage
|
|
47
|
+
|
|
48
|
+
See [Getting Started](getting-started.md) for the full setup flow.
|
|
49
|
+
|
|
50
|
+
## Tool Management and Local State
|
|
51
|
+
|
|
52
|
+
### `oat tools ...`
|
|
53
|
+
|
|
54
|
+
Use the `oat tools` group to manage bundled OAT assets:
|
|
55
|
+
|
|
56
|
+
- `oat tools list` - list installed tools, versions, pack membership, and update state
|
|
57
|
+
- `oat tools info <name>` - inspect one installed skill or agent
|
|
58
|
+
- `oat tools outdated` - show only assets with available updates
|
|
59
|
+
- `oat tools install` - install bundled packs such as `core`, `docs`, `ideas`, `workflows`, `utility`, `project-management`, or `research`
|
|
60
|
+
- `oat tools update` - update a named tool, a whole pack, or everything
|
|
61
|
+
- `oat tools remove` - remove installed assets
|
|
62
|
+
|
|
63
|
+
Mutation commands auto-run provider sync unless you pass `--no-sync`.
|
|
64
|
+
|
|
65
|
+
See [Tool Packs](tool-packs.md) for the pack lifecycle and compatibility notes.
|
|
66
|
+
|
|
67
|
+
### `oat backlog ...`
|
|
68
|
+
|
|
69
|
+
Use the `oat backlog` group when you want direct CLI support for the file-backed backlog under `.oat/repo/reference/backlog/`.
|
|
70
|
+
|
|
71
|
+
- `oat backlog init` - scaffold `.oat/repo/reference/backlog/` with starter files and directories for a fresh repo
|
|
72
|
+
- `oat backlog generate-id <filename>` - generate a unique backlog ID from a filename seed
|
|
73
|
+
- `oat backlog generate-id <filename> --created-at <timestamp>` - generate a reproducible ID for a known creation timestamp
|
|
74
|
+
- `oat backlog regenerate-index` - rebuild the managed backlog index table from item frontmatter
|
|
75
|
+
|
|
76
|
+
Run `oat backlog init` first when the local backlog scaffold does not exist yet in a fresh repo. This command group is primarily used by the `oat-pjm-*` project-management skills, but it is also available directly when you need to inspect or repair backlog metadata by hand.
|
|
77
|
+
|
|
78
|
+
### `oat local ...`
|
|
79
|
+
|
|
80
|
+
`oat local` manages local-only, gitignored paths that still need to follow you between the main repo and worktrees.
|
|
81
|
+
|
|
82
|
+
Common examples:
|
|
83
|
+
|
|
84
|
+
- `.oat/ideas/`
|
|
85
|
+
- `.oat/**/reviews/archived/`
|
|
86
|
+
|
|
87
|
+
Available commands:
|
|
88
|
+
|
|
89
|
+
- `oat local status` - show whether configured local paths exist and are gitignored
|
|
90
|
+
- `oat local apply` - write the managed `.gitignore` section for configured paths
|
|
91
|
+
- `oat local sync` - copy local paths between the main repo and a worktree
|
|
92
|
+
- `oat local add` / `oat local remove` - maintain the `localPaths` config entries
|
|
93
|
+
|
|
94
|
+
Use this when you want archived review history or idea scratchpads to persist locally without being committed.
|
|
95
|
+
|
|
96
|
+
### `oat config ...`
|
|
97
|
+
|
|
98
|
+
Use `oat config` for repo runtime config inspection and supported key mutation.
|
|
99
|
+
|
|
100
|
+
- `oat config get <key>` - read one resolved config value
|
|
101
|
+
- `oat config set <key> <value>` - update a supported shared or repo-local key
|
|
102
|
+
- `oat config list` - show the resolved command-surface values with source information
|
|
103
|
+
- `oat config describe` - list supported config surfaces and keys across shared repo, repo-local, user, and sync/provider config
|
|
104
|
+
- `oat config describe <key>` - show file location, scope, default, mutability, and owning command for one key
|
|
105
|
+
|
|
106
|
+
Archive lifecycle settings live here as shared repo config:
|
|
107
|
+
|
|
108
|
+
- `archive.s3Uri`
|
|
109
|
+
- `archive.s3SyncOnComplete`
|
|
110
|
+
- `archive.summaryExportPath`
|
|
111
|
+
|
|
112
|
+
When archive settings are configured, completion uploads dated archive snapshots to S3 and exports dated summary snapshots into the configured summary reference directory.
|
|
113
|
+
|
|
114
|
+
Use the reference pages for file ownership and schema details:
|
|
115
|
+
|
|
116
|
+
- [File Locations](../reference/file-locations.md)
|
|
117
|
+
- [`.oat` Directory Structure](../reference/oat-directory-structure.md)
|
|
118
|
+
|
|
119
|
+
## Instruction Integrity
|
|
120
|
+
|
|
121
|
+
### `oat instructions`
|
|
122
|
+
|
|
123
|
+
These commands validate and repair pointer integrity between `AGENTS.md` and sibling `CLAUDE.md` files.
|
|
124
|
+
|
|
125
|
+
- `oat instructions validate` - read-only integrity check
|
|
126
|
+
- `oat instructions sync` - preview or apply pointer repairs
|
|
127
|
+
|
|
128
|
+
Use this command group when instruction files drift after manual edits or generated updates.
|
|
129
|
+
|
|
130
|
+
## Docs Commands
|
|
131
|
+
|
|
132
|
+
### `oat docs ...`
|
|
133
|
+
|
|
134
|
+
The docs command group covers:
|
|
135
|
+
|
|
136
|
+
- `oat docs init` - scaffold a docs app for Fumadocs or MkDocs
|
|
137
|
+
- `oat docs migrate` - convert MkDocs markdown patterns to Fumadocs-friendly markdown
|
|
138
|
+
- `oat docs generate-index` - regenerate the generated app-root docs index
|
|
139
|
+
- `oat docs nav sync` - rebuild MkDocs navigation from `index.md` `## Contents`
|
|
140
|
+
- `oat docs analyze` / `oat docs apply` - CLI entrypoints for the docs workflow skills
|
|
141
|
+
|
|
142
|
+
See [Documentation Commands](documentation/commands.md) for framework-specific behavior and flags.
|
|
143
|
+
|
|
144
|
+
## Provider Sync Commands
|
|
145
|
+
|
|
146
|
+
### `oat status`, `oat sync`, and `oat providers ...`
|
|
147
|
+
|
|
148
|
+
These commands manage the relationship between canonical OAT assets and provider-specific views.
|
|
149
|
+
|
|
150
|
+
- `oat status` - inspect sync and drift state
|
|
151
|
+
- `oat sync` - write provider views from canonical assets
|
|
152
|
+
- `oat providers list` / `inspect` / `set` - inspect providers and control enablement
|
|
153
|
+
|
|
154
|
+
Use [Provider Sync](provider-sync/index.md) for the full model, including scope, manifest, config, and safety behavior.
|
|
155
|
+
|
|
156
|
+
## Workflow and Project Commands
|
|
157
|
+
|
|
158
|
+
### `oat project ...`
|
|
159
|
+
|
|
160
|
+
Project commands are the CLI entrypoint into the OAT lifecycle.
|
|
161
|
+
|
|
162
|
+
- `oat project new <name>` - create a new project in spec-driven, quick, or import mode
|
|
163
|
+
- `oat project open <name>` - activate an existing project
|
|
164
|
+
- `oat project set-mode <mode>` - switch implementation between `single-thread` and `subagent-driven`
|
|
165
|
+
- `oat project archive sync` - sync the latest dated remote snapshot for each archived project from the configured S3 archive into `.oat/projects/archived/`
|
|
166
|
+
- `oat project archive sync <project-name>` - sync the latest dated remote snapshot for one archived project into `.oat/projects/archived/<project-name>/`
|
|
167
|
+
|
|
168
|
+
### `oat cleanup ...`
|
|
169
|
+
|
|
170
|
+
Cleanup commands handle lifecycle drift and stale artifacts:
|
|
171
|
+
|
|
172
|
+
- `oat cleanup project` - reconcile project pointers and lifecycle state
|
|
173
|
+
- `oat cleanup artifacts` - prune duplicate or stale review/reference artifacts
|
|
174
|
+
|
|
175
|
+
Use [Workflow & Projects](workflow/index.md) for the full lifecycle map and related docs on artifacts, reviews, PR flow, and state transitions.
|
|
176
|
+
|
|
177
|
+
## Repository Analysis
|
|
178
|
+
|
|
179
|
+
### `oat repo ...`
|
|
180
|
+
|
|
181
|
+
The `oat repo` command group is for repository-wide analysis work rather than single-project execution.
|
|
182
|
+
|
|
183
|
+
- `oat repo pr-comments collect` - collect merged PR review comments into monthly artifacts
|
|
184
|
+
- `oat repo pr-comments triage-collection` - interactively keep or discard collected comments
|
|
185
|
+
|
|
186
|
+
See [Repository Analysis](workflow/repo-analysis.md) for the detailed collection, filtering, and triage workflow.
|
|
187
|
+
|
|
188
|
+
## Repo State and Internal Commands
|
|
189
|
+
|
|
190
|
+
### Repo state helpers
|
|
191
|
+
|
|
192
|
+
- `oat state refresh` - rebuild the `.oat/state.md` dashboard for the repo
|
|
193
|
+
- `oat index init` - generate a lightweight `project-index.md` for orientation
|
|
194
|
+
|
|
195
|
+
### Internal helpers
|
|
196
|
+
|
|
197
|
+
- `oat internal validate-oat-skills` - validate `oat-*` skill contracts and metadata
|
|
198
|
+
- `oat doctor` - run environment and setup diagnostics, including installed-vs-bundled skill version checks
|
|
199
|
+
|
|
200
|
+
`oat doctor` is the quickest way to confirm that your runtime, directory structure, and installed OAT assets are healthy before deeper debugging. The `/oat-doctor` skill (installed via the core pack) provides richer diagnostics with check and summary modes, including config explanations sourced from bundled documentation.
|
|
201
|
+
|
|
202
|
+
## Global Options
|
|
203
|
+
|
|
204
|
+
Most command groups support these global flags:
|
|
205
|
+
|
|
206
|
+
| Option | Description |
|
|
207
|
+
| ----------------- | ------------------------------------------------------------- |
|
|
208
|
+
| `--json` | Emit a single JSON document instead of human-readable output. |
|
|
209
|
+
| `--verbose` | Enable debug-style logging. |
|
|
210
|
+
| `--scope <scope>` | Limit work to `project`, `user`, or `all`. |
|
|
211
|
+
| `--cwd <path>` | Override the working directory for the command. |
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Core Concepts
|
|
3
|
+
description: Mental model for canonical assets, provider views, scopes, skills, and the optional workflow layer.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Core Concepts
|
|
7
|
+
|
|
8
|
+
OAT combines a provider-sync layer, reusable skills and CLI tooling, and an optional workflow system. This page gives the high-level mental model so the detailed docs are easier to navigate.
|
|
9
|
+
|
|
10
|
+
## Capability Stack
|
|
11
|
+
|
|
12
|
+
```mermaid
|
|
13
|
+
flowchart TD
|
|
14
|
+
BASE["Provider sync + CLI\ncanonical assets, status, sync, docs commands"] --> MIDDLE["Reusable skills + tooling\nideas, docs workflows, repo helpers"]
|
|
15
|
+
MIDDLE --> TOP["Optional workflow layer\ntracked projects, reviews, PR flow, HiLL"]
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Canonical Assets and Provider Views
|
|
19
|
+
|
|
20
|
+
OAT keeps canonical assets in repo-controlled locations and projects provider-specific views from that source of truth. The canonical form is what you edit and review directly; provider views are synchronized outputs that let Claude Code, Cursor, Copilot, Gemini, and Codex consume the same intent in their native layouts.
|
|
21
|
+
|
|
22
|
+
```mermaid
|
|
23
|
+
flowchart LR
|
|
24
|
+
SKILLS[".agents/skills/"] --> OAT["oat sync"]
|
|
25
|
+
AGENTS[".agents/agents/"] --> OAT
|
|
26
|
+
RULES[".agents/rules/"] --> OAT
|
|
27
|
+
OAT --> CLAUDE[".claude/"]
|
|
28
|
+
OAT --> CURSOR[".cursor/"]
|
|
29
|
+
OAT --> COPILOT[".github/"]
|
|
30
|
+
OAT --> GEMINI[".gemini/"]
|
|
31
|
+
OAT --> CODEX[".codex/"]
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Use these docs next:
|
|
35
|
+
|
|
36
|
+
- [Provider Sync](provider-sync/index.md)
|
|
37
|
+
- [Reference](../reference/index.md)
|
|
38
|
+
|
|
39
|
+
## Sync, Drift, and Adoption
|
|
40
|
+
|
|
41
|
+
`oat sync` applies canonical content to provider views, while `oat status` reports whether a provider is in sync, drifted, or missing content. Drift is expected when provider-side files diverge from canonical content; OAT now also covers canonical rule sync and stray adoption so you can bring unmanaged files back under the canonical model deliberately.
|
|
42
|
+
|
|
43
|
+
Use these docs next:
|
|
44
|
+
|
|
45
|
+
- [Provider Sync Commands](provider-sync/commands.md)
|
|
46
|
+
- [Manifest and Drift](provider-sync/manifest-and-drift.md)
|
|
47
|
+
|
|
48
|
+
## Scopes
|
|
49
|
+
|
|
50
|
+
Most OAT operations run in one of three scopes: `project`, `user`, or `all`. Project scope targets the current repository, user scope targets user-level installations, and `all` evaluates both. The same scope model appears across sync, status, and provider configuration commands, so it is worth learning early.
|
|
51
|
+
|
|
52
|
+
Use these docs next:
|
|
53
|
+
|
|
54
|
+
- [Scope and Surface](provider-sync/scope-and-surface.md)
|
|
55
|
+
- [CLI Reference](cli-reference.md)
|
|
56
|
+
|
|
57
|
+
## Skills and CLI Commands
|
|
58
|
+
|
|
59
|
+
Skills are structured workflow instructions stored in `.agents/skills`, while CLI commands provide direct operational entry points like `oat init`, `oat sync`, or `oat docs init`. Some capabilities are primarily CLI-driven, some are primarily skill-driven, and some combine both. As a rule: use the CLI for direct system actions and use skills when you want guided lifecycle execution.
|
|
60
|
+
|
|
61
|
+
Use these docs next:
|
|
62
|
+
|
|
63
|
+
- [Skills](skills/index.md)
|
|
64
|
+
- [Contributing Skills](../contributing/skills.md)
|
|
65
|
+
|
|
66
|
+
## The Three Usage Modes
|
|
67
|
+
|
|
68
|
+
OAT can be adopted in three layers:
|
|
69
|
+
|
|
70
|
+
1. Provider sync and CLI interop only
|
|
71
|
+
2. Provider-agnostic tooling and reusable skills
|
|
72
|
+
3. Optional workflow/project lifecycle
|
|
73
|
+
|
|
74
|
+
These layers stack. You can stay at the interop layer, use only the tooling layer, or adopt the full lifecycle when you need tracked discovery, planning, implementation, review, and PR flow.
|
|
75
|
+
|
|
76
|
+
Use these docs next:
|
|
77
|
+
|
|
78
|
+
- [Quickstart](../quickstart.md)
|
|
79
|
+
- [Workflow & Projects](workflow/index.md)
|
|
80
|
+
|
|
81
|
+
## Human-in-the-Loop Lifecycle
|
|
82
|
+
|
|
83
|
+
The workflow system supports explicit checkpoints so a project can pause at selected moments for approval or direction. At the workflow level, HiLL gates control lifecycle routing across discovery, spec, design, plan, and implementation. During implementation, plan-phase checkpoints control where execution pauses between plan phases.
|
|
84
|
+
|
|
85
|
+
Use these docs next:
|
|
86
|
+
|
|
87
|
+
- [Workflow & Projects](workflow/index.md)
|
|
88
|
+
- [Hill Checkpoints](workflow/hill-checkpoints.md)
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Configuration
|
|
3
|
+
description: 'How OAT configuration is split across shared repo, repo-local, user, and provider-sync surfaces.'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Configuration
|
|
7
|
+
|
|
8
|
+
Use this guide when you need to answer two questions quickly:
|
|
9
|
+
|
|
10
|
+
1. Which config file owns a setting?
|
|
11
|
+
2. Which CLI command should I use to inspect or change it?
|
|
12
|
+
|
|
13
|
+
For the deep file-by-file reference, see:
|
|
14
|
+
|
|
15
|
+
- [File Locations](../reference/file-locations.md)
|
|
16
|
+
- [`.oat` Directory Structure](../reference/oat-directory-structure.md)
|
|
17
|
+
- [Sync Config (`.oat/sync/config.json`)](provider-sync/config.md)
|
|
18
|
+
|
|
19
|
+
## The four config surfaces
|
|
20
|
+
|
|
21
|
+
| Surface | File | Typical contents | Primary CLI surface |
|
|
22
|
+
| -------------------- | ------------------------ | ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------ |
|
|
23
|
+
| Shared repo config | `.oat/config.json` | Repo-wide non-sync settings such as `projects.root`, `git.defaultBranch`, `documentation.*`, and `archive.*` | `oat config get/set/list/describe` |
|
|
24
|
+
| Repo-local config | `.oat/config.local.json` | Per-developer state for this checkout, such as `activeProject`, `lastPausedProject`, and repo-local `activeIdea` | `oat config get/set/list/describe` |
|
|
25
|
+
| User config | `~/.oat/config.json` | User-level state such as global `activeIdea` fallback | `oat config describe` |
|
|
26
|
+
| Provider sync config | `.oat/sync/config.json` | Provider enablement and sync strategy settings | `oat providers set`, `oat config describe` |
|
|
27
|
+
|
|
28
|
+
The main split is:
|
|
29
|
+
|
|
30
|
+
- `.oat/config.json` for shared repo behavior
|
|
31
|
+
- `.oat/config.local.json` for local developer state
|
|
32
|
+
- `~/.oat/config.json` for user-scope fallback state
|
|
33
|
+
- `.oat/sync/config.json` for provider sync only
|
|
34
|
+
|
|
35
|
+
## The fastest way to inspect config
|
|
36
|
+
|
|
37
|
+
Use `oat config` as the primary discovery surface:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
oat config list
|
|
41
|
+
oat config get projects.root
|
|
42
|
+
oat config describe
|
|
43
|
+
oat config describe archive.s3Uri
|
|
44
|
+
oat config describe sync.providers.github.enabled
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
What each command is for:
|
|
48
|
+
|
|
49
|
+
- `oat config list` shows the currently resolved command-surface values for shared and repo-local keys.
|
|
50
|
+
- `oat config get <key>` reads one supported key value.
|
|
51
|
+
- `oat config set <key> <value>` updates supported shared or repo-local keys.
|
|
52
|
+
- `oat config describe` shows the supported config catalog across shared repo, repo-local, user, and sync/provider surfaces.
|
|
53
|
+
- `oat config describe <key>` shows file, scope, default, mutability, owning command, and description for one key.
|
|
54
|
+
|
|
55
|
+
## Shared repo config you will touch most often
|
|
56
|
+
|
|
57
|
+
Common keys in `.oat/config.json`:
|
|
58
|
+
|
|
59
|
+
- `projects.root` — where tracked projects live
|
|
60
|
+
- `worktrees.root` — where OAT-managed worktrees live
|
|
61
|
+
- `git.defaultBranch` — base branch fallback for PR workflows
|
|
62
|
+
- `documentation.root`, `documentation.tooling`, `documentation.config` — docs-surface ownership
|
|
63
|
+
- `documentation.requireForProjectCompletion` — whether docs sync is a completion gate
|
|
64
|
+
- `archive.s3Uri` — base S3 archive prefix
|
|
65
|
+
- `archive.s3SyncOnComplete` — upload archived projects to S3 during completion
|
|
66
|
+
- `archive.summaryExportPath` — export `summary.md` into a durable tracked directory during completion
|
|
67
|
+
|
|
68
|
+
Archive example:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
oat config set archive.s3Uri s3://example-bucket/oat-archive
|
|
72
|
+
oat config set archive.s3SyncOnComplete true
|
|
73
|
+
oat config set archive.summaryExportPath .oat/repo/reference/project-summaries
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
With those values configured:
|
|
77
|
+
|
|
78
|
+
- `oat-project-complete` still archives locally into `.oat/projects/archived/<project>/`
|
|
79
|
+
- completion also attempts an S3 upload when AWS CLI is available and configured, storing dated snapshots such as `<archive.s3Uri>/<repo-slug>/projects/20260401-my-project/`
|
|
80
|
+
- completion also copies `summary.md` into `<archive.summaryExportPath>/20260401-my-project.md`
|
|
81
|
+
- `oat project archive sync` can later pull archive data back down from S3 and materialize the latest snapshot into the local bare archive path `.oat/projects/archived/<project>/`
|
|
82
|
+
|
|
83
|
+
## Repo-local and user state
|
|
84
|
+
|
|
85
|
+
Use `.oat/config.local.json` for checkout-specific workflow state:
|
|
86
|
+
|
|
87
|
+
- `activeProject`
|
|
88
|
+
- `lastPausedProject`
|
|
89
|
+
- repo-scoped `activeIdea`
|
|
90
|
+
|
|
91
|
+
Use `~/.oat/config.json` for user fallback state when no repo-local value is set:
|
|
92
|
+
|
|
93
|
+
- `activeIdea`
|
|
94
|
+
|
|
95
|
+
In practice, you usually inspect these via:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
oat config get activeProject
|
|
99
|
+
oat config get lastPausedProject
|
|
100
|
+
oat config describe activeIdea
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
## Provider sync config is different
|
|
104
|
+
|
|
105
|
+
Provider sync settings are intentionally documented in the same discovery flow, but they are not owned by `oat config set`.
|
|
106
|
+
|
|
107
|
+
Examples:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
oat config describe sync.defaultStrategy
|
|
111
|
+
oat config describe sync.providers.<name>.enabled
|
|
112
|
+
oat providers set --scope project --enabled claude,codex
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
Use:
|
|
116
|
+
|
|
117
|
+
- `oat config describe ...` to understand sync keys
|
|
118
|
+
- `oat providers set ...` to mutate sync/provider settings
|
|
119
|
+
|
|
120
|
+
For the provider-sync schema details, use [Sync Config (`.oat/sync/config.json`)](provider-sync/config.md).
|
|
121
|
+
|
|
122
|
+
## Recommended workflow
|
|
123
|
+
|
|
124
|
+
When you are unsure where a setting lives:
|
|
125
|
+
|
|
126
|
+
1. Run `oat config describe`.
|
|
127
|
+
2. Run `oat config describe <key>` for the key you care about.
|
|
128
|
+
3. Use the owning command shown there.
|
|
129
|
+
|
|
130
|
+
That keeps config discovery centralized without forcing you to remember which settings belong to workflow state versus provider sync.
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Docs App Commands
|
|
3
|
+
description: 'Docs scaffolding CLI surface for Fumadocs/MkDocs, migration, index generation, and nav sync.'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Docs App Commands
|
|
7
|
+
|
|
8
|
+
OAT includes a dedicated docs command family for bootstrapping and maintaining
|
|
9
|
+
documentation apps. Two frameworks are supported: **Fumadocs** (Next.js-based)
|
|
10
|
+
and **MkDocs Material**.
|
|
11
|
+
|
|
12
|
+
## Command surface
|
|
13
|
+
|
|
14
|
+
| Command | Purpose |
|
|
15
|
+
| ------------------------- | ------------------------------------------------------------------------------------ |
|
|
16
|
+
| `oat docs init` | Scaffold a new docs app (Fumadocs or MkDocs). |
|
|
17
|
+
| `oat docs migrate` | Convert MkDocs admonitions to GFM callouts and inject frontmatter. |
|
|
18
|
+
| `oat docs generate-index` | Generate a docs index from the markdown file tree. |
|
|
19
|
+
| `oat docs nav sync` | Regenerate `mkdocs.yml` navigation from directory `index.md` `## Contents` sections. |
|
|
20
|
+
| `oat docs analyze` | CLI entrypoint that points users to the `oat-docs-analyze` skill. |
|
|
21
|
+
| `oat docs apply` | CLI entrypoint that points users to the `oat-docs-apply` skill. |
|
|
22
|
+
|
|
23
|
+
## `oat docs init`
|
|
24
|
+
|
|
25
|
+
Use `oat docs init` to scaffold a docs app that follows the OAT docs contract.
|
|
26
|
+
|
|
27
|
+
Key behavior:
|
|
28
|
+
|
|
29
|
+
- prompts for framework choice (Fumadocs or MkDocs) in interactive mode
|
|
30
|
+
- detects monorepo vs single-package repo shape
|
|
31
|
+
- defaults to `apps/<app-name>` for monorepos
|
|
32
|
+
- defaults to `<app-name>/` at repo root for single-package repos
|
|
33
|
+
- sets `documentation.tooling`, `documentation.root`, and `documentation.index` in `.oat/config.json`
|
|
34
|
+
|
|
35
|
+
Fumadocs scaffold:
|
|
36
|
+
|
|
37
|
+
- thin Next.js app importing from `@open-agent-toolkit/docs-config`, `@open-agent-toolkit/docs-theme`, `@open-agent-toolkit/docs-transforms`
|
|
38
|
+
- static export (`output: 'export'`) with FlexSearch, Mermaid diagrams, dark/light mode
|
|
39
|
+
- `predev`/`prebuild` hooks run `oat docs generate-index` automatically
|
|
40
|
+
- starter docs: `docs/index.md`, `docs/getting-started.md`, `docs/contributing.md`
|
|
41
|
+
|
|
42
|
+
MkDocs scaffold:
|
|
43
|
+
|
|
44
|
+
- MkDocs Material with OAT contributor contract (unchanged from previous behavior)
|
|
45
|
+
- includes `docs/index.md`, `docs/contributing.md`, and the local tooling needed to run the app
|
|
46
|
+
|
|
47
|
+
Supported flags:
|
|
48
|
+
|
|
49
|
+
- `--app-name <name>`
|
|
50
|
+
- `--target-dir <path>`
|
|
51
|
+
- `--framework <fumadocs|mkdocs>` (default: `fumadocs` in non-interactive mode)
|
|
52
|
+
- `--description <text>` (site description, optional)
|
|
53
|
+
- `--format <oxfmt|none>`
|
|
54
|
+
- `--yes`
|
|
55
|
+
|
|
56
|
+
Examples:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
# Interactive (prompts for framework choice)
|
|
60
|
+
oat docs init --app-name my-docs
|
|
61
|
+
|
|
62
|
+
# Fumadocs (non-interactive)
|
|
63
|
+
oat docs init --app-name my-docs --framework fumadocs --yes
|
|
64
|
+
|
|
65
|
+
# MkDocs (non-interactive)
|
|
66
|
+
oat docs init --app-name my-docs --framework mkdocs --yes
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## `oat docs migrate`
|
|
70
|
+
|
|
71
|
+
Use `oat docs migrate` to convert MkDocs-flavored markdown to GFM-compatible
|
|
72
|
+
format for Fumadocs.
|
|
73
|
+
|
|
74
|
+
Key behavior:
|
|
75
|
+
|
|
76
|
+
- converts MkDocs `!!!` / `???` admonition syntax to GFM `> [!TYPE]` blockquote callouts
|
|
77
|
+
- maps 14 MkDocs admonition types to 5 GFM types (NOTE, WARNING, TIP, IMPORTANT, CAUTION)
|
|
78
|
+
- injects `title` frontmatter from `mkdocs.yml` nav entries (falls back to first `# heading`, then filename)
|
|
79
|
+
- seeds empty `description: ""` frontmatter when missing
|
|
80
|
+
- dry-run by default; use `--apply` to write changes
|
|
81
|
+
|
|
82
|
+
Supported flags:
|
|
83
|
+
|
|
84
|
+
- `--docs-dir <path>` (default: `docs`)
|
|
85
|
+
- `--config <path>` (path to `mkdocs.yml` for nav title extraction)
|
|
86
|
+
- `--apply` (write changes to disk; default is dry-run)
|
|
87
|
+
|
|
88
|
+
Example:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
# Preview changes
|
|
92
|
+
oat docs migrate --docs-dir docs --config mkdocs.yml
|
|
93
|
+
|
|
94
|
+
# Apply changes
|
|
95
|
+
oat docs migrate --docs-dir docs --config mkdocs.yml --apply
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## `oat docs generate-index`
|
|
99
|
+
|
|
100
|
+
Use `oat docs generate-index` to produce a markdown index from the docs file
|
|
101
|
+
tree. The generated index lists all pages with titles and descriptions, organized
|
|
102
|
+
by directory structure.
|
|
103
|
+
|
|
104
|
+
Key behavior:
|
|
105
|
+
|
|
106
|
+
- recursively walks the docs directory
|
|
107
|
+
- extracts page titles from frontmatter (falls back to first `# heading`, then filename title-case)
|
|
108
|
+
- includes descriptions from frontmatter when present
|
|
109
|
+
- outputs to app root (`index.md`) by default, not inside the docs directory
|
|
110
|
+
- updates `documentation.index` in `.oat/config.json`
|
|
111
|
+
- sorting: `index.md` first, then directories before files, then lexical
|
|
112
|
+
|
|
113
|
+
Supported flags:
|
|
114
|
+
|
|
115
|
+
- `--docs-dir <path>` (default: `docs`)
|
|
116
|
+
- `--output <path>` (default: `index.md` at app root)
|
|
117
|
+
|
|
118
|
+
Example:
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
oat docs generate-index --docs-dir docs
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
The Fumadocs scaffold runs this automatically via `predev`/`prebuild` npm
|
|
125
|
+
script hooks.
|
|
126
|
+
|
|
127
|
+
## `oat docs nav sync`
|
|
128
|
+
|
|
129
|
+
Use nav sync after adding, removing, or renaming docs pages.
|
|
130
|
+
|
|
131
|
+
The command reads only the reserved `## Contents` section from each directory
|
|
132
|
+
`index.md` and regenerates the `nav:` block in `mkdocs.yml`.
|
|
133
|
+
|
|
134
|
+
Example:
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
oat docs nav sync --target-dir apps/oat-docs
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Related reference:
|
|
141
|
+
|
|
142
|
+
- [`../../reference/docs-index-contract.md`](../../reference/docs-index-contract.md)
|
|
143
|
+
|
|
144
|
+
## `oat docs analyze` and `oat docs apply`
|
|
145
|
+
|
|
146
|
+
These CLI commands intentionally reserve the docs workflow surface without
|
|
147
|
+
duplicating the skill logic in Commander handlers.
|
|
148
|
+
|
|
149
|
+
- `oat docs analyze` routes users to the `oat-docs-analyze` workflow
|
|
150
|
+
- `oat docs apply` routes users to the `oat-docs-apply` workflow
|
|
151
|
+
|
|
152
|
+
Use the CLI entrypoints when you want discoverable command help. Use the skills
|
|
153
|
+
when you want the actual docs analysis/apply execution flow.
|
|
154
|
+
|
|
155
|
+
Related docs:
|
|
156
|
+
|
|
157
|
+
- [`workflows.md`](workflows.md)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Documentation
|
|
3
|
+
description: 'Guide to OAT documentation app setup, docs commands, and docs analysis/apply workflows.'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Documentation
|
|
7
|
+
|
|
8
|
+
Use this section when you are setting up, maintaining, or restructuring a docs surface with OAT.
|
|
9
|
+
|
|
10
|
+
OAT supports both Fumadocs and MkDocs. In either case, the core contract is the same: each directory gets an `index.md`, and each index owns a `## Contents` section that supports local discovery and generated navigation.
|
|
11
|
+
|
|
12
|
+
## Contents
|
|
13
|
+
|
|
14
|
+
- [Quickstart](quickstart.md) - Bootstrap a docs app and adopt the docs workflow in a repo.
|
|
15
|
+
- [Commands](commands.md) - Docs CLI surface for init, migration, index generation, and nav sync.
|
|
16
|
+
- [Workflows](workflows.md) - How the docs CLI helpers pair with `oat-docs-analyze` and `oat-docs-apply`.
|
|
17
|
+
|
|
18
|
+
## Choose an Entry Point
|
|
19
|
+
|
|
20
|
+
- Start with [Quickstart](quickstart.md) when you are adding a docs app to a repo.
|
|
21
|
+
- Use [Commands](commands.md) when you already have a docs app and need the exact CLI surface.
|
|
22
|
+
- Use [Workflows](workflows.md) when you want a controlled analyze/apply loop for docs changes instead of manual edits.
|
|
23
|
+
|
|
24
|
+
## Related Reference
|
|
25
|
+
|
|
26
|
+
- [Docs Index Contract](../../reference/docs-index-contract.md) - Rules for `index.md` and `## Contents`.
|
|
27
|
+
- [CLI Reference](../cli-reference.md) - Shallow map of the full OAT CLI surface.
|