@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,187 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: oat-idea-ideate
|
|
3
|
+
version: 1.2.0
|
|
4
|
+
description: Use when continuing brainstorming for an existing idea or starting from a scratchpad entry. Guides conversational ideation and refinement.
|
|
5
|
+
argument-hint: '[--global]'
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
user-invocable: true
|
|
8
|
+
allowed-tools: Read, Write, Bash, Glob, AskUserQuestion
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Ideate
|
|
12
|
+
|
|
13
|
+
Resume brainstorming on an existing idea, or pick one from the scratchpad to start exploring.
|
|
14
|
+
|
|
15
|
+
## Mode Assertion
|
|
16
|
+
|
|
17
|
+
**OAT MODE: Ideation**
|
|
18
|
+
|
|
19
|
+
**Purpose:** Lightweight brainstorming through natural, exploratory conversation. Capture the essence of an idea without formal structure or implementation detail.
|
|
20
|
+
|
|
21
|
+
**BLOCKED Activities:**
|
|
22
|
+
|
|
23
|
+
- No code writing or implementation details
|
|
24
|
+
- No formal requirements or specifications
|
|
25
|
+
- No technical designs or architecture
|
|
26
|
+
- No task breakdowns or plans
|
|
27
|
+
- No forced structure — let the idea breathe
|
|
28
|
+
|
|
29
|
+
**ALLOWED Activities:**
|
|
30
|
+
|
|
31
|
+
- Free-form discussion and exploration
|
|
32
|
+
- Asking open-ended questions
|
|
33
|
+
- Capturing thoughts and observations
|
|
34
|
+
- Exploring "what if" scenarios
|
|
35
|
+
- Noting related ideas and references
|
|
36
|
+
- Identifying open questions organically
|
|
37
|
+
|
|
38
|
+
**Self-Correction Protocol:**
|
|
39
|
+
If you catch yourself:
|
|
40
|
+
|
|
41
|
+
- Writing implementation details → STOP (capture as an Open Question instead)
|
|
42
|
+
- Formalizing requirements → STOP (keep it conversational)
|
|
43
|
+
- Creating structured deliverables → STOP (save for project workflow)
|
|
44
|
+
|
|
45
|
+
**Recovery:**
|
|
46
|
+
|
|
47
|
+
1. Acknowledge the deviation
|
|
48
|
+
2. Return to exploratory questioning
|
|
49
|
+
3. Capture the insight as a note or open question
|
|
50
|
+
|
|
51
|
+
## Progress Indicators (User-Facing)
|
|
52
|
+
|
|
53
|
+
- Print a phase banner once at start using horizontal separators, e.g.:
|
|
54
|
+
|
|
55
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
56
|
+
OAT ▸ IDEATE [project]
|
|
57
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
58
|
+
|
|
59
|
+
Replace `[project]` with `[global]` when operating at user level.
|
|
60
|
+
|
|
61
|
+
- Before multi-step work, print step indicators, e.g.:
|
|
62
|
+
- `[1/3] Resolving active idea…`
|
|
63
|
+
- `[2/3] Loading discovery document…`
|
|
64
|
+
- `[3/3] Starting brainstorming session…`
|
|
65
|
+
|
|
66
|
+
## Process
|
|
67
|
+
|
|
68
|
+
### Step 0: Resolve Ideas Level
|
|
69
|
+
|
|
70
|
+
Determine whether to operate at project level or user (global) level.
|
|
71
|
+
|
|
72
|
+
**Resolution order:**
|
|
73
|
+
|
|
74
|
+
1. If `$ARGUMENTS` contains `--global` → use **user level**
|
|
75
|
+
2. If `.oat/config.local.json` has `activeIdea` pointing to a valid directory → use **project level**
|
|
76
|
+
3. If `~/.oat/config.json` has `activeIdea` pointing to a valid directory → use **user level**
|
|
77
|
+
4. If BOTH `.oat/ideas/` AND `~/.oat/ideas/` exist →
|
|
78
|
+
ask: "Ideas exist at both project and user level. Where should this idea go?"
|
|
79
|
+
options: "Project (.oat/ideas/)" / "Global (~/.oat/ideas/)"
|
|
80
|
+
5. If `.oat/ideas/` exists → use **project level**
|
|
81
|
+
6. If `~/.oat/ideas/` exists → use **user level**
|
|
82
|
+
7. Otherwise → ask: "Project-level or global (user-level) ideas?"
|
|
83
|
+
|
|
84
|
+
**Set variables:**
|
|
85
|
+
|
|
86
|
+
| Variable | Project Level | User Level |
|
|
87
|
+
| ---------------- | ---------------------- | ------------------------ |
|
|
88
|
+
| `IDEAS_ROOT` | `.oat/ideas` | `~/.oat/ideas` |
|
|
89
|
+
| `TEMPLATES_ROOT` | `.oat/templates/ideas` | `~/.oat/templates/ideas` |
|
|
90
|
+
|
|
91
|
+
### Step 1: Resolve Active Idea
|
|
92
|
+
|
|
93
|
+
Read `activeIdea` from config:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
IDEA_PATH=$(oat config get activeIdea 2>/dev/null || true)
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
**If valid (directory exists with discovery.md):**
|
|
100
|
+
|
|
101
|
+
- Show the idea name and current state to the user
|
|
102
|
+
- Ask: "Continue with **{idea-name}**, or switch to a different idea?"
|
|
103
|
+
- If continuing, proceed to Step 2
|
|
104
|
+
|
|
105
|
+
**If missing or invalid:**
|
|
106
|
+
|
|
107
|
+
- List existing idea directories:
|
|
108
|
+
```bash
|
|
109
|
+
ls -d {IDEAS_ROOT}/*/ 2>/dev/null
|
|
110
|
+
```
|
|
111
|
+
- Read `{IDEAS_ROOT}/scratchpad.md` and extract unchecked entries (`- [ ]`), including any nested notes for context
|
|
112
|
+
- Present combined list to the user:
|
|
113
|
+
- Existing ideas (with state: brainstorming/summarized)
|
|
114
|
+
- Scratchpad entries marked as "not yet started"
|
|
115
|
+
- If user picks an existing idea → run `oat config set activeIdea "{idea-path}"` and proceed to Step 2
|
|
116
|
+
- If user picks a scratchpad entry → scaffold the idea inline by reading the **`oat-idea-new`** skill (`.agents/skills/oat-idea-new/SKILL.md`) and executing its Steps 3-7 (Initialize Ideas Directory, Scaffold Discovery Document, Update Backlog, Check Scratchpad, Set Active Idea Pointer). Then proceed to Step 2 with the new idea.
|
|
117
|
+
- If no ideas and no scratchpad entries exist → tell the user: "No ideas found. Run the `oat-idea-new` skill to create one, or run the `oat-idea-scratchpad` skill to capture a quick idea seed." Then stop.
|
|
118
|
+
|
|
119
|
+
### Step 2: Load Discovery Document
|
|
120
|
+
|
|
121
|
+
Read `{IDEAS_ROOT}/{idea-name}/discovery.md`.
|
|
122
|
+
|
|
123
|
+
Show the user a brief summary of the current state:
|
|
124
|
+
|
|
125
|
+
- Idea name
|
|
126
|
+
- State (brainstorming/summarized)
|
|
127
|
+
- Last updated date
|
|
128
|
+
- Key sections that have content vs. are still template placeholders
|
|
129
|
+
|
|
130
|
+
### Step 3: Handle Summarized State
|
|
131
|
+
|
|
132
|
+
If `oat_idea_state: summarized`:
|
|
133
|
+
|
|
134
|
+
- Warn: "This idea has already been summarized."
|
|
135
|
+
- Offer options:
|
|
136
|
+
- **Reopen brainstorming** — set state back to `brainstorming`, continue to Step 4
|
|
137
|
+
- **View summary** — read and display `summary.md`, then stop
|
|
138
|
+
- **Start a different idea** — go back to Step 1
|
|
139
|
+
|
|
140
|
+
### Step 4: Start New Session
|
|
141
|
+
|
|
142
|
+
Add a new session header to the **Notes & Discussion** section:
|
|
143
|
+
|
|
144
|
+
```markdown
|
|
145
|
+
### Session: YYYY-MM-DD
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
Update frontmatter: `oat_idea_last_updated: YYYY-MM-DD`
|
|
149
|
+
|
|
150
|
+
### Step 5: Conversational Brainstorming
|
|
151
|
+
|
|
152
|
+
Enter a free-form conversational flow:
|
|
153
|
+
|
|
154
|
+
1. **Read current content** to understand where the idea stands
|
|
155
|
+
2. **Ask exploratory questions** based on what's been discussed so far:
|
|
156
|
+
- If early stage: "What sparked this idea?", "What problem does this solve?"
|
|
157
|
+
- If mid-stage: "What's changed since last time?", "Any new angles?"
|
|
158
|
+
- If sections are thin: ask questions that naturally fill them out
|
|
159
|
+
3. **Capture responses** in the discovery document:
|
|
160
|
+
- Update "What's the Idea?" if the core concept evolves
|
|
161
|
+
- Update "Why Is It Interesting?" as motivations emerge
|
|
162
|
+
- Update "What Would It Look Like?" as the vision takes shape
|
|
163
|
+
- Add to "Open Questions" as unknowns surface
|
|
164
|
+
- Add to "Related Ideas" as connections are made
|
|
165
|
+
- Append detailed notes to the current session under "Notes & Discussion"
|
|
166
|
+
4. **Follow the user's energy** — explore tangents, let ideas evolve naturally
|
|
167
|
+
5. **Don't force completion** — ideation can be open-ended
|
|
168
|
+
|
|
169
|
+
### Step 6: Session Close
|
|
170
|
+
|
|
171
|
+
When the user signals they're done (or the conversation reaches a natural pause):
|
|
172
|
+
|
|
173
|
+
1. Update `oat_idea_last_updated` in frontmatter
|
|
174
|
+
2. Save all changes to `discovery.md`
|
|
175
|
+
3. Tell the user their progress is saved, then suggest these next steps (these are prompts for the user to run later — do **not** auto-invoke them):
|
|
176
|
+
- **Continue later** — "Run the `oat-idea-ideate` skill to pick up where you left off"
|
|
177
|
+
- **Summarize** — "Run the `oat-idea-summarize` skill to finalize this idea"
|
|
178
|
+
- **Switch ideas** — "Run the `oat-idea-ideate` skill and pick a different idea"
|
|
179
|
+
- **Quick capture** — "Run the `oat-idea-scratchpad` skill to jot down a new idea seed"
|
|
180
|
+
|
|
181
|
+
## Success Criteria
|
|
182
|
+
|
|
183
|
+
- ✅ Active idea resolved (or user guided to create one)
|
|
184
|
+
- ✅ New session header added to Notes & Discussion
|
|
185
|
+
- ✅ Discovery document updated with conversation content
|
|
186
|
+
- ✅ `oat_idea_last_updated` reflects today's date
|
|
187
|
+
- ✅ User offered clear next steps on session close
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: oat-idea-new
|
|
3
|
+
version: 1.2.0
|
|
4
|
+
description: Use when starting ideation for a new concept or problem. Creates an idea directory for lightweight capture and handoff to ongoing ideation.
|
|
5
|
+
argument-hint: '<idea-name> [--global]'
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
user-invocable: true
|
|
8
|
+
allowed-tools: Read, Write, Bash, Glob, AskUserQuestion
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# New Idea
|
|
12
|
+
|
|
13
|
+
Create a new idea directory, scaffold a discovery document, verify setup, and hand off to `oat-idea-ideate` for brainstorming.
|
|
14
|
+
|
|
15
|
+
## Progress Indicators (User-Facing)
|
|
16
|
+
|
|
17
|
+
- Print a phase banner once at start using horizontal separators, e.g.:
|
|
18
|
+
|
|
19
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
20
|
+
OAT ▸ NEW IDEA [project]
|
|
21
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
22
|
+
|
|
23
|
+
Replace `[project]` with `[global]` when operating at user level.
|
|
24
|
+
|
|
25
|
+
- Before multi-step work, print step indicators, e.g.:
|
|
26
|
+
- `[1/4] Validating idea name…`
|
|
27
|
+
- `[2/4] Scaffolding idea directory…`
|
|
28
|
+
- `[3/4] Updating backlog + scratchpad…`
|
|
29
|
+
- `[4/4] Handing off to ideation…`
|
|
30
|
+
|
|
31
|
+
## Process
|
|
32
|
+
|
|
33
|
+
### Step 0: Resolve Ideas Level
|
|
34
|
+
|
|
35
|
+
Determine whether to operate at project level or user (global) level.
|
|
36
|
+
|
|
37
|
+
**Resolution order:**
|
|
38
|
+
|
|
39
|
+
1. If `$ARGUMENTS` contains `--global` → use **user level**
|
|
40
|
+
2. If `.oat/config.local.json` has `activeIdea` pointing to a valid directory → use **project level**
|
|
41
|
+
3. If `~/.oat/config.json` has `activeIdea` pointing to a valid directory → use **user level**
|
|
42
|
+
4. If BOTH `.oat/ideas/` AND `~/.oat/ideas/` exist →
|
|
43
|
+
ask: "Ideas exist at both project and user level. Where should this idea go?"
|
|
44
|
+
options: "Project (.oat/ideas/)" / "Global (~/.oat/ideas/)"
|
|
45
|
+
5. If `.oat/ideas/` exists → use **project level**
|
|
46
|
+
6. If `~/.oat/ideas/` exists → use **user level**
|
|
47
|
+
7. Otherwise → ask: "Project-level or global (user-level) ideas?"
|
|
48
|
+
|
|
49
|
+
**Set variables:**
|
|
50
|
+
|
|
51
|
+
| Variable | Project Level | User Level |
|
|
52
|
+
| ---------------- | ---------------------- | ------------------------ |
|
|
53
|
+
| `IDEAS_ROOT` | `.oat/ideas` | `~/.oat/ideas` |
|
|
54
|
+
| `TEMPLATES_ROOT` | `.oat/templates/ideas` | `~/.oat/templates/ideas` |
|
|
55
|
+
|
|
56
|
+
### Step 1: Get Idea Name
|
|
57
|
+
|
|
58
|
+
If not provided in `$ARGUMENTS`, ask the user for an idea name.
|
|
59
|
+
|
|
60
|
+
**Validation:** Slug format only — alphanumeric, dashes, and underscores. No spaces or special characters.
|
|
61
|
+
|
|
62
|
+
### Step 2: Check for Existing Idea
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
test -d "{IDEAS_ROOT}/$IDEA_NAME"
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
**If exists:** Tell the user this idea already exists and suggest: "Run the `oat-idea-ideate` skill to resume brainstorming on it." Stop here unless they want a different name.
|
|
69
|
+
|
|
70
|
+
### Step 3: Initialize Ideas Directory
|
|
71
|
+
|
|
72
|
+
Create the ideas directory structure if it doesn't exist:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
mkdir -p "{IDEAS_ROOT}/$IDEA_NAME"
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
If `{IDEAS_ROOT}/backlog.md` doesn't exist, copy from template:
|
|
79
|
+
|
|
80
|
+
- Source: `{TEMPLATES_ROOT}/ideas-backlog.md`
|
|
81
|
+
- Target: `{IDEAS_ROOT}/backlog.md`
|
|
82
|
+
|
|
83
|
+
If `{IDEAS_ROOT}/scratchpad.md` doesn't exist, copy from template:
|
|
84
|
+
|
|
85
|
+
- Source: `{TEMPLATES_ROOT}/ideas-scratchpad.md`
|
|
86
|
+
- Target: `{IDEAS_ROOT}/scratchpad.md`
|
|
87
|
+
|
|
88
|
+
### Step 4: Scaffold Discovery Document
|
|
89
|
+
|
|
90
|
+
Copy template and apply replacements:
|
|
91
|
+
|
|
92
|
+
- Source: `{TEMPLATES_ROOT}/idea-discovery.md`
|
|
93
|
+
- Target: `{IDEAS_ROOT}/$IDEA_NAME/discovery.md`
|
|
94
|
+
|
|
95
|
+
Replacements:
|
|
96
|
+
|
|
97
|
+
- `{Idea Name}` → actual idea name (title case from slug)
|
|
98
|
+
- `YYYY-MM-DD` → today's date (ISO format)
|
|
99
|
+
|
|
100
|
+
### Step 5: Update Backlog
|
|
101
|
+
|
|
102
|
+
Add an entry to `{IDEAS_ROOT}/backlog.md` under the **Active Brainstorming** section:
|
|
103
|
+
|
|
104
|
+
```markdown
|
|
105
|
+
- **{idea-name}** — {placeholder: to be filled during brainstorming} _(Created: YYYY-MM-DD)_
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Step 6: Check Scratchpad
|
|
109
|
+
|
|
110
|
+
Read `{IDEAS_ROOT}/scratchpad.md` and look for an unchecked entry matching the idea name.
|
|
111
|
+
|
|
112
|
+
If found, check it off and append a note. Preserve any nested bullet notes beneath the entry:
|
|
113
|
+
|
|
114
|
+
```markdown
|
|
115
|
+
- [x] **{idea-name}** - {original note} _(YYYY-MM-DD)_ → started (`{IDEAS_ROOT}/{idea-name}/`)
|
|
116
|
+
- {preserved quick note 1}
|
|
117
|
+
- {preserved quick note 2}
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
### Step 7: Set Active Idea Pointer
|
|
121
|
+
|
|
122
|
+
Write the active idea path to config:
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
oat config set activeIdea "{IDEAS_ROOT}/{idea-name}"
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### Step 8: Verify and Hand Off
|
|
129
|
+
|
|
130
|
+
Verify all success criteria are met, then tell the user:
|
|
131
|
+
|
|
132
|
+
```
|
|
133
|
+
Idea "{Idea Name}" created successfully.
|
|
134
|
+
|
|
135
|
+
Level: {project | global}
|
|
136
|
+
Directory: {IDEAS_ROOT}/{idea-name}/
|
|
137
|
+
Backlog: {IDEAS_ROOT}/backlog.md (entry added)
|
|
138
|
+
Active: config activeIdea (set)
|
|
139
|
+
|
|
140
|
+
Starting brainstorming...
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
Then immediately invoke the **`oat-idea-ideate`** skill (located at `.agents/skills/oat-idea-ideate/SKILL.md`) to begin the first brainstorming session. Read that skill file and follow its process from Step 1. The ideate skill owns all conversational brainstorming behavior — do not duplicate it here.
|
|
144
|
+
|
|
145
|
+
## Success Criteria
|
|
146
|
+
|
|
147
|
+
- ✅ `{IDEAS_ROOT}/{idea-name}/` directory exists
|
|
148
|
+
- ✅ `discovery.md` scaffolded with correct name and date
|
|
149
|
+
- ✅ `{IDEAS_ROOT}/backlog.md` exists and includes the new idea
|
|
150
|
+
- ✅ `{IDEAS_ROOT}/scratchpad.md` exists (initialized if first idea)
|
|
151
|
+
- ✅ `activeIdea` config value points to the new idea
|
|
152
|
+
- ✅ `oat-idea-ideate` skill invoked and brainstorming started
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: oat-idea-scratchpad
|
|
3
|
+
version: 1.2.0
|
|
4
|
+
description: Use when you need quick idea capture or want to review scratchpad entries. Manages lightweight idea seeds and optional notes.
|
|
5
|
+
argument-hint: '[review | capture] [--global]'
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
user-invocable: true
|
|
8
|
+
allowed-tools: Read, Write, Bash, Glob, AskUserQuestion
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Scratchpad
|
|
12
|
+
|
|
13
|
+
Review your ideas scratchpad or quick-capture a new idea seed.
|
|
14
|
+
|
|
15
|
+
## Progress Indicators (User-Facing)
|
|
16
|
+
|
|
17
|
+
- Print a phase banner once at start using horizontal separators, e.g.:
|
|
18
|
+
|
|
19
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
20
|
+
OAT ▸ SCRATCHPAD [project]
|
|
21
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
22
|
+
|
|
23
|
+
Replace `[project]` with `[global]` when operating at user level.
|
|
24
|
+
|
|
25
|
+
- Before multi-step work, print step indicators, e.g.:
|
|
26
|
+
- `[1/2] Resolving ideas level…`
|
|
27
|
+
- `[2/2] Reading scratchpad…` (review mode) or `[2/2] Capturing new idea…` (capture mode)
|
|
28
|
+
|
|
29
|
+
## Process
|
|
30
|
+
|
|
31
|
+
### Step 0: Resolve Ideas Level
|
|
32
|
+
|
|
33
|
+
Determine whether to operate at project level or user (global) level. The scratchpad does not require an active idea.
|
|
34
|
+
|
|
35
|
+
**Resolution order:**
|
|
36
|
+
|
|
37
|
+
1. If `$ARGUMENTS` contains `--global` → use **user level**
|
|
38
|
+
2. If `.oat/config.local.json` has `activeIdea` pointing to a valid directory → use **project level**
|
|
39
|
+
3. If `~/.oat/config.json` has `activeIdea` pointing to a valid directory → use **user level**
|
|
40
|
+
4. If BOTH `.oat/ideas/` AND `~/.oat/ideas/` exist →
|
|
41
|
+
ask: "Ideas exist at both project and user level. Where should this idea go?"
|
|
42
|
+
options: "Project (.oat/ideas/)" / "Global (~/.oat/ideas/)"
|
|
43
|
+
5. If `.oat/ideas/` exists → use **project level**
|
|
44
|
+
6. If `~/.oat/ideas/` exists → use **user level**
|
|
45
|
+
7. Otherwise → ask: "Project-level or global (user-level) ideas?"
|
|
46
|
+
|
|
47
|
+
**Set variables:**
|
|
48
|
+
|
|
49
|
+
| Variable | Project Level | User Level |
|
|
50
|
+
| ---------------- | ---------------------- | ------------------------ |
|
|
51
|
+
| `IDEAS_ROOT` | `.oat/ideas` | `~/.oat/ideas` |
|
|
52
|
+
| `TEMPLATES_ROOT` | `.oat/templates/ideas` | `~/.oat/templates/ideas` |
|
|
53
|
+
|
|
54
|
+
### Step 1: Determine Mode
|
|
55
|
+
|
|
56
|
+
If `$ARGUMENTS` contains `review`, go to Step 2.
|
|
57
|
+
If `$ARGUMENTS` contains `capture`, go to Step 3.
|
|
58
|
+
Otherwise, ask the user: "Would you like to **review** what's on the scratchpad, or **capture** a new idea?"
|
|
59
|
+
|
|
60
|
+
### Step 2: Review Mode
|
|
61
|
+
|
|
62
|
+
1. Read `{IDEAS_ROOT}/scratchpad.md`
|
|
63
|
+
2. If the file does not exist or contains only the template placeholder entry, tell the user: "Scratchpad is empty. Would you like to capture your first idea?" If yes, go to Step 3. Otherwise, stop.
|
|
64
|
+
3. Parse entries and display grouped by status:
|
|
65
|
+
- **Open ideas** (`- [ ]`): show count and list with summaries and any nested notes
|
|
66
|
+
- **Started** (`- [x]`): show count and list (collapsed summary)
|
|
67
|
+
4. Offer next actions (suggest to the user — do **not** auto-invoke):
|
|
68
|
+
- "Capture a new idea" → go to Step 3
|
|
69
|
+
- "Start brainstorming on one" → "Run the `oat-idea-new` skill with the idea name"
|
|
70
|
+
- "Done" → stop
|
|
71
|
+
|
|
72
|
+
### Step 3: Capture Mode
|
|
73
|
+
|
|
74
|
+
1. Ask for idea name if not provided in `$ARGUMENTS`. **Validation:** slug format only — alphanumeric, dashes, and underscores.
|
|
75
|
+
2. Ask for a one-liner summary (required, 1 sentence).
|
|
76
|
+
3. Ask: "Any quick notes? (optional — press enter to skip)"
|
|
77
|
+
- If the user provides notes, capture them. Ask "Another note?" until the user declines or provides an empty response.
|
|
78
|
+
4. Initialize scratchpad if needed:
|
|
79
|
+
- Create `{IDEAS_ROOT}/` directory if it does not exist (`mkdir -p`)
|
|
80
|
+
- If `{IDEAS_ROOT}/scratchpad.md` does not exist, copy from template:
|
|
81
|
+
- Source: `{TEMPLATES_ROOT}/ideas-scratchpad.md`
|
|
82
|
+
- Target: `{IDEAS_ROOT}/scratchpad.md`
|
|
83
|
+
- If `{IDEAS_ROOT}/backlog.md` does not exist, copy from template:
|
|
84
|
+
- Source: `{TEMPLATES_ROOT}/ideas-backlog.md`
|
|
85
|
+
- Target: `{IDEAS_ROOT}/backlog.md`
|
|
86
|
+
5. Append entry to `{IDEAS_ROOT}/scratchpad.md` under the `## Ideas` section:
|
|
87
|
+
|
|
88
|
+
```markdown
|
|
89
|
+
- [ ] **{idea-name}** - {one-liner summary} _(YYYY-MM-DD)_
|
|
90
|
+
- {note 1}
|
|
91
|
+
- {note 2}
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
Include nested bullets only if the user provided notes.
|
|
95
|
+
|
|
96
|
+
6. Confirm capture:
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
Captured "{idea-name}" on the scratchpad.
|
|
100
|
+
|
|
101
|
+
Scratchpad: {IDEAS_ROOT}/scratchpad.md
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
7. Ask: "Capture another idea, or done for now?"
|
|
105
|
+
- If another → repeat from step 1 of Capture Mode
|
|
106
|
+
- If done → suggest next steps (suggest to the user — do **not** auto-invoke):
|
|
107
|
+
- "Start brainstorming: run the `oat-idea-new` skill with the idea name"
|
|
108
|
+
- "Review scratchpad: run the `oat-idea-scratchpad` skill with `review`"
|
|
109
|
+
|
|
110
|
+
## Success Criteria
|
|
111
|
+
|
|
112
|
+
- ✅ Scratchpad reviewed or new entry captured
|
|
113
|
+
- ✅ `{IDEAS_ROOT}/scratchpad.md` exists (initialized from template if first use)
|
|
114
|
+
- ✅ New entries use nested-bullet format (name + summary + optional notes)
|
|
115
|
+
- ✅ User informed of next steps
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: oat-idea-summarize
|
|
3
|
+
version: 1.2.0
|
|
4
|
+
description: Use when an idea is mature enough to move from brainstorming into the backlog. Generates a summary document and adds the idea to the backlog.
|
|
5
|
+
argument-hint: '[--global]'
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
user-invocable: true
|
|
8
|
+
allowed-tools: Read, Write, Grep, AskUserQuestion
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Summarize Idea
|
|
12
|
+
|
|
13
|
+
Read the brainstorming discovery document, synthesize a clean summary, and update the ideas backlog.
|
|
14
|
+
|
|
15
|
+
## Prerequisites
|
|
16
|
+
|
|
17
|
+
- An active idea must exist (`activeIdea` set in config, with a `discovery.md` that has meaningful content)
|
|
18
|
+
|
|
19
|
+
## Progress Indicators (User-Facing)
|
|
20
|
+
|
|
21
|
+
- Print a phase banner once at start using horizontal separators, e.g.:
|
|
22
|
+
|
|
23
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
24
|
+
OAT ▸ SUMMARIZE IDEA [project]
|
|
25
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
26
|
+
|
|
27
|
+
Replace `[project]` with `[global]` when operating at user level.
|
|
28
|
+
|
|
29
|
+
- Before multi-step work, print step indicators, e.g.:
|
|
30
|
+
- `[1/4] Resolving active idea…`
|
|
31
|
+
- `[2/4] Reading discovery document…`
|
|
32
|
+
- `[3/4] Generating summary…`
|
|
33
|
+
- `[4/4] Updating backlog…`
|
|
34
|
+
|
|
35
|
+
## Process
|
|
36
|
+
|
|
37
|
+
### Step 0: Resolve Ideas Level
|
|
38
|
+
|
|
39
|
+
Determine whether to operate at project level or user (global) level.
|
|
40
|
+
|
|
41
|
+
**Resolution order:**
|
|
42
|
+
|
|
43
|
+
1. If `$ARGUMENTS` contains `--global` → use **user level**
|
|
44
|
+
2. If `.oat/config.local.json` has `activeIdea` pointing to a valid directory → use **project level**
|
|
45
|
+
3. If `~/.oat/config.json` has `activeIdea` pointing to a valid directory → use **user level**
|
|
46
|
+
4. If BOTH `.oat/ideas/` AND `~/.oat/ideas/` exist →
|
|
47
|
+
ask: "Ideas exist at both project and user level. Where should this idea go?"
|
|
48
|
+
options: "Project (.oat/ideas/)" / "Global (~/.oat/ideas/)"
|
|
49
|
+
5. If `.oat/ideas/` exists → use **project level**
|
|
50
|
+
6. If `~/.oat/ideas/` exists → use **user level**
|
|
51
|
+
7. Otherwise → ask: "Project-level or global (user-level) ideas?"
|
|
52
|
+
|
|
53
|
+
**Set variables:**
|
|
54
|
+
|
|
55
|
+
| Variable | Project Level | User Level |
|
|
56
|
+
| ---------------- | ---------------------- | ------------------------ |
|
|
57
|
+
| `IDEAS_ROOT` | `.oat/ideas` | `~/.oat/ideas` |
|
|
58
|
+
| `TEMPLATES_ROOT` | `.oat/templates/ideas` | `~/.oat/templates/ideas` |
|
|
59
|
+
|
|
60
|
+
### Step 1: Resolve Active Idea
|
|
61
|
+
|
|
62
|
+
Read `activeIdea` from config (`oat config get activeIdea`) to get `IDEA_PATH`.
|
|
63
|
+
|
|
64
|
+
**If missing or invalid:**
|
|
65
|
+
|
|
66
|
+
- Use the Glob tool to list idea directories: `{IDEAS_ROOT}/*/discovery.md`
|
|
67
|
+
- Ask the user to pick one
|
|
68
|
+
- Run `oat config set activeIdea "{chosen-idea-path}"`
|
|
69
|
+
|
|
70
|
+
Derive `IDEA_NAME` from the directory basename.
|
|
71
|
+
|
|
72
|
+
### Step 2: Read Discovery Document
|
|
73
|
+
|
|
74
|
+
Read `{IDEAS_ROOT}/$IDEA_NAME/discovery.md`.
|
|
75
|
+
|
|
76
|
+
**Validate content:** Check that the document has meaningful content beyond the template placeholders. Look for:
|
|
77
|
+
|
|
78
|
+
- "What's the Idea?" section has real content (not just `{Brief description...}`)
|
|
79
|
+
- At least one session in "Notes & Discussion"
|
|
80
|
+
|
|
81
|
+
**If mostly empty:**
|
|
82
|
+
|
|
83
|
+
- Warn: "This idea hasn't been explored much yet. Consider running the `oat-idea-ideate` skill first to flesh it out."
|
|
84
|
+
- Ask: continue with summarization anyway, or brainstorm more? If user chooses to brainstorm, read the **`oat-idea-ideate`** skill (`.agents/skills/oat-idea-ideate/SKILL.md`) and follow its process from Step 4.
|
|
85
|
+
|
|
86
|
+
### Step 3: Generate Summary
|
|
87
|
+
|
|
88
|
+
Copy the summary template and synthesize content from the discovery document:
|
|
89
|
+
|
|
90
|
+
- Source: `{TEMPLATES_ROOT}/idea-summary.md`
|
|
91
|
+
- Target: `{IDEAS_ROOT}/$IDEA_NAME/summary.md`
|
|
92
|
+
|
|
93
|
+
**Synthesis guidelines:**
|
|
94
|
+
|
|
95
|
+
- **Overview:** 2-4 sentence synthesis drawn from "What's the Idea?" and "Why Is It Interesting?"
|
|
96
|
+
- **Key Points:** 3-5 bullets capturing the most important insights from the entire discovery
|
|
97
|
+
- **Why This Matters:** Value proposition from "Why Is It Interesting?" and session discussions
|
|
98
|
+
- **What It Would Take:** High-level effort sense from "What Would It Look Like?" and discussions (if discussed)
|
|
99
|
+
- **Next Steps:** Actionable items if the idea were to be pursued
|
|
100
|
+
- **Open Questions:** Carry over unresolved questions from discovery
|
|
101
|
+
- **References:** Carry over from "Related Ideas"
|
|
102
|
+
|
|
103
|
+
Apply replacements:
|
|
104
|
+
|
|
105
|
+
- `{Idea Name}` → actual idea name
|
|
106
|
+
- `oat_idea_created` → original creation date from discovery frontmatter
|
|
107
|
+
- `oat_idea_summarized` → today's date
|
|
108
|
+
|
|
109
|
+
### Step 4: Show Summary for Review
|
|
110
|
+
|
|
111
|
+
Display the generated summary to the user. Ask:
|
|
112
|
+
|
|
113
|
+
- **Accept** — finalize and update backlog
|
|
114
|
+
- **Refine** — edit the summary (make changes, then re-confirm)
|
|
115
|
+
- **Continue brainstorming** — discard summary and resume brainstorming
|
|
116
|
+
|
|
117
|
+
If user chooses to continue brainstorming, do not update state or backlog. Read the **`oat-idea-ideate`** skill (`.agents/skills/oat-idea-ideate/SKILL.md`) and follow its process from Step 4 (Start New Session) to resume the conversation.
|
|
118
|
+
|
|
119
|
+
### Step 5: Update Discovery State
|
|
120
|
+
|
|
121
|
+
Update `{IDEAS_ROOT}/$IDEA_NAME/discovery.md` frontmatter:
|
|
122
|
+
|
|
123
|
+
```yaml
|
|
124
|
+
oat_idea_state: summarized
|
|
125
|
+
oat_idea_last_updated: YYYY-MM-DD
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### Step 6: Update Backlog
|
|
129
|
+
|
|
130
|
+
In `{IDEAS_ROOT}/backlog.md`:
|
|
131
|
+
|
|
132
|
+
1. **Remove** the idea's entry from the **Active Brainstorming** section
|
|
133
|
+
2. **Add** an entry to the **Captured Ideas** section with the overview from the summary:
|
|
134
|
+
|
|
135
|
+
```markdown
|
|
136
|
+
- **{idea-name}** — {1-2 sentence overview from summary} _(Created: YYYY-MM-DD, Summarized: YYYY-MM-DD)_
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### Step 7: Confirm Completion
|
|
140
|
+
|
|
141
|
+
Print a confirmation:
|
|
142
|
+
|
|
143
|
+
```
|
|
144
|
+
Idea "{Idea Name}" has been summarized.
|
|
145
|
+
|
|
146
|
+
Level: {project | global}
|
|
147
|
+
Summary: {IDEAS_ROOT}/{idea-name}/summary.md
|
|
148
|
+
Backlog: {IDEAS_ROOT}/backlog.md (updated)
|
|
149
|
+
|
|
150
|
+
Next steps (suggest to the user — do not auto-invoke):
|
|
151
|
+
- Start a new idea: run the `oat-idea-new` skill
|
|
152
|
+
- Browse ideas: check {IDEAS_ROOT}/backlog.md
|
|
153
|
+
- Quick capture: run the `oat-idea-scratchpad` skill to jot down a new idea seed
|
|
154
|
+
- Promote to project: run the `oat-project-new` skill, then seed its
|
|
155
|
+
discovery phase with this idea's summary as the initial request
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
**Promotion contract (v1):** To promote an idea to a full OAT project:
|
|
159
|
+
|
|
160
|
+
1. Run `oat-project-new {idea-name}` to scaffold the project
|
|
161
|
+
2. Run `oat-project-discover` — use the idea's `summary.md` as the initial request input
|
|
162
|
+
3. The idea's discovery and summary documents remain in `{IDEAS_ROOT}/` as reference
|
|
163
|
+
4. Update the ideas backlog entry to `Archived` with reason: `promoted to project`
|
|
164
|
+
|
|
165
|
+
Future: a dedicated `oat-idea-promote` skill can automate steps 1-4.
|
|
166
|
+
|
|
167
|
+
## Success Criteria
|
|
168
|
+
|
|
169
|
+
- ✅ `summary.md` created with synthesized content
|
|
170
|
+
- ✅ `discovery.md` frontmatter updated to `oat_idea_state: summarized`
|
|
171
|
+
- ✅ Backlog entry moved from Active Brainstorming to Captured Ideas
|
|
172
|
+
- ✅ User reviewed and accepted the summary
|