@opengsd/gsd-path 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +397 -0
- package/DOCS.md +341 -0
- package/FULL.md +475 -0
- package/GUIDE.md +23 -0
- package/HOOKS.md +273 -0
- package/LICENSE +21 -0
- package/MIGRATE.md +100 -0
- package/QUICK.md +146 -0
- package/README.md +280 -0
- package/RUNTIME.md +229 -0
- package/UPDATE.md +196 -0
- package/WORKFLOW.md +683 -0
- package/package.json +80 -0
- package/platforms/claude/dispatch.md +63 -0
- package/platforms/copilot/dispatch.md +61 -0
- package/platforms/cursor/agent.md +17 -0
- package/platforms/cursor/dispatch.md +63 -0
- package/platforms/grok/dispatch.md +61 -0
- package/platforms/kimi/dispatch.md +64 -0
- package/platforms/kiro/dispatch.md +58 -0
- package/platforms/opencode/dispatch.md +62 -0
- package/platforms/qwen/dispatch.md +60 -0
- package/platforms/shared-agents/dispatch.md +131 -0
- package/plugin.json +14 -0
- package/scripts/_common.py +180 -0
- package/scripts/archive_milestone.py +2265 -0
- package/scripts/bootstrap_repository.py +710 -0
- package/scripts/build_state.py +854 -0
- package/scripts/check_docs_audit.py +463 -0
- package/scripts/check_handoffs.py +1855 -0
- package/scripts/check_task_briefs.py +376 -0
- package/scripts/check_update.py +93 -0
- package/scripts/core_hook_gate.py +34 -0
- package/scripts/core_hook_settings.py +119 -0
- package/scripts/detect_project.py +1517 -0
- package/scripts/discussion_records.py +619 -0
- package/scripts/discussion_validate.py +1321 -0
- package/scripts/dispatch_driver.py +1812 -0
- package/scripts/git_guard.py +759 -0
- package/scripts/guard_hook.py +2124 -0
- package/scripts/install.mjs +3239 -0
- package/scripts/install.py +3008 -0
- package/scripts/integration.py +1433 -0
- package/scripts/isolation.py +3538 -0
- package/scripts/lean_verification.py +256 -0
- package/scripts/loop_run.py +837 -0
- package/scripts/migrate_core.py +169 -0
- package/scripts/pipeline_diagnose.py +715 -0
- package/scripts/pipeline_git.py +940 -0
- package/scripts/pipeline_state.py +2291 -0
- package/scripts/pipeline_undo.py +1039 -0
- package/scripts/promote_lookahead.py +415 -0
- package/scripts/review_findings.py +714 -0
- package/scripts/review_panel.py +553 -0
- package/scripts/skill-resources.json +340 -0
- package/scripts/state_checkpoint.py +1039 -0
- package/scripts/state_promote.py +743 -0
- package/scripts/status_runtime.py +122 -0
- package/scripts/sync_skill_resources.py +259 -0
- package/scripts/token_budget.py +146 -0
- package/scripts/wizard.mjs +179 -0
- package/scripts/workflow_run.py +117 -0
- package/skills/gsd-path/BUILD.md +700 -0
- package/skills/gsd-path/DECIDE.md +115 -0
- package/skills/gsd-path/DEFINE.md +297 -0
- package/skills/gsd-path/DOCS-AUDIT.md +190 -0
- package/skills/gsd-path/INSPECT.md +167 -0
- package/skills/gsd-path/PLAN.md +411 -0
- package/skills/gsd-path/RESEARCH.md +159 -0
- package/skills/gsd-path/ROADMAP.md +215 -0
- package/skills/gsd-path/SHIP.md +412 -0
- package/skills/gsd-path/SKILL.md +471 -0
- package/skills/gsd-path/agents/openai.yaml +6 -0
- package/skills/gsd-path/references/codebase-mapper.md +52 -0
- package/skills/gsd-path/references/coder.md +90 -0
- package/skills/gsd-path/references/decider.md +36 -0
- package/skills/gsd-path/references/dispatch.md +131 -0
- package/skills/gsd-path/references/docs-auditor.md +60 -0
- package/skills/gsd-path/references/planner.md +104 -0
- package/skills/gsd-path/references/researcher.md +42 -0
- package/skills/gsd-path/references/reviewer.md +188 -0
- package/skills/gsd-path/references/roadmapper.md +48 -0
- package/skills/gsd-path/scripts/_common.py +180 -0
- package/skills/gsd-path/scripts/archive_milestone.py +2265 -0
- package/skills/gsd-path/scripts/bootstrap_repository.py +710 -0
- package/skills/gsd-path/scripts/build_state.py +854 -0
- package/skills/gsd-path/scripts/check_docs_audit.py +463 -0
- package/skills/gsd-path/scripts/check_handoffs.py +1855 -0
- package/skills/gsd-path/scripts/check_task_briefs.py +376 -0
- package/skills/gsd-path/scripts/check_update.py +93 -0
- package/skills/gsd-path/scripts/detect_project.py +1517 -0
- package/skills/gsd-path/scripts/discussion_records.py +619 -0
- package/skills/gsd-path/scripts/discussion_validate.py +1321 -0
- package/skills/gsd-path/scripts/dispatch_driver.py +1812 -0
- package/skills/gsd-path/scripts/integration.py +1433 -0
- package/skills/gsd-path/scripts/isolation.py +3538 -0
- package/skills/gsd-path/scripts/lean_verification.py +256 -0
- package/skills/gsd-path/scripts/loop_run.py +837 -0
- package/skills/gsd-path/scripts/pipeline_git.py +940 -0
- package/skills/gsd-path/scripts/pipeline_state.py +2291 -0
- package/skills/gsd-path/scripts/promote_lookahead.py +415 -0
- package/skills/gsd-path/scripts/review_findings.py +714 -0
- package/skills/gsd-path/scripts/review_panel.py +553 -0
- package/skills/gsd-path/scripts/state_checkpoint.py +1039 -0
- package/skills/gsd-path/scripts/state_promote.py +743 -0
- package/skills/gsd-path/scripts/token_budget.py +146 -0
- package/skills/gsd-path/scripts/workflow_run.py +117 -0
- package/skills/gsd-path/templates/answers.md +29 -0
- package/skills/gsd-path/templates/archive-manifest.md +37 -0
- package/skills/gsd-path/templates/charter.md +50 -0
- package/skills/gsd-path/templates/codebase.md +46 -0
- package/skills/gsd-path/templates/dialogue.md +21 -0
- package/skills/gsd-path/templates/docs-audit.md +69 -0
- package/skills/gsd-path/templates/evidence.md +24 -0
- package/skills/gsd-path/templates/final-review.md +27 -0
- package/skills/gsd-path/templates/gap-review.md +20 -0
- package/skills/gsd-path/templates/intent.md +98 -0
- package/skills/gsd-path/templates/loop.md +59 -0
- package/skills/gsd-path/templates/patch-findings.md +16 -0
- package/skills/gsd-path/templates/plan-panel.md +25 -0
- package/skills/gsd-path/templates/plan.md +89 -0
- package/skills/gsd-path/templates/repository.md +16 -0
- package/skills/gsd-path/templates/research-handoff.md +25 -0
- package/skills/gsd-path/templates/roadmap.md +38 -0
- package/skills/gsd-path/templates/skeptic.md +36 -0
- package/skills/gsd-path/templates/state.md +27 -0
- package/skills/gsd-path/templates/synthesis.md +36 -0
- package/skills/gsd-path/templates/task.md +74 -0
- package/skills/gsd-path/templates/wave-panel.md +25 -0
- package/skills/gsd-path/templates/wave-review.md +64 -0
- package/skills/gsd-path-build/SKILL.md +700 -0
- package/skills/gsd-path-build/agents/openai.yaml +6 -0
- package/skills/gsd-path-build/references/coder.md +90 -0
- package/skills/gsd-path-build/references/dispatch.md +131 -0
- package/skills/gsd-path-build/references/reviewer.md +188 -0
- package/skills/gsd-path-build/scripts/_common.py +180 -0
- package/skills/gsd-path-build/scripts/archive_milestone.py +2265 -0
- package/skills/gsd-path-build/scripts/build_state.py +854 -0
- package/skills/gsd-path-build/scripts/check_handoffs.py +1855 -0
- package/skills/gsd-path-build/scripts/check_task_briefs.py +376 -0
- package/skills/gsd-path-build/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-build/scripts/discussion_validate.py +1321 -0
- package/skills/gsd-path-build/scripts/dispatch_driver.py +1812 -0
- package/skills/gsd-path-build/scripts/integration.py +1433 -0
- package/skills/gsd-path-build/scripts/isolation.py +3538 -0
- package/skills/gsd-path-build/scripts/loop_run.py +837 -0
- package/skills/gsd-path-build/scripts/pipeline_git.py +940 -0
- package/skills/gsd-path-build/scripts/pipeline_state.py +2291 -0
- package/skills/gsd-path-build/scripts/review_findings.py +714 -0
- package/skills/gsd-path-build/scripts/review_panel.py +553 -0
- package/skills/gsd-path-build/scripts/state_checkpoint.py +1039 -0
- package/skills/gsd-path-build/scripts/state_promote.py +743 -0
- package/skills/gsd-path-build/scripts/token_budget.py +146 -0
- package/skills/gsd-path-build/scripts/workflow_run.py +117 -0
- package/skills/gsd-path-build/templates/skeptic.md +36 -0
- package/skills/gsd-path-build/templates/task.md +74 -0
- package/skills/gsd-path-build/templates/wave-panel.md +25 -0
- package/skills/gsd-path-build/templates/wave-review.md +64 -0
- package/skills/gsd-path-decide/SKILL.md +115 -0
- package/skills/gsd-path-decide/agents/openai.yaml +6 -0
- package/skills/gsd-path-decide/references/decider.md +36 -0
- package/skills/gsd-path-decide/references/dispatch.md +131 -0
- package/skills/gsd-path-decide/scripts/_common.py +180 -0
- package/skills/gsd-path-decide/scripts/check_handoffs.py +1855 -0
- package/skills/gsd-path-decide/scripts/check_task_briefs.py +376 -0
- package/skills/gsd-path-decide/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-decide/scripts/isolation.py +3538 -0
- package/skills/gsd-path-decide/scripts/pipeline_git.py +940 -0
- package/skills/gsd-path-decide/scripts/pipeline_state.py +2291 -0
- package/skills/gsd-path-decide/scripts/state_checkpoint.py +1039 -0
- package/skills/gsd-path-decide/scripts/state_promote.py +743 -0
- package/skills/gsd-path-decide/templates/synthesis.md +36 -0
- package/skills/gsd-path-define/SKILL.md +297 -0
- package/skills/gsd-path-define/agents/openai.yaml +6 -0
- package/skills/gsd-path-define/scripts/_common.py +180 -0
- package/skills/gsd-path-define/scripts/check_handoffs.py +1855 -0
- package/skills/gsd-path-define/scripts/check_task_briefs.py +376 -0
- package/skills/gsd-path-define/scripts/detect_project.py +1517 -0
- package/skills/gsd-path-define/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-define/scripts/isolation.py +3538 -0
- package/skills/gsd-path-define/scripts/pipeline_git.py +940 -0
- package/skills/gsd-path-define/scripts/pipeline_state.py +2291 -0
- package/skills/gsd-path-define/scripts/state_checkpoint.py +1039 -0
- package/skills/gsd-path-define/scripts/state_promote.py +743 -0
- package/skills/gsd-path-define/templates/charter.md +50 -0
- package/skills/gsd-path-define/templates/intent.md +98 -0
- package/skills/gsd-path-define/templates/state.md +27 -0
- package/skills/gsd-path-discuss/SKILL.md +162 -0
- package/skills/gsd-path-discuss/agents/openai.yaml +6 -0
- package/skills/gsd-path-discuss/scripts/_common.py +180 -0
- package/skills/gsd-path-discuss/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-discuss/templates/answers.md +29 -0
- package/skills/gsd-path-discuss/templates/dialogue.md +21 -0
- package/skills/gsd-path-docs-audit/SKILL.md +190 -0
- package/skills/gsd-path-docs-audit/agents/openai.yaml +6 -0
- package/skills/gsd-path-docs-audit/references/dispatch.md +131 -0
- package/skills/gsd-path-docs-audit/references/docs-auditor.md +60 -0
- package/skills/gsd-path-docs-audit/scripts/_common.py +180 -0
- package/skills/gsd-path-docs-audit/scripts/check_docs_audit.py +463 -0
- package/skills/gsd-path-docs-audit/scripts/check_handoffs.py +1855 -0
- package/skills/gsd-path-docs-audit/scripts/check_task_briefs.py +376 -0
- package/skills/gsd-path-docs-audit/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-docs-audit/scripts/isolation.py +3538 -0
- package/skills/gsd-path-docs-audit/scripts/pipeline_git.py +940 -0
- package/skills/gsd-path-docs-audit/scripts/pipeline_state.py +2291 -0
- package/skills/gsd-path-docs-audit/scripts/state_checkpoint.py +1039 -0
- package/skills/gsd-path-docs-audit/scripts/state_promote.py +743 -0
- package/skills/gsd-path-docs-audit/templates/docs-audit.md +69 -0
- package/skills/gsd-path-forensics/SKILL.md +39 -0
- package/skills/gsd-path-forensics/agents/openai.yaml +6 -0
- package/skills/gsd-path-forensics/scripts/_common.py +180 -0
- package/skills/gsd-path-forensics/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-forensics/scripts/pipeline_diagnose.py +715 -0
- package/skills/gsd-path-forensics/scripts/pipeline_undo.py +1039 -0
- package/skills/gsd-path-inspect/SKILL.md +167 -0
- package/skills/gsd-path-inspect/agents/openai.yaml +6 -0
- package/skills/gsd-path-inspect/references/codebase-mapper.md +52 -0
- package/skills/gsd-path-inspect/references/dispatch.md +131 -0
- package/skills/gsd-path-inspect/references/docs-auditor.md +60 -0
- package/skills/gsd-path-inspect/scripts/_common.py +180 -0
- package/skills/gsd-path-inspect/scripts/check_docs_audit.py +463 -0
- package/skills/gsd-path-inspect/scripts/check_handoffs.py +1855 -0
- package/skills/gsd-path-inspect/scripts/check_task_briefs.py +376 -0
- package/skills/gsd-path-inspect/scripts/detect_project.py +1517 -0
- package/skills/gsd-path-inspect/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-inspect/scripts/isolation.py +3538 -0
- package/skills/gsd-path-inspect/scripts/pipeline_git.py +940 -0
- package/skills/gsd-path-inspect/scripts/pipeline_state.py +2291 -0
- package/skills/gsd-path-inspect/scripts/state_checkpoint.py +1039 -0
- package/skills/gsd-path-inspect/scripts/state_promote.py +743 -0
- package/skills/gsd-path-inspect/templates/codebase.md +46 -0
- package/skills/gsd-path-inspect/templates/docs-audit.md +69 -0
- package/skills/gsd-path-inspect/templates/state.md +27 -0
- package/skills/gsd-path-loop/SKILL.md +98 -0
- package/skills/gsd-path-loop/agents/openai.yaml +6 -0
- package/skills/gsd-path-loop/examples/ci-repair.LOOP.md +61 -0
- package/skills/gsd-path-loop/scripts/_common.py +180 -0
- package/skills/gsd-path-loop/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-loop/scripts/loop_run.py +837 -0
- package/skills/gsd-path-loop/templates/loop.md +59 -0
- package/skills/gsd-path-migrate/SKILL.md +134 -0
- package/skills/gsd-path-migrate/agents/openai.yaml +6 -0
- package/skills/gsd-path-migrate/scripts/core_hook_gate.py +34 -0
- package/skills/gsd-path-migrate/scripts/core_hook_settings.py +119 -0
- package/skills/gsd-path-migrate/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-migrate/scripts/migrate_core.py +169 -0
- package/skills/gsd-path-plan/SKILL.md +411 -0
- package/skills/gsd-path-plan/agents/openai.yaml +6 -0
- package/skills/gsd-path-plan/references/dispatch.md +131 -0
- package/skills/gsd-path-plan/references/planner.md +104 -0
- package/skills/gsd-path-plan/scripts/_common.py +180 -0
- package/skills/gsd-path-plan/scripts/check_handoffs.py +1855 -0
- package/skills/gsd-path-plan/scripts/check_task_briefs.py +376 -0
- package/skills/gsd-path-plan/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-plan/scripts/isolation.py +3538 -0
- package/skills/gsd-path-plan/scripts/pipeline_git.py +940 -0
- package/skills/gsd-path-plan/scripts/pipeline_state.py +2291 -0
- package/skills/gsd-path-plan/scripts/review_panel.py +553 -0
- package/skills/gsd-path-plan/scripts/state_checkpoint.py +1039 -0
- package/skills/gsd-path-plan/scripts/state_promote.py +743 -0
- package/skills/gsd-path-plan/scripts/workflow_run.py +117 -0
- package/skills/gsd-path-plan/templates/patch-findings.md +16 -0
- package/skills/gsd-path-plan/templates/plan-panel.md +25 -0
- package/skills/gsd-path-plan/templates/plan.md +89 -0
- package/skills/gsd-path-plan/templates/task.md +74 -0
- package/skills/gsd-path-research/SKILL.md +159 -0
- package/skills/gsd-path-research/agents/openai.yaml +6 -0
- package/skills/gsd-path-research/references/dispatch.md +131 -0
- package/skills/gsd-path-research/references/researcher.md +42 -0
- package/skills/gsd-path-research/scripts/_common.py +180 -0
- package/skills/gsd-path-research/scripts/check_handoffs.py +1855 -0
- package/skills/gsd-path-research/scripts/check_task_briefs.py +376 -0
- package/skills/gsd-path-research/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-research/scripts/isolation.py +3538 -0
- package/skills/gsd-path-research/scripts/pipeline_git.py +940 -0
- package/skills/gsd-path-research/scripts/pipeline_state.py +2291 -0
- package/skills/gsd-path-research/scripts/state_checkpoint.py +1039 -0
- package/skills/gsd-path-research/scripts/state_promote.py +743 -0
- package/skills/gsd-path-research/templates/evidence.md +24 -0
- package/skills/gsd-path-research/templates/research-handoff.md +25 -0
- package/skills/gsd-path-roadmap/SKILL.md +215 -0
- package/skills/gsd-path-roadmap/agents/openai.yaml +6 -0
- package/skills/gsd-path-roadmap/references/dispatch.md +131 -0
- package/skills/gsd-path-roadmap/references/roadmapper.md +48 -0
- package/skills/gsd-path-roadmap/scripts/_common.py +180 -0
- package/skills/gsd-path-roadmap/scripts/archive_milestone.py +2265 -0
- package/skills/gsd-path-roadmap/scripts/check_handoffs.py +1855 -0
- package/skills/gsd-path-roadmap/scripts/check_task_briefs.py +376 -0
- package/skills/gsd-path-roadmap/scripts/detect_project.py +1517 -0
- package/skills/gsd-path-roadmap/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-roadmap/scripts/discussion_validate.py +1321 -0
- package/skills/gsd-path-roadmap/scripts/integration.py +1433 -0
- package/skills/gsd-path-roadmap/scripts/isolation.py +3538 -0
- package/skills/gsd-path-roadmap/scripts/pipeline_git.py +940 -0
- package/skills/gsd-path-roadmap/scripts/pipeline_state.py +2291 -0
- package/skills/gsd-path-roadmap/scripts/promote_lookahead.py +415 -0
- package/skills/gsd-path-roadmap/scripts/review_panel.py +553 -0
- package/skills/gsd-path-roadmap/scripts/state_checkpoint.py +1039 -0
- package/skills/gsd-path-roadmap/scripts/state_promote.py +743 -0
- package/skills/gsd-path-roadmap/templates/roadmap.md +38 -0
- package/skills/gsd-path-ship/SKILL.md +412 -0
- package/skills/gsd-path-ship/agents/openai.yaml +6 -0
- package/skills/gsd-path-ship/references/dispatch.md +131 -0
- package/skills/gsd-path-ship/references/reviewer.md +188 -0
- package/skills/gsd-path-ship/scripts/_common.py +180 -0
- package/skills/gsd-path-ship/scripts/archive_milestone.py +2265 -0
- package/skills/gsd-path-ship/scripts/build_state.py +854 -0
- package/skills/gsd-path-ship/scripts/check_handoffs.py +1855 -0
- package/skills/gsd-path-ship/scripts/check_task_briefs.py +376 -0
- package/skills/gsd-path-ship/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-ship/scripts/discussion_validate.py +1321 -0
- package/skills/gsd-path-ship/scripts/integration.py +1433 -0
- package/skills/gsd-path-ship/scripts/isolation.py +3538 -0
- package/skills/gsd-path-ship/scripts/lean_verification.py +256 -0
- package/skills/gsd-path-ship/scripts/pipeline_git.py +940 -0
- package/skills/gsd-path-ship/scripts/pipeline_state.py +2291 -0
- package/skills/gsd-path-ship/scripts/review_panel.py +553 -0
- package/skills/gsd-path-ship/scripts/state_checkpoint.py +1039 -0
- package/skills/gsd-path-ship/scripts/state_promote.py +743 -0
- package/skills/gsd-path-ship/scripts/workflow_run.py +117 -0
- package/skills/gsd-path-ship/templates/archive-manifest.md +37 -0
- package/skills/gsd-path-ship/templates/final-review.md +27 -0
- package/skills/gsd-path-ship/templates/gap-review.md +20 -0
- package/skills/gsd-path-ship/templates/patch-findings.md +16 -0
- package/skills/gsd-path-ship/templates/wave-review.md +64 -0
- package/skills/gsd-path-undo/SKILL.md +45 -0
- package/skills/gsd-path-undo/agents/openai.yaml +6 -0
- package/skills/gsd-path-undo/scripts/_common.py +180 -0
- package/skills/gsd-path-undo/scripts/discussion_records.py +619 -0
- package/skills/gsd-path-undo/scripts/pipeline_undo.py +1039 -0
- package/skills/path/BUILD.md +700 -0
- package/skills/path/DECIDE.md +115 -0
- package/skills/path/DEFINE.md +297 -0
- package/skills/path/DOCS-AUDIT.md +190 -0
- package/skills/path/INSPECT.md +167 -0
- package/skills/path/PLAN.md +411 -0
- package/skills/path/RESEARCH.md +159 -0
- package/skills/path/ROADMAP.md +215 -0
- package/skills/path/SHIP.md +412 -0
- package/skills/path/SKILL.md +471 -0
- package/skills/path/agents/openai.yaml +6 -0
- package/skills/path/references/codebase-mapper.md +52 -0
- package/skills/path/references/coder.md +90 -0
- package/skills/path/references/decider.md +36 -0
- package/skills/path/references/dispatch.md +131 -0
- package/skills/path/references/docs-auditor.md +60 -0
- package/skills/path/references/planner.md +104 -0
- package/skills/path/references/researcher.md +42 -0
- package/skills/path/references/reviewer.md +188 -0
- package/skills/path/references/roadmapper.md +48 -0
- package/skills/path/scripts/_common.py +180 -0
- package/skills/path/scripts/archive_milestone.py +2265 -0
- package/skills/path/scripts/bootstrap_repository.py +710 -0
- package/skills/path/scripts/build_state.py +854 -0
- package/skills/path/scripts/check_docs_audit.py +463 -0
- package/skills/path/scripts/check_handoffs.py +1855 -0
- package/skills/path/scripts/check_task_briefs.py +376 -0
- package/skills/path/scripts/check_update.py +93 -0
- package/skills/path/scripts/detect_project.py +1517 -0
- package/skills/path/scripts/discussion_records.py +619 -0
- package/skills/path/scripts/discussion_validate.py +1321 -0
- package/skills/path/scripts/dispatch_driver.py +1812 -0
- package/skills/path/scripts/integration.py +1433 -0
- package/skills/path/scripts/isolation.py +3538 -0
- package/skills/path/scripts/lean_verification.py +256 -0
- package/skills/path/scripts/loop_run.py +837 -0
- package/skills/path/scripts/pipeline_git.py +940 -0
- package/skills/path/scripts/pipeline_state.py +2291 -0
- package/skills/path/scripts/promote_lookahead.py +415 -0
- package/skills/path/scripts/review_findings.py +714 -0
- package/skills/path/scripts/review_panel.py +553 -0
- package/skills/path/scripts/state_checkpoint.py +1039 -0
- package/skills/path/scripts/state_promote.py +743 -0
- package/skills/path/scripts/token_budget.py +146 -0
- package/skills/path/scripts/workflow_run.py +117 -0
- package/skills/path/templates/answers.md +29 -0
- package/skills/path/templates/archive-manifest.md +37 -0
- package/skills/path/templates/charter.md +50 -0
- package/skills/path/templates/codebase.md +46 -0
- package/skills/path/templates/dialogue.md +21 -0
- package/skills/path/templates/docs-audit.md +69 -0
- package/skills/path/templates/evidence.md +24 -0
- package/skills/path/templates/final-review.md +27 -0
- package/skills/path/templates/gap-review.md +20 -0
- package/skills/path/templates/intent.md +98 -0
- package/skills/path/templates/loop.md +59 -0
- package/skills/path/templates/patch-findings.md +16 -0
- package/skills/path/templates/plan-panel.md +25 -0
- package/skills/path/templates/plan.md +89 -0
- package/skills/path/templates/repository.md +16 -0
- package/skills/path/templates/research-handoff.md +25 -0
- package/skills/path/templates/roadmap.md +38 -0
- package/skills/path/templates/skeptic.md +36 -0
- package/skills/path/templates/state.md +27 -0
- package/skills/path/templates/synthesis.md +36 -0
- package/skills/path/templates/task.md +74 -0
- package/skills/path/templates/wave-panel.md +25 -0
- package/skills/path/templates/wave-review.md +64 -0
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
{
|
|
2
|
+
"hosts": {
|
|
3
|
+
"codex": {"local_root": ".agents/skills", "guard_tier": "git-only", "invocation_prefix": "$", "child_apis": ["collaboration.spawn_agent"]},
|
|
4
|
+
"claude": {"local_root": ".claude/skills", "guard_tier": "native-fail-closed", "child_apis": ["Agent"]},
|
|
5
|
+
"grok": {"local_root": ".grok/skills", "guard_tier": "git-only", "child_apis": ["spawn_subagent"]},
|
|
6
|
+
"opencode": {"local_root": ".opencode/skills", "guard_tier": "git-only", "child_apis": ["Task", "subagent"]},
|
|
7
|
+
"copilot": {"local_root": ".github/skills", "guard_tier": "git-only", "child_apis": ["task"]},
|
|
8
|
+
"qwen": {"local_root": ".qwen/skills", "guard_tier": "git-only", "child_apis": ["agent"]},
|
|
9
|
+
"antigravity": {"local_root": ".agents/skills", "guard_tier": "git-only", "invocation_prefix": "/", "child_apis": ["invoke_subagent"]},
|
|
10
|
+
"cursor": {"local_root": ".cursor/skills", "guard_tier": "native-fail-closed", "child_apis": ["Task"]},
|
|
11
|
+
"zed": {"local_root": ".agents/skills", "guard_tier": "git-only", "invocation_prefix": "/", "child_apis": ["spawn_agent"]},
|
|
12
|
+
"kiro": {"local_root": ".kiro/skills", "guard_tier": "git-only", "child_apis": ["invoke_sub_agent"]},
|
|
13
|
+
"kimi": {"local_root": ".kimi-code/skills", "guard_tier": "git-only", "child_apis": ["Agent"]}
|
|
14
|
+
},
|
|
15
|
+
"skills": [
|
|
16
|
+
"gsd-path",
|
|
17
|
+
"gsd-path-build",
|
|
18
|
+
"gsd-path-decide",
|
|
19
|
+
"gsd-path-define",
|
|
20
|
+
"gsd-path-discuss",
|
|
21
|
+
"gsd-path-docs-audit",
|
|
22
|
+
"gsd-path-forensics",
|
|
23
|
+
"gsd-path-inspect",
|
|
24
|
+
"gsd-path-loop",
|
|
25
|
+
"gsd-path-migrate",
|
|
26
|
+
"gsd-path-plan",
|
|
27
|
+
"gsd-path-research",
|
|
28
|
+
"gsd-path-roadmap",
|
|
29
|
+
"gsd-path-ship",
|
|
30
|
+
"gsd-path-undo",
|
|
31
|
+
"path"
|
|
32
|
+
],
|
|
33
|
+
"skill_aliases": {},
|
|
34
|
+
"router_aliases": {
|
|
35
|
+
"path": "gsd-path"
|
|
36
|
+
},
|
|
37
|
+
"package_files": [
|
|
38
|
+
"plugin.json",
|
|
39
|
+
"scripts/install.mjs",
|
|
40
|
+
"scripts/install.py",
|
|
41
|
+
"scripts/migrate_core.py",
|
|
42
|
+
"scripts/core_hook_gate.py",
|
|
43
|
+
"scripts/core_hook_settings.py",
|
|
44
|
+
"scripts/sync_skill_resources.py",
|
|
45
|
+
"scripts/wizard.mjs",
|
|
46
|
+
"scripts/skill-resources.json",
|
|
47
|
+
"scripts/_common.py",
|
|
48
|
+
"scripts/state_checkpoint.py",
|
|
49
|
+
"scripts/state_promote.py",
|
|
50
|
+
"scripts/discussion_validate.py",
|
|
51
|
+
"scripts/integration.py",
|
|
52
|
+
"scripts/archive_milestone.py",
|
|
53
|
+
"scripts/bootstrap_repository.py",
|
|
54
|
+
"scripts/detect_project.py",
|
|
55
|
+
"scripts/promote_lookahead.py",
|
|
56
|
+
"scripts/discussion_records.py",
|
|
57
|
+
"scripts/check_handoffs.py",
|
|
58
|
+
"scripts/check_docs_audit.py",
|
|
59
|
+
"scripts/check_task_briefs.py",
|
|
60
|
+
"scripts/review_panel.py",
|
|
61
|
+
"scripts/review_findings.py",
|
|
62
|
+
"scripts/check_update.py",
|
|
63
|
+
"scripts/guard_hook.py",
|
|
64
|
+
"scripts/git_guard.py",
|
|
65
|
+
"scripts/isolation.py",
|
|
66
|
+
"scripts/pipeline_git.py",
|
|
67
|
+
"scripts/pipeline_state.py",
|
|
68
|
+
"scripts/status_runtime.py",
|
|
69
|
+
"scripts/build_state.py",
|
|
70
|
+
"scripts/loop_run.py",
|
|
71
|
+
"scripts/workflow_run.py",
|
|
72
|
+
"scripts/dispatch_driver.py",
|
|
73
|
+
"scripts/lean_verification.py",
|
|
74
|
+
"scripts/token_budget.py",
|
|
75
|
+
"scripts/pipeline_undo.py",
|
|
76
|
+
"scripts/pipeline_diagnose.py",
|
|
77
|
+
"README.md",
|
|
78
|
+
"MIGRATE.md",
|
|
79
|
+
"RUNTIME.md",
|
|
80
|
+
"DOCS.md",
|
|
81
|
+
"HOOKS.md",
|
|
82
|
+
"QUICK.md",
|
|
83
|
+
"FULL.md",
|
|
84
|
+
"UPDATE.md",
|
|
85
|
+
"GUIDE.md",
|
|
86
|
+
"skills/",
|
|
87
|
+
"platforms/",
|
|
88
|
+
"AGENTS.md",
|
|
89
|
+
"WORKFLOW.md"
|
|
90
|
+
],
|
|
91
|
+
"phase_resources": {
|
|
92
|
+
"gsd-path-build": [
|
|
93
|
+
"references/coder.md",
|
|
94
|
+
"references/dispatch.md",
|
|
95
|
+
"references/reviewer.md",
|
|
96
|
+
"templates/task.md",
|
|
97
|
+
"templates/wave-review.md",
|
|
98
|
+
"templates/wave-panel.md",
|
|
99
|
+
"templates/skeptic.md"
|
|
100
|
+
],
|
|
101
|
+
"gsd-path-discuss": [
|
|
102
|
+
"templates/answers.md",
|
|
103
|
+
"templates/dialogue.md"
|
|
104
|
+
],
|
|
105
|
+
"gsd-path-docs-audit": [
|
|
106
|
+
"references/dispatch.md",
|
|
107
|
+
"references/docs-auditor.md",
|
|
108
|
+
"templates/docs-audit.md"
|
|
109
|
+
],
|
|
110
|
+
"gsd-path-define": [
|
|
111
|
+
"templates/charter.md",
|
|
112
|
+
"templates/intent.md",
|
|
113
|
+
"templates/state.md"
|
|
114
|
+
],
|
|
115
|
+
"gsd-path-inspect": [
|
|
116
|
+
"references/codebase-mapper.md",
|
|
117
|
+
"references/dispatch.md",
|
|
118
|
+
"references/docs-auditor.md",
|
|
119
|
+
"templates/codebase.md",
|
|
120
|
+
"templates/docs-audit.md",
|
|
121
|
+
"templates/state.md"
|
|
122
|
+
],
|
|
123
|
+
"gsd-path-forensics": [],
|
|
124
|
+
"gsd-path-migrate": [],
|
|
125
|
+
"gsd-path-loop": [
|
|
126
|
+
"templates/loop.md"
|
|
127
|
+
],
|
|
128
|
+
"gsd-path-plan": [
|
|
129
|
+
"references/dispatch.md",
|
|
130
|
+
"references/planner.md",
|
|
131
|
+
"templates/patch-findings.md",
|
|
132
|
+
"templates/plan.md",
|
|
133
|
+
"templates/plan-panel.md",
|
|
134
|
+
"templates/task.md"
|
|
135
|
+
],
|
|
136
|
+
"gsd-path-research": [
|
|
137
|
+
"references/dispatch.md",
|
|
138
|
+
"references/researcher.md",
|
|
139
|
+
"templates/evidence.md",
|
|
140
|
+
"templates/research-handoff.md"
|
|
141
|
+
],
|
|
142
|
+
"gsd-path-roadmap": [
|
|
143
|
+
"references/dispatch.md",
|
|
144
|
+
"references/roadmapper.md",
|
|
145
|
+
"templates/roadmap.md"
|
|
146
|
+
],
|
|
147
|
+
"gsd-path-ship": [
|
|
148
|
+
"references/dispatch.md",
|
|
149
|
+
"references/reviewer.md",
|
|
150
|
+
"templates/archive-manifest.md",
|
|
151
|
+
"templates/final-review.md",
|
|
152
|
+
"templates/gap-review.md",
|
|
153
|
+
"templates/patch-findings.md",
|
|
154
|
+
"templates/wave-review.md"
|
|
155
|
+
],
|
|
156
|
+
"gsd-path-decide": [
|
|
157
|
+
"references/dispatch.md",
|
|
158
|
+
"references/decider.md",
|
|
159
|
+
"templates/synthesis.md"
|
|
160
|
+
],
|
|
161
|
+
"gsd-path-undo": []
|
|
162
|
+
},
|
|
163
|
+
"script_targets": [
|
|
164
|
+
["scripts/migrate_core.py", "skills/gsd-path-migrate/scripts/migrate_core.py"],
|
|
165
|
+
["scripts/core_hook_gate.py", "skills/gsd-path-migrate/scripts/core_hook_gate.py"],
|
|
166
|
+
["scripts/core_hook_settings.py", "skills/gsd-path-migrate/scripts/core_hook_settings.py"],
|
|
167
|
+
["scripts/discussion_records.py", "skills/gsd-path-migrate/scripts/discussion_records.py"],
|
|
168
|
+
["scripts/_common.py", "skills/gsd-path/scripts/_common.py"],
|
|
169
|
+
["scripts/_common.py", "skills/gsd-path-build/scripts/_common.py"],
|
|
170
|
+
["scripts/_common.py", "skills/gsd-path-decide/scripts/_common.py"],
|
|
171
|
+
["scripts/_common.py", "skills/gsd-path-define/scripts/_common.py"],
|
|
172
|
+
["scripts/_common.py", "skills/gsd-path-discuss/scripts/_common.py"],
|
|
173
|
+
["scripts/_common.py", "skills/gsd-path-docs-audit/scripts/_common.py"],
|
|
174
|
+
["scripts/_common.py", "skills/gsd-path-forensics/scripts/_common.py"],
|
|
175
|
+
["scripts/_common.py", "skills/gsd-path-inspect/scripts/_common.py"],
|
|
176
|
+
["scripts/_common.py", "skills/gsd-path-loop/scripts/_common.py"],
|
|
177
|
+
["scripts/_common.py", "skills/gsd-path-plan/scripts/_common.py"],
|
|
178
|
+
["scripts/_common.py", "skills/gsd-path-research/scripts/_common.py"],
|
|
179
|
+
["scripts/_common.py", "skills/gsd-path-roadmap/scripts/_common.py"],
|
|
180
|
+
["scripts/_common.py", "skills/gsd-path-ship/scripts/_common.py"],
|
|
181
|
+
["scripts/_common.py", "skills/gsd-path-undo/scripts/_common.py"],
|
|
182
|
+
["scripts/archive_milestone.py", "skills/gsd-path/scripts/archive_milestone.py"],
|
|
183
|
+
["scripts/discussion_validate.py", "skills/gsd-path/scripts/discussion_validate.py"],
|
|
184
|
+
["scripts/integration.py", "skills/gsd-path/scripts/integration.py"],
|
|
185
|
+
["scripts/archive_milestone.py", "skills/gsd-path-build/scripts/archive_milestone.py"],
|
|
186
|
+
["scripts/discussion_validate.py", "skills/gsd-path-build/scripts/discussion_validate.py"],
|
|
187
|
+
["scripts/integration.py", "skills/gsd-path-build/scripts/integration.py"],
|
|
188
|
+
["scripts/archive_milestone.py", "skills/gsd-path-ship/scripts/archive_milestone.py"],
|
|
189
|
+
["scripts/discussion_validate.py", "skills/gsd-path-ship/scripts/discussion_validate.py"],
|
|
190
|
+
["scripts/integration.py", "skills/gsd-path-ship/scripts/integration.py"],
|
|
191
|
+
["scripts/bootstrap_repository.py", "skills/gsd-path/scripts/bootstrap_repository.py"],
|
|
192
|
+
["scripts/detect_project.py", "skills/gsd-path/scripts/detect_project.py"],
|
|
193
|
+
["scripts/detect_project.py", "skills/gsd-path-define/scripts/detect_project.py"],
|
|
194
|
+
["scripts/detect_project.py", "skills/gsd-path-inspect/scripts/detect_project.py"],
|
|
195
|
+
["scripts/promote_lookahead.py", "skills/gsd-path/scripts/promote_lookahead.py"],
|
|
196
|
+
["scripts/promote_lookahead.py", "skills/gsd-path-roadmap/scripts/promote_lookahead.py"],
|
|
197
|
+
["scripts/archive_milestone.py", "skills/gsd-path-roadmap/scripts/archive_milestone.py"],
|
|
198
|
+
["scripts/discussion_validate.py", "skills/gsd-path-roadmap/scripts/discussion_validate.py"],
|
|
199
|
+
["scripts/integration.py", "skills/gsd-path-roadmap/scripts/integration.py"],
|
|
200
|
+
["scripts/detect_project.py", "skills/gsd-path-roadmap/scripts/detect_project.py"],
|
|
201
|
+
["scripts/pipeline_git.py", "skills/gsd-path-roadmap/scripts/pipeline_git.py"],
|
|
202
|
+
["scripts/discussion_records.py", "skills/gsd-path/scripts/discussion_records.py"],
|
|
203
|
+
["scripts/discussion_records.py", "skills/gsd-path-build/scripts/discussion_records.py"],
|
|
204
|
+
["scripts/discussion_records.py", "skills/gsd-path-decide/scripts/discussion_records.py"],
|
|
205
|
+
["scripts/discussion_records.py", "skills/gsd-path-define/scripts/discussion_records.py"],
|
|
206
|
+
["scripts/discussion_records.py", "skills/gsd-path-discuss/scripts/discussion_records.py"],
|
|
207
|
+
["scripts/discussion_records.py", "skills/gsd-path-docs-audit/scripts/discussion_records.py"],
|
|
208
|
+
["scripts/discussion_records.py", "skills/gsd-path-inspect/scripts/discussion_records.py"],
|
|
209
|
+
["scripts/discussion_records.py", "skills/gsd-path-loop/scripts/discussion_records.py"],
|
|
210
|
+
["scripts/discussion_records.py", "skills/gsd-path-plan/scripts/discussion_records.py"],
|
|
211
|
+
["scripts/discussion_records.py", "skills/gsd-path-research/scripts/discussion_records.py"],
|
|
212
|
+
["scripts/discussion_records.py", "skills/gsd-path-roadmap/scripts/discussion_records.py"],
|
|
213
|
+
["scripts/discussion_records.py", "skills/gsd-path-ship/scripts/discussion_records.py"],
|
|
214
|
+
[
|
|
215
|
+
"scripts/check_docs_audit.py",
|
|
216
|
+
"skills/gsd-path/scripts/check_docs_audit.py"
|
|
217
|
+
],
|
|
218
|
+
[
|
|
219
|
+
"scripts/check_docs_audit.py",
|
|
220
|
+
"skills/gsd-path-docs-audit/scripts/check_docs_audit.py"
|
|
221
|
+
],
|
|
222
|
+
[
|
|
223
|
+
"scripts/check_docs_audit.py",
|
|
224
|
+
"skills/gsd-path-inspect/scripts/check_docs_audit.py"
|
|
225
|
+
],
|
|
226
|
+
["scripts/check_handoffs.py", "skills/gsd-path/scripts/check_handoffs.py"],
|
|
227
|
+
["scripts/check_handoffs.py", "skills/gsd-path-plan/scripts/check_handoffs.py"],
|
|
228
|
+
["scripts/check_handoffs.py", "skills/gsd-path-build/scripts/check_handoffs.py"],
|
|
229
|
+
["scripts/check_handoffs.py", "skills/gsd-path-research/scripts/check_handoffs.py"],
|
|
230
|
+
["scripts/check_handoffs.py", "skills/gsd-path-ship/scripts/check_handoffs.py"],
|
|
231
|
+
["scripts/check_handoffs.py", "skills/gsd-path-decide/scripts/check_handoffs.py"],
|
|
232
|
+
["scripts/check_handoffs.py", "skills/gsd-path-roadmap/scripts/check_handoffs.py"],
|
|
233
|
+
["scripts/check_handoffs.py", "skills/gsd-path-define/scripts/check_handoffs.py"],
|
|
234
|
+
["scripts/check_handoffs.py", "skills/gsd-path-inspect/scripts/check_handoffs.py"],
|
|
235
|
+
["scripts/check_handoffs.py", "skills/gsd-path-docs-audit/scripts/check_handoffs.py"],
|
|
236
|
+
["scripts/check_task_briefs.py", "skills/gsd-path/scripts/check_task_briefs.py"],
|
|
237
|
+
["scripts/check_task_briefs.py", "skills/gsd-path-plan/scripts/check_task_briefs.py"],
|
|
238
|
+
["scripts/check_task_briefs.py", "skills/gsd-path-roadmap/scripts/check_task_briefs.py"],
|
|
239
|
+
["scripts/check_task_briefs.py", "skills/gsd-path-research/scripts/check_task_briefs.py"],
|
|
240
|
+
["scripts/check_task_briefs.py", "skills/gsd-path-decide/scripts/check_task_briefs.py"],
|
|
241
|
+
["scripts/check_task_briefs.py", "skills/gsd-path-define/scripts/check_task_briefs.py"],
|
|
242
|
+
["scripts/check_task_briefs.py", "skills/gsd-path-inspect/scripts/check_task_briefs.py"],
|
|
243
|
+
["scripts/check_task_briefs.py", "skills/gsd-path-docs-audit/scripts/check_task_briefs.py"],
|
|
244
|
+
["scripts/check_task_briefs.py", "skills/gsd-path-build/scripts/check_task_briefs.py"],
|
|
245
|
+
["scripts/check_task_briefs.py", "skills/gsd-path-ship/scripts/check_task_briefs.py"],
|
|
246
|
+
["scripts/check_update.py", "skills/gsd-path/scripts/check_update.py"],
|
|
247
|
+
["scripts/review_panel.py", "skills/gsd-path/scripts/review_panel.py"],
|
|
248
|
+
["scripts/review_panel.py", "skills/gsd-path-plan/scripts/review_panel.py"],
|
|
249
|
+
["scripts/review_panel.py", "skills/gsd-path-build/scripts/review_panel.py"],
|
|
250
|
+
["scripts/review_panel.py", "skills/gsd-path-roadmap/scripts/review_panel.py"],
|
|
251
|
+
["scripts/review_panel.py", "skills/gsd-path-ship/scripts/review_panel.py"],
|
|
252
|
+
["scripts/review_findings.py", "skills/gsd-path/scripts/review_findings.py"],
|
|
253
|
+
["scripts/review_findings.py", "skills/gsd-path-build/scripts/review_findings.py"],
|
|
254
|
+
["scripts/loop_run.py", "skills/gsd-path-loop/scripts/loop_run.py"],
|
|
255
|
+
["scripts/loop_run.py", "skills/gsd-path/scripts/loop_run.py"],
|
|
256
|
+
["scripts/token_budget.py", "skills/gsd-path/scripts/token_budget.py"],
|
|
257
|
+
["scripts/token_budget.py", "skills/gsd-path-build/scripts/token_budget.py"],
|
|
258
|
+
["scripts/loop_run.py", "skills/gsd-path-build/scripts/loop_run.py"],
|
|
259
|
+
["scripts/workflow_run.py", "skills/gsd-path/scripts/workflow_run.py"],
|
|
260
|
+
["scripts/workflow_run.py", "skills/gsd-path-plan/scripts/workflow_run.py"],
|
|
261
|
+
["scripts/workflow_run.py", "skills/gsd-path-build/scripts/workflow_run.py"],
|
|
262
|
+
["scripts/dispatch_driver.py", "skills/gsd-path/scripts/dispatch_driver.py"],
|
|
263
|
+
["scripts/dispatch_driver.py", "skills/gsd-path-build/scripts/dispatch_driver.py"],
|
|
264
|
+
["scripts/workflow_run.py", "skills/gsd-path-ship/scripts/workflow_run.py"],
|
|
265
|
+
["scripts/lean_verification.py", "skills/gsd-path/scripts/lean_verification.py"],
|
|
266
|
+
["scripts/lean_verification.py", "skills/gsd-path-ship/scripts/lean_verification.py"],
|
|
267
|
+
["scripts/pipeline_undo.py", "skills/gsd-path-undo/scripts/pipeline_undo.py"],
|
|
268
|
+
["scripts/discussion_records.py", "skills/gsd-path-undo/scripts/discussion_records.py"],
|
|
269
|
+
["scripts/pipeline_diagnose.py", "skills/gsd-path-forensics/scripts/pipeline_diagnose.py"],
|
|
270
|
+
["scripts/pipeline_undo.py", "skills/gsd-path-forensics/scripts/pipeline_undo.py"],
|
|
271
|
+
["scripts/discussion_records.py", "skills/gsd-path-forensics/scripts/discussion_records.py"],
|
|
272
|
+
["scripts/isolation.py", "skills/gsd-path/scripts/isolation.py"],
|
|
273
|
+
["scripts/isolation.py", "skills/gsd-path-build/scripts/isolation.py"],
|
|
274
|
+
["scripts/isolation.py", "skills/gsd-path-inspect/scripts/isolation.py"],
|
|
275
|
+
["scripts/isolation.py", "skills/gsd-path-docs-audit/scripts/isolation.py"],
|
|
276
|
+
["scripts/isolation.py", "skills/gsd-path-ship/scripts/isolation.py"],
|
|
277
|
+
["scripts/isolation.py", "skills/gsd-path-plan/scripts/isolation.py"],
|
|
278
|
+
["scripts/isolation.py", "skills/gsd-path-roadmap/scripts/isolation.py"],
|
|
279
|
+
["scripts/isolation.py", "skills/gsd-path-research/scripts/isolation.py"],
|
|
280
|
+
["scripts/isolation.py", "skills/gsd-path-decide/scripts/isolation.py"],
|
|
281
|
+
["scripts/isolation.py", "skills/gsd-path-define/scripts/isolation.py"],
|
|
282
|
+
["scripts/pipeline_git.py", "skills/gsd-path/scripts/pipeline_git.py"],
|
|
283
|
+
["scripts/pipeline_git.py", "skills/gsd-path-build/scripts/pipeline_git.py"],
|
|
284
|
+
["scripts/pipeline_git.py", "skills/gsd-path-inspect/scripts/pipeline_git.py"],
|
|
285
|
+
["scripts/pipeline_git.py", "skills/gsd-path-docs-audit/scripts/pipeline_git.py"],
|
|
286
|
+
["scripts/pipeline_git.py", "skills/gsd-path-ship/scripts/pipeline_git.py"],
|
|
287
|
+
["scripts/pipeline_git.py", "skills/gsd-path-plan/scripts/pipeline_git.py"],
|
|
288
|
+
["scripts/pipeline_git.py", "skills/gsd-path-roadmap/scripts/pipeline_git.py"],
|
|
289
|
+
["scripts/pipeline_git.py", "skills/gsd-path-research/scripts/pipeline_git.py"],
|
|
290
|
+
["scripts/pipeline_git.py", "skills/gsd-path-decide/scripts/pipeline_git.py"],
|
|
291
|
+
["scripts/pipeline_git.py", "skills/gsd-path-define/scripts/pipeline_git.py"],
|
|
292
|
+
["scripts/pipeline_state.py", "skills/gsd-path/scripts/pipeline_state.py"],
|
|
293
|
+
["scripts/state_checkpoint.py", "skills/gsd-path/scripts/state_checkpoint.py"],
|
|
294
|
+
["scripts/state_promote.py", "skills/gsd-path/scripts/state_promote.py"],
|
|
295
|
+
["scripts/pipeline_state.py", "skills/gsd-path-build/scripts/pipeline_state.py"],
|
|
296
|
+
["scripts/state_checkpoint.py", "skills/gsd-path-build/scripts/state_checkpoint.py"],
|
|
297
|
+
["scripts/state_promote.py", "skills/gsd-path-build/scripts/state_promote.py"],
|
|
298
|
+
["scripts/pipeline_state.py", "skills/gsd-path-ship/scripts/pipeline_state.py"],
|
|
299
|
+
["scripts/state_checkpoint.py", "skills/gsd-path-ship/scripts/state_checkpoint.py"],
|
|
300
|
+
["scripts/state_promote.py", "skills/gsd-path-ship/scripts/state_promote.py"],
|
|
301
|
+
["scripts/pipeline_state.py", "skills/gsd-path-plan/scripts/pipeline_state.py"],
|
|
302
|
+
["scripts/state_checkpoint.py", "skills/gsd-path-plan/scripts/state_checkpoint.py"],
|
|
303
|
+
["scripts/state_promote.py", "skills/gsd-path-plan/scripts/state_promote.py"],
|
|
304
|
+
["scripts/pipeline_state.py", "skills/gsd-path-roadmap/scripts/pipeline_state.py"],
|
|
305
|
+
["scripts/state_checkpoint.py", "skills/gsd-path-roadmap/scripts/state_checkpoint.py"],
|
|
306
|
+
["scripts/state_promote.py", "skills/gsd-path-roadmap/scripts/state_promote.py"],
|
|
307
|
+
["scripts/pipeline_state.py", "skills/gsd-path-research/scripts/pipeline_state.py"],
|
|
308
|
+
["scripts/state_checkpoint.py", "skills/gsd-path-research/scripts/state_checkpoint.py"],
|
|
309
|
+
["scripts/state_promote.py", "skills/gsd-path-research/scripts/state_promote.py"],
|
|
310
|
+
["scripts/pipeline_state.py", "skills/gsd-path-decide/scripts/pipeline_state.py"],
|
|
311
|
+
["scripts/state_checkpoint.py", "skills/gsd-path-decide/scripts/state_checkpoint.py"],
|
|
312
|
+
["scripts/state_promote.py", "skills/gsd-path-decide/scripts/state_promote.py"],
|
|
313
|
+
["scripts/pipeline_state.py", "skills/gsd-path-define/scripts/pipeline_state.py"],
|
|
314
|
+
["scripts/state_checkpoint.py", "skills/gsd-path-define/scripts/state_checkpoint.py"],
|
|
315
|
+
["scripts/state_promote.py", "skills/gsd-path-define/scripts/state_promote.py"],
|
|
316
|
+
["scripts/pipeline_state.py", "skills/gsd-path-inspect/scripts/pipeline_state.py"],
|
|
317
|
+
["scripts/state_checkpoint.py", "skills/gsd-path-inspect/scripts/state_checkpoint.py"],
|
|
318
|
+
["scripts/state_promote.py", "skills/gsd-path-inspect/scripts/state_promote.py"],
|
|
319
|
+
["scripts/pipeline_state.py", "skills/gsd-path-docs-audit/scripts/pipeline_state.py"],
|
|
320
|
+
["scripts/state_checkpoint.py", "skills/gsd-path-docs-audit/scripts/state_checkpoint.py"],
|
|
321
|
+
["scripts/state_promote.py", "skills/gsd-path-docs-audit/scripts/state_promote.py"],
|
|
322
|
+
["scripts/build_state.py", "skills/gsd-path/scripts/build_state.py"],
|
|
323
|
+
["scripts/build_state.py", "skills/gsd-path-build/scripts/build_state.py"],
|
|
324
|
+
["scripts/build_state.py", "skills/gsd-path-ship/scripts/build_state.py"]
|
|
325
|
+
],
|
|
326
|
+
"phase_contract_targets": [
|
|
327
|
+
["skills/gsd-path-build/SKILL.md", "skills/gsd-path/BUILD.md"],
|
|
328
|
+
["skills/gsd-path-docs-audit/SKILL.md", "skills/gsd-path/DOCS-AUDIT.md"],
|
|
329
|
+
["skills/gsd-path-define/SKILL.md", "skills/gsd-path/DEFINE.md"],
|
|
330
|
+
["skills/gsd-path-inspect/SKILL.md", "skills/gsd-path/INSPECT.md"],
|
|
331
|
+
["skills/gsd-path-plan/SKILL.md", "skills/gsd-path/PLAN.md"],
|
|
332
|
+
["skills/gsd-path-research/SKILL.md", "skills/gsd-path/RESEARCH.md"],
|
|
333
|
+
["skills/gsd-path-roadmap/SKILL.md", "skills/gsd-path/ROADMAP.md"],
|
|
334
|
+
["skills/gsd-path-ship/SKILL.md", "skills/gsd-path/SHIP.md"],
|
|
335
|
+
["skills/gsd-path-decide/SKILL.md", "skills/gsd-path/DECIDE.md"]
|
|
336
|
+
],
|
|
337
|
+
"shared_dispatch_targets": [
|
|
338
|
+
["platforms/shared-agents/dispatch.md", "skills/gsd-path/references/dispatch.md"]
|
|
339
|
+
]
|
|
340
|
+
}
|