@trespies-source/dojo-genesis-plugin 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/CHANGELOG.md +30 -0
- package/LICENSE +21 -0
- package/README.md +204 -0
- package/dist/hooks/after-tool-call/handler.d.ts +4 -0
- package/dist/hooks/after-tool-call/handler.d.ts.map +1 -0
- package/dist/hooks/after-tool-call/handler.js +37 -0
- package/dist/hooks/after-tool-call/handler.js.map +1 -0
- package/dist/hooks/agent-end/handler.d.ts +4 -0
- package/dist/hooks/agent-end/handler.d.ts.map +1 -0
- package/dist/hooks/agent-end/handler.js +16 -0
- package/dist/hooks/agent-end/handler.js.map +1 -0
- package/dist/hooks/before-agent-start/handler.d.ts +4 -0
- package/dist/hooks/before-agent-start/handler.d.ts.map +1 -0
- package/dist/hooks/before-agent-start/handler.js +81 -0
- package/dist/hooks/before-agent-start/handler.js.map +1 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +35 -0
- package/dist/index.js.map +1 -0
- package/dist/src/commands/archive.d.ts +4 -0
- package/dist/src/commands/archive.d.ts.map +1 -0
- package/dist/src/commands/archive.js +20 -0
- package/dist/src/commands/archive.js.map +1 -0
- package/dist/src/commands/init.d.ts +4 -0
- package/dist/src/commands/init.d.ts.map +1 -0
- package/dist/src/commands/init.js +57 -0
- package/dist/src/commands/init.js.map +1 -0
- package/dist/src/commands/list.d.ts +4 -0
- package/dist/src/commands/list.d.ts.map +1 -0
- package/dist/src/commands/list.js +9 -0
- package/dist/src/commands/list.js.map +1 -0
- package/dist/src/commands/router.d.ts +3 -0
- package/dist/src/commands/router.d.ts.map +1 -0
- package/dist/src/commands/router.js +83 -0
- package/dist/src/commands/router.js.map +1 -0
- package/dist/src/commands/skill-invoke.d.ts +4 -0
- package/dist/src/commands/skill-invoke.d.ts.map +1 -0
- package/dist/src/commands/skill-invoke.js +26 -0
- package/dist/src/commands/skill-invoke.js.map +1 -0
- package/dist/src/commands/status.d.ts +4 -0
- package/dist/src/commands/status.d.ts.map +1 -0
- package/dist/src/commands/status.js +42 -0
- package/dist/src/commands/status.js.map +1 -0
- package/dist/src/commands/switch.d.ts +4 -0
- package/dist/src/commands/switch.d.ts.map +1 -0
- package/dist/src/commands/switch.js +20 -0
- package/dist/src/commands/switch.js.map +1 -0
- package/dist/src/orchestration/tool-registry.d.ts +18 -0
- package/dist/src/orchestration/tool-registry.d.ts.map +1 -0
- package/dist/src/orchestration/tool-registry.js +153 -0
- package/dist/src/orchestration/tool-registry.js.map +1 -0
- package/dist/src/skills/catalog.d.ts +9 -0
- package/dist/src/skills/catalog.d.ts.map +1 -0
- package/dist/src/skills/catalog.js +251 -0
- package/dist/src/skills/catalog.js.map +1 -0
- package/dist/src/state/manager.d.ts +19 -0
- package/dist/src/state/manager.d.ts.map +1 -0
- package/dist/src/state/manager.js +114 -0
- package/dist/src/state/manager.js.map +1 -0
- package/dist/src/state/migrations.d.ts +3 -0
- package/dist/src/state/migrations.d.ts.map +1 -0
- package/dist/src/state/migrations.js +8 -0
- package/dist/src/state/migrations.js.map +1 -0
- package/dist/src/state/types.d.ts +62 -0
- package/dist/src/state/types.d.ts.map +1 -0
- package/dist/src/state/types.js +2 -0
- package/dist/src/state/types.js.map +1 -0
- package/dist/src/ui/chat-formatter.d.ts +11 -0
- package/dist/src/ui/chat-formatter.d.ts.map +1 -0
- package/dist/src/ui/chat-formatter.js +39 -0
- package/dist/src/ui/chat-formatter.js.map +1 -0
- package/dist/src/utils/file-ops.d.ts +6 -0
- package/dist/src/utils/file-ops.d.ts.map +1 -0
- package/dist/src/utils/file-ops.js +38 -0
- package/dist/src/utils/file-ops.js.map +1 -0
- package/dist/src/utils/markdown.d.ts +2 -0
- package/dist/src/utils/markdown.d.ts.map +1 -0
- package/dist/src/utils/markdown.js +11 -0
- package/dist/src/utils/markdown.js.map +1 -0
- package/dist/src/utils/validation.d.ts +7 -0
- package/dist/src/utils/validation.d.ts.map +1 -0
- package/dist/src/utils/validation.js +29 -0
- package/dist/src/utils/validation.js.map +1 -0
- package/dist/tests/__mocks__/openclaw-types.d.ts +54 -0
- package/dist/tests/__mocks__/openclaw-types.d.ts.map +1 -0
- package/dist/tests/__mocks__/openclaw-types.js +29 -0
- package/dist/tests/__mocks__/openclaw-types.js.map +1 -0
- package/hooks/after-tool-call/HOOK.md +7 -0
- package/hooks/after-tool-call/handler.ts +41 -0
- package/hooks/agent-end/HOOK.md +7 -0
- package/hooks/agent-end/handler.ts +18 -0
- package/hooks/before-agent-start/HOOK.md +7 -0
- package/hooks/before-agent-start/handler.ts +133 -0
- package/openclaw.plugin.json +19 -0
- package/package.json +61 -0
- package/skills/agent-teaching/SKILL.md +583 -0
- package/skills/agent-teaching/claw.json +12 -0
- package/skills/compression-ritual/SKILL.md +136 -0
- package/skills/compression-ritual/claw.json +12 -0
- package/skills/context-ingestion/SKILL.md +109 -0
- package/skills/context-ingestion/claw.json +12 -0
- package/skills/decision-propagation/SKILL.md +130 -0
- package/skills/decision-propagation/claw.json +12 -0
- package/skills/documentation-audit/SKILL.md +146 -0
- package/skills/documentation-audit/claw.json +12 -0
- package/skills/era-architecture/SKILL.md +166 -0
- package/skills/era-architecture/claw.json +12 -0
- package/skills/file-management/SKILL.md +127 -0
- package/skills/file-management/claw.json +12 -0
- package/skills/frontend-from-backend/SKILL.md +127 -0
- package/skills/frontend-from-backend/claw.json +12 -0
- package/skills/handoff-protocol/SKILL.md +168 -0
- package/skills/handoff-protocol/claw.json +12 -0
- package/skills/health-audit/SKILL.md +123 -0
- package/skills/health-audit/claw.json +12 -0
- package/skills/implementation-prompt/SKILL.md +361 -0
- package/skills/implementation-prompt/claw.json +12 -0
- package/skills/iterative-scouting/SKILL.md +106 -0
- package/skills/iterative-scouting/claw.json +12 -0
- package/skills/memory-garden/SKILL.md +470 -0
- package/skills/memory-garden/claw.json +12 -0
- package/skills/multi-surface-strategy/SKILL.md +288 -0
- package/skills/multi-surface-strategy/claw.json +12 -0
- package/skills/parallel-tracks/SKILL.md +152 -0
- package/skills/parallel-tracks/claw.json +12 -0
- package/skills/patient-learning-protocol/SKILL.md +438 -0
- package/skills/patient-learning-protocol/claw.json +12 -0
- package/skills/planning-with-files/SKILL.md +139 -0
- package/skills/planning-with-files/claw.json +12 -0
- package/skills/pre-implementation-checklist/SKILL.md +156 -0
- package/skills/pre-implementation-checklist/claw.json +12 -0
- package/skills/process-extraction/SKILL.md +148 -0
- package/skills/process-extraction/claw.json +12 -0
- package/skills/process-extraction/references/process_example_template.md +40 -0
- package/skills/product-positioning/SKILL.md +293 -0
- package/skills/product-positioning/claw.json +12 -0
- package/skills/project-exploration/SKILL.md +168 -0
- package/skills/project-exploration/claw.json +12 -0
- package/skills/release-specification/SKILL.md +645 -0
- package/skills/release-specification/claw.json +12 -0
- package/skills/repo-context-sync/SKILL.md +362 -0
- package/skills/repo-context-sync/claw.json +12 -0
- package/skills/repo-context-sync/references/file_hierarchy_patterns.md +186 -0
- package/skills/repo-context-sync/references/zenflow_repo_patterns.md +328 -0
- package/skills/repo-context-sync/scripts/context_mapper.py +251 -0
- package/skills/repo-context-sync/scripts/diff_tracker.py +187 -0
- package/skills/repo-context-sync/scripts/smart_clone.sh +52 -0
- package/skills/repo-context-sync/templates/context_summary.md +58 -0
- package/skills/repo-status/SKILL.md +240 -0
- package/skills/repo-status/claw.json +12 -0
- package/skills/repo-status/references/semantic-clusters.md +159 -0
- package/skills/repo-status/references/status-template.md +214 -0
- package/skills/research-modes/SKILL.md +515 -0
- package/skills/research-modes/claw.json +12 -0
- package/skills/research-synthesis/SKILL.md +110 -0
- package/skills/research-synthesis/claw.json +12 -0
- package/skills/retrospective/SKILL.md +152 -0
- package/skills/retrospective/claw.json +12 -0
- package/skills/seed-extraction/SKILL.md +419 -0
- package/skills/seed-extraction/claw.json +12 -0
- package/skills/seed-library/SKILL.md +424 -0
- package/skills/seed-library/claw.json +12 -0
- package/skills/seed-library/references/seed_catalog.md +171 -0
- package/skills/seed-library/scripts/apply_seed.py +129 -0
- package/skills/seed-library/scripts/suggest_seeds.py +183 -0
- package/skills/seed-library/seeds/01_three_tiered_governance.md +90 -0
- package/skills/seed-library/seeds/02_harness_trace.md +135 -0
- package/skills/seed-library/seeds/03_context_iceberg.md +120 -0
- package/skills/seed-library/seeds/04_agent_connect.md +106 -0
- package/skills/seed-library/seeds/05_go_live_bundles.md +40 -0
- package/skills/seed-library/seeds/06_cost_guard.md +40 -0
- package/skills/seed-library/seeds/07_safety_switch.md +41 -0
- package/skills/seed-library/seeds/08_implicit_perspective_extraction.md +41 -0
- package/skills/seed-library/seeds/09_mode_based_complexity_gating.md +46 -0
- package/skills/seed-library/seeds/10_shared_infrastructure.md +75 -0
- package/skills/seed-library/seeds/11_voice_before_structure.md +74 -0
- package/skills/seed-library/seeds/12_pointer_directories.md +81 -0
- package/skills/seed-library/seeds/13_granular_visibility.md +82 -0
- package/skills/seed-library/seeds/meta_governance_multiplies_velocity.md +43 -0
- package/skills/seed-to-skill-converter/SKILL.md +113 -0
- package/skills/seed-to-skill-converter/claw.json +12 -0
- package/skills/semantic-clusters/SKILL.md +246 -0
- package/skills/semantic-clusters/claw.json +12 -0
- package/skills/semantic-clusters/references/verb-catalog.md +267 -0
- package/skills/skill-audit-upgrade/SKILL.md +427 -0
- package/skills/skill-audit-upgrade/claw.json +12 -0
- package/skills/skill-creation/LICENSE.txt +202 -0
- package/skills/skill-creation/SKILL.md +252 -0
- package/skills/skill-creation/claw.json +12 -0
- package/skills/skill-creation/references/output-patterns.md +82 -0
- package/skills/skill-creation/references/progressive-disclosure-patterns.md +79 -0
- package/skills/skill-creation/references/workflows.md +28 -0
- package/skills/skill-creation/scripts/init_skill.py +305 -0
- package/skills/skill-creation/scripts/quick_validate.py +134 -0
- package/skills/skill-maintenance/SKILL.md +413 -0
- package/skills/skill-maintenance/claw.json +12 -0
- package/skills/spec-constellation-to-prompt-suite/SKILL.md +174 -0
- package/skills/spec-constellation-to-prompt-suite/claw.json +12 -0
- package/skills/status-template/SKILL.md +211 -0
- package/skills/status-template/claw.json +12 -0
- package/skills/status-template/references/complete-template.md +191 -0
- package/skills/status-writing/SKILL.md +161 -0
- package/skills/status-writing/claw.json +12 -0
- package/skills/strategic-scout/SKILL.md +163 -0
- package/skills/strategic-scout/claw.json +12 -0
- package/skills/strategic-to-tactical-workflow/SKILL.md +391 -0
- package/skills/strategic-to-tactical-workflow/claw.json +12 -0
- package/skills/workspace-navigation/SKILL.md +622 -0
- package/skills/workspace-navigation/claw.json +12 -0
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: health-audit
|
|
3
|
+
description: Conduct comprehensive health audits on software repositories, generating actionable engineering tasks and permanent audit trails. Use when you need a repo health check, want to identify technical debt and blockers, are onboarding to a new codebase, or need a baseline assessment before major work. Trigger phrases: 'audit this repo', 'is this codebase healthy', 'what are the health issues', 'run a full health check', 'identify blockers and debt'.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
> **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run health-audit`.
|
|
7
|
+
> The agent receives project context automatically via the `before_agent_start` hook.
|
|
8
|
+
> Use `dojo_get_context` for full state, `dojo_save_artifact` to persist outputs,
|
|
9
|
+
> and `dojo_update_state` to record phase transitions and decisions.
|
|
10
|
+
|
|
11
|
+
# Health Supervisor Skill
|
|
12
|
+
|
|
13
|
+
**Version:** 1.0
|
|
14
|
+
**Created:** 2026-02-04
|
|
15
|
+
**Author:** Kaida 🌊 (Health Supervisor Agent)
|
|
16
|
+
**Purpose:** To provide a structured, repeatable methodology for supervising the health of software repositories, balancing deep, philosophical understanding with rigorous, actionable engineering.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## I. The Philosophy: Tending the Garden
|
|
21
|
+
|
|
22
|
+
Health is not merely the absence of bugs; it is the **presence of practices** that ensure security, sustainability, and alignment with a project's core purpose. A Health Supervisor is a gardener, not a mechanic. The role is to tend the ecosystem, protect the conditions for growth, and ensure the space can fulfill its intended purpose, whether that is for work (a dojo) or for rest (an onsen).
|
|
23
|
+
|
|
24
|
+
This skill codifies a workflow that moves from deep listening to decisive action, ensuring that every intervention is both contextually aware and technically precise. It creates a permanent, auditable trail of health assessments and corrective actions, enabling collaboration with local implementation agents (Zenflow, Claude Code, etc.).
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## II. When to Use This Skill
|
|
29
|
+
|
|
30
|
+
- **As a scheduled, recurring task:** (e.g., on the first day of each month) to maintain a regular cadence of health monitoring for critical repositories.
|
|
31
|
+
- **When onboarding to a new set of repositories:** To establish a baseline health assessment.
|
|
32
|
+
- **After a major release or architectural change:** To audit the impact on the system's overall health.
|
|
33
|
+
- **When a project feels "at risk" due to technical debt or process gaps.**
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## III. The Health Supervision Workflow
|
|
38
|
+
|
|
39
|
+
This workflow is a structured process that ensures every health audit is thorough, actionable, and recorded.
|
|
40
|
+
|
|
41
|
+
### Phase 1: Grounding & Philosophy
|
|
42
|
+
|
|
43
|
+
**Objective:** Understand what the repository is *for* before evaluating how well it works.
|
|
44
|
+
|
|
45
|
+
1. **Clone & Map:** Use the `repo-context-sync` skill to clone the target repositories and generate initial context maps.
|
|
46
|
+
2. **Deep Reading:** Read the core philosophy, architecture, and purpose documents (`README.md`, `PHILOSOPHY.md`, `ARCHITECTURE.md`, etc.). Understand the project's lineage and intent.
|
|
47
|
+
3. **Embody the Role:** For the duration of the audit, hold the project's purpose as the primary lens through which all technical details are viewed.
|
|
48
|
+
|
|
49
|
+
### Phase 2: Health Audit & Logging
|
|
50
|
+
|
|
51
|
+
**Objective:** Systematically assess the repository's health and create a permanent record of the findings.
|
|
52
|
+
|
|
53
|
+
1. **Create Audit Directory:** Following the `file-management` skill, ensure an `docs/audits/` directory exists. If not, create it.
|
|
54
|
+
2. **Create Audit Log:** For each repository, create a new audit log file named `docs/audits/YYYY-MM-DD_health_audit.md`.
|
|
55
|
+
3. **Conduct Assessment:** Use the **Health Assessment Framework** to review the codebase:
|
|
56
|
+
- **Critical Issues:** Blockers, build failures, critical dependency vulnerabilities.
|
|
57
|
+
- **Security Issues:** Encryption gaps, secret management flaws, authentication vulnerabilities.
|
|
58
|
+
- **Sustainability Issues:** Technical debt, manual processes, documentation drift, testing gaps, paused development.
|
|
59
|
+
4. **Log Findings:** Use the `documentation-audit` log template as a base, but expand it to include the broader health categories. For each finding, document the issue, severity, impact, and a placeholder for the corresponding implementation commission.
|
|
60
|
+
|
|
61
|
+
### Phase 3: Generate Actionable Commissions
|
|
62
|
+
|
|
63
|
+
**Objective:** Translate audit findings into clear, specific, and executable engineering tasks for implementation agents.
|
|
64
|
+
|
|
65
|
+
1. **Use the Implementation Prompt Writer:** For each repository's set of findings, create a single, consolidated implementation prompt using the `write-implementation-prompt` skill.
|
|
66
|
+
2. **Structure the Prompt:** The prompt should be a
|
|
67
|
+
cohesive "health sprint" that addresses the highest priority issues.
|
|
68
|
+
3. **Be Ruthlessly Specific:** The prompt must contain:
|
|
69
|
+
- A clear objective.
|
|
70
|
+
- Links to the audit log and other grounding documents.
|
|
71
|
+
- Specific file paths, code snippets, and commands.
|
|
72
|
+
- A complete file manifest (files to create/modify).
|
|
73
|
+
- Binary, testable success criteria.
|
|
74
|
+
- Explicit constraints and non-goals.
|
|
75
|
+
4. **Place the Prompt:** Store the generated prompt in the repository itself, under a `prompts/` directory, following the `file-management` skill.
|
|
76
|
+
|
|
77
|
+
### Phase 4: Summarize & Deliver
|
|
78
|
+
|
|
79
|
+
**Objective:** Provide a high-level executive summary and deliver all artifacts.
|
|
80
|
+
|
|
81
|
+
1. **Write Executive Summary:** Create a single, top-level summary document that explains the overall findings and links to the detailed audit logs and implementation commissions in each repository.
|
|
82
|
+
2. **Deliver Artifacts:** Use the `message` tool to deliver the executive summary and attach all created files (audit logs and implementation prompts) for user review and execution.
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
## IV. Core Health Assessment Framework
|
|
87
|
+
|
|
88
|
+
When performing the audit in Phase 2, use this framework to categorize findings.
|
|
89
|
+
|
|
90
|
+
| Category | Areas to Investigate |
|
|
91
|
+
| :--- | :--- |
|
|
92
|
+
| **Critical Issues** | - Is the project buildable? (`npm run build`, `go build`)
|
|
93
|
+
- Are there critical dependency vulnerabilities (`npm audit --critical`)?
|
|
94
|
+
- Is the main branch in a broken state? |
|
|
95
|
+
| **Security** | - Is sensitive data encrypted at rest?
|
|
96
|
+
- Are secrets managed securely (e.g., not hardcoded)?
|
|
97
|
+
- Is authentication/authorization implemented correctly? |
|
|
98
|
+
| **Sustainability** | - **Testing:** Is there a testing framework? Is coverage adequate?
|
|
99
|
+
- **CI/CD:** Are tests and builds automated? Is the pipeline reliable?
|
|
100
|
+
- **Technical Debt:** Is there significant code complexity, duplication, or outdated patterns?
|
|
101
|
+
- **Manual Processes:** Are there manual steps required for setup, testing, or deployment?
|
|
102
|
+
- **Documentation:** Is it accurate, complete, and up-to-date? |
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## V. Best Practices
|
|
107
|
+
|
|
108
|
+
- **Balance is Key:** The goal is not to be overly spiritual or purely mechanical. It is to hold both the philosophical purpose and the engineering reality in balance. The output should be empathetic in tone but rigorous in detail.
|
|
109
|
+
- **Audit Trail is Non-Negotiable:** Every health assessment *must* result in a committed audit log in the repository. This creates a permanent, traceable history of the project's health.
|
|
110
|
+
- **Commissions, Not Commands:** Frame implementation prompts as well-specified commissions. Provide all the context and detail the agent needs to succeed autonomously.
|
|
111
|
+
- **One Sprint per Repo:** Consolidate findings for a single repository into a single, cohesive health sprint prompt. This provides a focused, achievable goal for the implementation agent.
|
|
112
|
+
- **Close the Loop:** After the implementation agent completes a health sprint, a follow-up audit should be scheduled to verify that the success criteria were met and the health issues are resolved.
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## OpenClaw Tool Integration
|
|
116
|
+
|
|
117
|
+
When running inside the Dojo Genesis plugin:
|
|
118
|
+
|
|
119
|
+
1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
|
|
120
|
+
2. **During** the skill, follow the workflow steps documented above
|
|
121
|
+
3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
|
|
122
|
+
4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
|
|
123
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dojo-genesis-plugin-health-audit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Comprehensive repository health check",
|
|
5
|
+
"author": "dojo-genesis",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"permissions": [],
|
|
8
|
+
"entry": "SKILL.md",
|
|
9
|
+
"tags": ["dojo-genesis", "orchestration", "research", "analysis"],
|
|
10
|
+
"models": ["claude-*", "gpt-*", "gemini-*"],
|
|
11
|
+
"minOpenClawVersion": "2026.1.0"
|
|
12
|
+
}
|
|
@@ -0,0 +1,361 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: implementation-prompt
|
|
3
|
+
description: Transform specifications into structured implementation prompts for autonomous execution. Use when preparing to commission agents or converting specs into execution-ready prompts. Trigger phrases: 'write implementation prompt', 'commission this spec', 'convert spec to prompt', 'prepare for implementation', 'create the execution plan'.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Transform Spec to Implementation Prompt Skill
|
|
7
|
+
|
|
8
|
+
> **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo commission` or `/dojo run implementation-prompt`.
|
|
9
|
+
> The agent receives project context automatically via the `before_agent_start` hook.
|
|
10
|
+
> Use `dojo_get_context` for full state, `dojo_save_artifact` to persist outputs,
|
|
11
|
+
> and `dojo_update_state` to record phase transitions and decisions.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## I. The Philosophy: From Vision to Execution
|
|
16
|
+
|
|
17
|
+
A specification describes **what** should be built and **why**. An implementation prompt describes **how** to build it, **where** to build it, and **what success looks like**. The gap between these two documents is where implementation clarity lives or dies.
|
|
18
|
+
|
|
19
|
+
This skill bridges that gap by providing a systematic process for transforming high-level specifications into execution-ready implementation prompts. The result is a prompt that gives the implementation agent everything it needs to work autonomously: context, requirements, file paths, success criteria, and explicit boundaries.
|
|
20
|
+
|
|
21
|
+
This skill builds on the foundational `write-implementation-prompt` skill but adds the critical step of **specification grounding**—ensuring that every prompt is deeply connected to both the strategic vision (the spec) and the technical reality (the backend architecture and existing codebase).
|
|
22
|
+
|
|
23
|
+
**Core Insight:** A well-written implementation prompt is an act of translation. You are translating strategic intent into tactical execution, abstract vision into concrete file paths, and implicit knowledge into explicit instructions.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## II. When to Use This Skill
|
|
28
|
+
|
|
29
|
+
- **After completing a comprehensive specification document** (architectural or feature-level)
|
|
30
|
+
- **When preparing to commission implementation agents (Zenflow, Claude Code, etc.)** for implementation work
|
|
31
|
+
- **When breaking down a large specification** into parallel tracks or sequential chunks
|
|
32
|
+
- **After completing backend grounding** (see `frontend-from-backend` skill)
|
|
33
|
+
- **During Phase 7 of the strategic-to-tactical workflow** (Write Implementation Prompts & Commission)
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## III. The Workflow
|
|
38
|
+
|
|
39
|
+
This is a 6-step workflow for transforming a specification into implementation prompts.
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
### **Step 1: Validate Specification Readiness**
|
|
44
|
+
|
|
45
|
+
**Goal:** Ensure the specification is complete and implementation-ready before writing prompts.
|
|
46
|
+
|
|
47
|
+
**When:** Before starting any prompt writing.
|
|
48
|
+
|
|
49
|
+
**Actions:**
|
|
50
|
+
1. Verify the specification has passed the `pre-implementation-checklist` (if applicable)
|
|
51
|
+
2. Confirm backend grounding is complete (API contracts, data models, integration points)
|
|
52
|
+
3. Check that all architectural decisions are documented
|
|
53
|
+
4. Verify there are no missing dependencies or unclear requirements
|
|
54
|
+
5. Identify if the work should be split into multiple tracks or sequential chunks
|
|
55
|
+
|
|
56
|
+
**Output:** A validated specification and a decision on track structure (single prompt vs. multiple parallel tracks).
|
|
57
|
+
|
|
58
|
+
**Key Insight:** Never write an implementation prompt from an incomplete specification. The prompt quality is directly determined by the specification quality.
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
### **Step 2: Identify Track Boundaries (If Applicable)**
|
|
63
|
+
|
|
64
|
+
**Goal:** If the specification is large, identify which track this prompt addresses and what its boundaries are.
|
|
65
|
+
|
|
66
|
+
**When:** After validating the specification, if it covers multiple tracks.
|
|
67
|
+
|
|
68
|
+
**Actions:**
|
|
69
|
+
1. Review the parallel tracks decomposition (if applicable)
|
|
70
|
+
2. Identify the scope of THIS track:
|
|
71
|
+
- What components/features does it include?
|
|
72
|
+
- What does it explicitly NOT include?
|
|
73
|
+
3. Confirm track dependencies:
|
|
74
|
+
- What must be complete before this track can start?
|
|
75
|
+
- What will other tracks depend on from this track?
|
|
76
|
+
4. Verify track integration points:
|
|
77
|
+
- What props, APIs, state shapes will this track produce?
|
|
78
|
+
- What will this track consume from other tracks?
|
|
79
|
+
|
|
80
|
+
**Output:** Clear understanding of track scope, boundaries, and integration points.
|
|
81
|
+
|
|
82
|
+
**Key Insight:** When working with parallel tracks, be crystal clear about what THIS track does and doesn't do. Explicit non-goals prevent scope creep.
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
### **Step 3: Ground in the Codebase**
|
|
87
|
+
|
|
88
|
+
**Goal:** Identify specific files, patterns, and integration points in the existing codebase that this track will use or modify.
|
|
89
|
+
|
|
90
|
+
**When:** After understanding track boundaries, before writing the prompt.
|
|
91
|
+
|
|
92
|
+
**Actions:**
|
|
93
|
+
1. **Identify Pattern Files:** Find 2-3 existing files that demonstrate the desired structure, style, and patterns
|
|
94
|
+
- For frontend: existing components, layouts, contexts
|
|
95
|
+
- For backend: existing handlers, middleware, API endpoints
|
|
96
|
+
2. **List Files to Read/Modify:** Enumerate all files that will be touched by this track
|
|
97
|
+
3. **Identify Files to Create:** List new files that will be created
|
|
98
|
+
4. **Map Integration Points:** Define the props, APIs, state shapes, and context that this track will consume or produce
|
|
99
|
+
5. **Reference Backend Grounding:** Link to the backend integration guide for API contracts and data models
|
|
100
|
+
|
|
101
|
+
**Output:** A complete "Context & Grounding" section for the prompt.
|
|
102
|
+
|
|
103
|
+
**Key Insight:** Pattern files are force multipliers. Implementation agents work best when you point it to existing examples of the desired structure and style.
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
### **Step 4: Write the Prompt Using the Template**
|
|
108
|
+
|
|
109
|
+
**Goal:** Transform the specification into a structured implementation prompt using the standard 6-section template.
|
|
110
|
+
|
|
111
|
+
**When:** After grounding in the codebase.
|
|
112
|
+
|
|
113
|
+
**Template Structure:**
|
|
114
|
+
|
|
115
|
+
```markdown
|
|
116
|
+
# Implementation Commission: [Track Name or Feature Name]
|
|
117
|
+
|
|
118
|
+
**Objective:** [One sentence describing the goal of this track/prompt]
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## 1. Context & Grounding
|
|
123
|
+
|
|
124
|
+
**Primary Specification:**
|
|
125
|
+
- `docs/[version]/[spec_file].md`
|
|
126
|
+
|
|
127
|
+
**Pattern Files (Follow these examples):**
|
|
128
|
+
- `[path/to/pattern_file_1]`: Use this for [specific pattern, e.g., component structure]
|
|
129
|
+
- `[path/to/pattern_file_2]`: Use this for [specific pattern, e.g., API endpoint structure]
|
|
130
|
+
|
|
131
|
+
**Files to Read/Modify:**
|
|
132
|
+
- [List all files that will be touched]
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
## 2. Detailed Requirements
|
|
137
|
+
|
|
138
|
+
[Step-by-step, numbered requirements. Be ruthlessly specific.]
|
|
139
|
+
|
|
140
|
+
1. [Requirement 1]
|
|
141
|
+
2. [Requirement 2]
|
|
142
|
+
3. [Requirement 3]
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
## 3. File Manifest
|
|
147
|
+
|
|
148
|
+
**Create:**
|
|
149
|
+
- `[path/to/new_file_1]`
|
|
150
|
+
- `[path/to/new_file_2]`
|
|
151
|
+
|
|
152
|
+
**Modify:**
|
|
153
|
+
- `[path/to/existing_file_1]`
|
|
154
|
+
- `[path/to/existing_file_2]`
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
## 4. Success Criteria
|
|
159
|
+
|
|
160
|
+
- [ ] [Binary, testable criterion 1]
|
|
161
|
+
- [ ] [Binary, testable criterion 2]
|
|
162
|
+
- [ ] [Binary, testable criterion 3]
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
## 5. Constraints & Non-Goals
|
|
167
|
+
|
|
168
|
+
- **DO NOT** [Explicit boundary 1]
|
|
169
|
+
- **DO NOT** [Explicit boundary 2]
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
## 6. Backend Grounding
|
|
174
|
+
|
|
175
|
+
- **Backend Integration Guide:** `docs/[version]/backend_integration_guide.md`
|
|
176
|
+
- **API Endpoints Used:** [List specific endpoints this track will call]
|
|
177
|
+
- **Data Models:** [List TypeScript interfaces or Go structs this track will use]
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
**Actions:**
|
|
181
|
+
1. Fill out each section systematically
|
|
182
|
+
2. Ensure requirements are step-by-step and specific
|
|
183
|
+
3. Make success criteria binary (yes/no, no ambiguity)
|
|
184
|
+
4. Explicitly state what NOT to do in constraints
|
|
185
|
+
5. Keep the objective to a single, clear sentence
|
|
186
|
+
6. Reference backend grounding even if not calling APIs yet
|
|
187
|
+
|
|
188
|
+
**Output:** A complete implementation prompt document.
|
|
189
|
+
|
|
190
|
+
**Key Insight:** The 6-section template ensures nothing is forgotten. Each section serves a specific purpose in enabling autonomous execution.
|
|
191
|
+
|
|
192
|
+
---
|
|
193
|
+
|
|
194
|
+
### **Step 5: Validate the Prompt**
|
|
195
|
+
|
|
196
|
+
**Goal:** Ensure the prompt is complete, clear, and ready for execution.
|
|
197
|
+
|
|
198
|
+
**When:** After writing the prompt, before commissioning.
|
|
199
|
+
|
|
200
|
+
**Quality Checklist:**
|
|
201
|
+
- [ ] Is the Objective a single, clear sentence?
|
|
202
|
+
- [ ] Is the link to the specification correct and complete?
|
|
203
|
+
- [ ] Are there at least 1-2 relevant Pattern Files listed with explanations of what to learn from each?
|
|
204
|
+
- [ ] Are the Requirements specific, step-by-step, and unambiguous?
|
|
205
|
+
- [ ] Is the File Manifest complete and accurate (all files to create/modify listed)?
|
|
206
|
+
- [ ] Are the Success Criteria binary and testable (yes/no, no subjective judgment)?
|
|
207
|
+
- [ ] Are the Constraints clear about what *not* to do?
|
|
208
|
+
- [ ] Does the prompt reference the backend grounding document?
|
|
209
|
+
- [ ] If this is part of a parallel track structure, are dependencies and integration points clearly defined?
|
|
210
|
+
- [ ] Is the prompt self-contained (can the implementation agent execute without asking clarifying questions)?
|
|
211
|
+
|
|
212
|
+
**Output:** A validated, execution-ready implementation prompt.
|
|
213
|
+
|
|
214
|
+
**Key Insight:** The quality checklist catches gaps before commissioning. A prompt that passes the checklist has a much higher success rate.
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
### **Step 6: Commission and Monitor**
|
|
219
|
+
|
|
220
|
+
**Goal:** Commission the prompt to the appropriate agent and monitor progress.
|
|
221
|
+
|
|
222
|
+
**When:** After validation is complete.
|
|
223
|
+
|
|
224
|
+
**Actions:**
|
|
225
|
+
1. Save the prompt to the appropriate location (e.g., `docs/v0.0.X/track_N_implementation_prompt.md`)
|
|
226
|
+
2. Commission to the appropriate agent:
|
|
227
|
+
- **Zenflow:** Strategic implementation (architecture, complex features)
|
|
228
|
+
- **Claude Code:** Tactical implementation (UI components, refactoring)
|
|
229
|
+
3. Monitor progress through success criteria
|
|
230
|
+
4. If parallel tracks, verify completion before commissioning dependent tracks
|
|
231
|
+
|
|
232
|
+
**Output:** Commissioned work in progress, with clear success criteria for verification.
|
|
233
|
+
|
|
234
|
+
**Key Insight:** A well-written prompt enables autonomous execution. The agent should complete the work without needing clarification or back-and-forth.
|
|
235
|
+
|
|
236
|
+
---
|
|
237
|
+
|
|
238
|
+
## IV. Best Practices
|
|
239
|
+
|
|
240
|
+
### From Specification to Prompt: The Translation
|
|
241
|
+
|
|
242
|
+
The specification describes the **what** and **why**. The prompt describes the **how** and **where**. Your job is to translate strategic intent into tactical execution.
|
|
243
|
+
|
|
244
|
+
**Example Transformation:**
|
|
245
|
+
|
|
246
|
+
**Specification says:**
|
|
247
|
+
> "The desktop shell should have a three-column layout with two collapsible sidebars."
|
|
248
|
+
|
|
249
|
+
**Prompt says:**
|
|
250
|
+
> "Create a new component at `frontend/src/app/desktop/components/DesktopShell.tsx`. Use a CSS Grid layout with three columns: 240px (sidebar 1), 200px (sidebar 2), and 1fr (main content). Add local state for `sidebar1Collapsed` and `sidebar2Collapsed` using `useState`. Follow the layout pattern in `frontend/src/app/layout.tsx`."
|
|
251
|
+
|
|
252
|
+
### Pattern Files are Force Multipliers
|
|
253
|
+
|
|
254
|
+
Pointing the implementation agent to 2-3 existing files that demonstrate the desired structure and style is more effective than writing detailed style guides. Implementation agents learn by example.
|
|
255
|
+
|
|
256
|
+
**Good:** "Follow the component structure in `src/components/Header.tsx`"
|
|
257
|
+
**Bad:** "Use functional components with TypeScript, export as default, use Tailwind for styling..."
|
|
258
|
+
|
|
259
|
+
### The File Manifest Prevents Surprises
|
|
260
|
+
|
|
261
|
+
Explicitly listing every file to be created or modified sets clear expectations and makes it easy to verify completion. It also helps identify potential merge conflicts in parallel tracks.
|
|
262
|
+
|
|
263
|
+
### Success Criteria Must Be Binary
|
|
264
|
+
|
|
265
|
+
Success criteria must be answerable with yes or no, with no subjective judgment.
|
|
266
|
+
|
|
267
|
+
**Good:** "The component renders at the /desktop route"
|
|
268
|
+
**Bad:** "The component should look good"
|
|
269
|
+
|
|
270
|
+
### Constraints Prevent Scope Creep
|
|
271
|
+
|
|
272
|
+
Explicitly stating what NOT to do is as important as stating what to do. This prevents the implementation agent from "helpfully" implementing adjacent features that belong in other tracks.
|
|
273
|
+
|
|
274
|
+
**Example:** "DO NOT implement the sidebar content. This is only the shell."
|
|
275
|
+
|
|
276
|
+
### Backend Grounding Even When Not Calling APIs
|
|
277
|
+
|
|
278
|
+
Even if a track doesn't call backend APIs yet, reference the backend grounding document. This ensures the implementation agent understands future integration points and doesn't make decisions that would conflict with the backend architecture.
|
|
279
|
+
|
|
280
|
+
---
|
|
281
|
+
|
|
282
|
+
## V. Example: v0.0.31 Track 1
|
|
283
|
+
|
|
284
|
+
**Specification:** `docs/v0.0.31/v0_0_31_desktop_architecture.md`
|
|
285
|
+
|
|
286
|
+
**Prompt:** `docs/v0.0.31/v0_0_31_track_1_implementation_prompt.md`
|
|
287
|
+
|
|
288
|
+
**Key Elements:**
|
|
289
|
+
- **Objective:** "Replace Next.js router with React Router and create the main `DesktopShell` component"
|
|
290
|
+
- **Pattern Files:**
|
|
291
|
+
- `frontend/src/app/layout.tsx` (for provider setup)
|
|
292
|
+
- `frontend/src/app/desktop/page.tsx` (for entry point)
|
|
293
|
+
- **Requirements:** 5 numbered, specific steps (install React Router, create router config, wrap app, create shell, update page)
|
|
294
|
+
- **File Manifest:** 2 files to create, 3 files to modify
|
|
295
|
+
- **Success Criteria:** 5 binary checkboxes
|
|
296
|
+
- **Constraints:** "DO NOT implement sidebar or main content area content"
|
|
297
|
+
- **Backend Grounding:** "No direct backend integration. Refer to backend integration guide for future tracks."
|
|
298
|
+
|
|
299
|
+
**Outcome:** Claude Code completed Track 1 autonomously without clarification, enabling Tracks 2-4 to start in parallel.
|
|
300
|
+
|
|
301
|
+
---
|
|
302
|
+
|
|
303
|
+
## VI. Quality Checklist
|
|
304
|
+
|
|
305
|
+
Before commissioning the prompt, ensure you can answer "yes" to all of the following:
|
|
306
|
+
|
|
307
|
+
- [ ] Have you validated that the specification is complete and implementation-ready?
|
|
308
|
+
- [ ] Have you identified track boundaries (if applicable) and integration points?
|
|
309
|
+
- [ ] Have you grounded the prompt in the existing codebase with pattern files and file paths?
|
|
310
|
+
- [ ] Have you written the prompt using the standard 6-section template?
|
|
311
|
+
- [ ] Have you validated the prompt against the quality checklist in Step 5?
|
|
312
|
+
- [ ] Have you referenced the backend grounding document?
|
|
313
|
+
- [ ] Are all success criteria binary and testable?
|
|
314
|
+
- [ ] Are all constraints explicit (what NOT to do)?
|
|
315
|
+
- [ ] Is the prompt self-contained (no missing information)?
|
|
316
|
+
|
|
317
|
+
---
|
|
318
|
+
|
|
319
|
+
## VII. Related Skills
|
|
320
|
+
|
|
321
|
+
- **`write-implementation-prompt`:** Foundational skill for writing implementation prompts (this skill builds on it)
|
|
322
|
+
- **`frontend-from-backend`:** Ensures backend architecture is documented before frontend specs
|
|
323
|
+
- **parallel-tracks:** Guides the decomposition of large specs into parallel tracks
|
|
324
|
+
- **pre-implementation-checklist:** Validates specification readiness before prompt writing
|
|
325
|
+
- **strategic-to-tactical-workflow:** The complete workflow that includes this skill as Phase 7
|
|
326
|
+
|
|
327
|
+
---
|
|
328
|
+
|
|
329
|
+
## VIII. The Vision
|
|
330
|
+
|
|
331
|
+
This skill is designed to create **autonomous execution**. When an implementation prompt is written following this process, the agent should be able to:
|
|
332
|
+
|
|
333
|
+
1. Understand exactly what to build
|
|
334
|
+
2. Know where to build it (file paths)
|
|
335
|
+
3. Follow existing patterns (pattern files)
|
|
336
|
+
4. Verify completion (success criteria)
|
|
337
|
+
5. Stay within boundaries (constraints)
|
|
338
|
+
6. Integrate cleanly (backend grounding)
|
|
339
|
+
|
|
340
|
+
The result is high-quality implementation with minimal back-and-forth, enabling parallel work and compounding velocity.
|
|
341
|
+
|
|
342
|
+
🪷
|
|
343
|
+
|
|
344
|
+
---
|
|
345
|
+
|
|
346
|
+
## OpenClaw Tool Integration
|
|
347
|
+
|
|
348
|
+
When running inside the Dojo Genesis plugin:
|
|
349
|
+
|
|
350
|
+
1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
|
|
351
|
+
2. **During** the skill execution, follow the workflow steps as documented above
|
|
352
|
+
3. **Save** all outputs using `dojo_save_artifact` with appropriate artifact types:
|
|
353
|
+
- `scout` → type: "scout-report"
|
|
354
|
+
- `spec` → type: "specification"
|
|
355
|
+
- `tracks` → type: "track-decomposition"
|
|
356
|
+
- `commission` → type: "implementation-prompt"
|
|
357
|
+
- `retro` → type: "retrospective"
|
|
358
|
+
4. **Update state** by calling `dojo_update_state` to:
|
|
359
|
+
- Record the skill execution in activity history
|
|
360
|
+
- Advance the project phase if appropriate
|
|
361
|
+
- Log any decisions made during the skill run
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dojo-genesis-plugin-implementation-prompt",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Generate structured implementation prompts",
|
|
5
|
+
"author": "dojo-genesis",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"permissions": [],
|
|
8
|
+
"entry": "SKILL.md",
|
|
9
|
+
"tags": ["dojo-genesis", "orchestration", "pipeline", "development"],
|
|
10
|
+
"models": ["claude-*", "gpt-*", "gemini-*"],
|
|
11
|
+
"minOpenClawVersion": "2026.1.0"
|
|
12
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: iterative-scouting
|
|
3
|
+
description: Iterate through scouting cycles by gathering feedback, identifying reframes, and re-scouting with new lenses. Use when initial scouting raises deeper questions. Trigger phrases: 'scout this, gather feedback, then re-scout', 'what is the reframe hiding in this feedback', 'iterate the scout', 'two-scout rule'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
> **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run iterative-scouting`.
|
|
7
|
+
> The agent receives project context automatically via the `before_agent_start` hook.
|
|
8
|
+
> Use `dojo_get_context` for full state, `dojo_save_artifact` to persist outputs,
|
|
9
|
+
> and `dojo_update_state` to record phase transitions and decisions.
|
|
10
|
+
|
|
11
|
+
# Iterative Scouting Pattern Skill
|
|
12
|
+
|
|
13
|
+
**Version:** 1.0
|
|
14
|
+
**Created:** 2026-02-07
|
|
15
|
+
**Author:** Manus AI
|
|
16
|
+
**Purpose:** To formalize the meta-process of strategic scouting, emphasizing its iterative nature and the importance of reframing.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## I. The Philosophy: Scouting as a Conversation
|
|
21
|
+
|
|
22
|
+
Strategic scouting is not a linear process of finding the "right" answer. It is a **conversation** with the strategic landscape. The goal of the first scout is not to produce a final decision, but to generate a set of provocative routes that will elicit a deeper, more insightful response. The real prize is not the initial answer, but the **reframe** of the original question.
|
|
23
|
+
|
|
24
|
+
This skill operationalizes the pattern of **scout → feedback → reframe → re-scout**, turning a simple exploration into a powerful engine for strategic discovery.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## II. When to Use This Skill
|
|
29
|
+
|
|
30
|
+
- When facing a complex strategic decision with no obvious answer.
|
|
31
|
+
- When the initial framing of a problem feels too narrow or binary.
|
|
32
|
+
- After an initial strategic scout has been completed and feedback has been gathered.
|
|
33
|
+
- When you need to teach or demonstrate the process of strategic thinking.
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## III. The Workflow
|
|
38
|
+
|
|
39
|
+
This is a 4-step workflow for the iterative scouting pattern.
|
|
40
|
+
|
|
41
|
+
### Step 1: Initial Scout
|
|
42
|
+
|
|
43
|
+
**Goal:** To explore the initial strategic tension and propose a set of viable routes.
|
|
44
|
+
|
|
45
|
+
**Actions:**
|
|
46
|
+
- Identify the initial tension (e.g., "Deprecate vs. Companion").
|
|
47
|
+
- Use `/strategic-scout` to explore a diverse set of routes.
|
|
48
|
+
- Synthesize the routes and propose a provocative starting point.
|
|
49
|
+
|
|
50
|
+
### Step 2: Gather Feedback & Listen for the Reframe
|
|
51
|
+
|
|
52
|
+
**Goal:** To present the initial scouting results and listen for the deeper question hidden in the feedback.
|
|
53
|
+
|
|
54
|
+
**Actions:**
|
|
55
|
+
- Present the initial routes.
|
|
56
|
+
- Listen not just for agreement or disagreement, but for the *way* the feedback is framed.
|
|
57
|
+
- Identify the "question behind the question" (e.g., the shift from "what to do with the web app" to "what is the mobile experience for?").
|
|
58
|
+
|
|
59
|
+
### Step 3: Re-Scout with the New Lens
|
|
60
|
+
|
|
61
|
+
**Goal:** To conduct a second round of scouting using the new, more powerful framing.
|
|
62
|
+
|
|
63
|
+
**Actions:**
|
|
64
|
+
- Articulate the new, reframed tension (e.g., "Deep Work vs. On-the-Go").
|
|
65
|
+
- Use `/strategic-scout` again with this new lens.
|
|
66
|
+
- Explore routes that are native to the new framing.
|
|
67
|
+
|
|
68
|
+
### Step 4: Synthesize and Align on the Final Vision
|
|
69
|
+
|
|
70
|
+
**Goal:** To synthesize the results of the second scouting round into a final, coherent product vision.
|
|
71
|
+
|
|
72
|
+
**Actions:**
|
|
73
|
+
- Select the best route from the second round.
|
|
74
|
+
- Define the final product positioning, timeline, and business model.
|
|
75
|
+
- Confirm alignment and commit to the vision.
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## IV. Best Practices
|
|
80
|
+
|
|
81
|
+
- **The Two-Scout Rule:** For any non-trivial strategic decision, assume you will need at least two rounds of scouting.
|
|
82
|
+
- **The Reframe is the Prize:** The most valuable output of the process is the new, more powerful question you discover.
|
|
83
|
+
- **Scout for Provocation, Not for Consensus:** The goal of the first scout is to provoke a better conversation, not to find an answer that everyone agrees with.
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## V. Quality Checklist
|
|
88
|
+
|
|
89
|
+
Before concluding the process, ensure you can answer "yes" to all of the following questions:
|
|
90
|
+
|
|
91
|
+
- [ ] Have you completed at least two rounds of scouting?
|
|
92
|
+
- [ ] Can you clearly articulate the initial tension and the reframed tension?
|
|
93
|
+
- [ ] Did the reframe lead to a richer, more insightful set of strategic options?
|
|
94
|
+
- [ ] Is the final vision aligned with the insights from the second scouting round?
|
|
95
|
+
- [ ] Is the final decision documented and socialized?
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
## OpenClaw Tool Integration
|
|
99
|
+
|
|
100
|
+
When running inside the Dojo Genesis plugin:
|
|
101
|
+
|
|
102
|
+
1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
|
|
103
|
+
2. **During** the skill, follow the workflow steps documented above
|
|
104
|
+
3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
|
|
105
|
+
4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
|
|
106
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dojo-genesis-plugin-iterative-scouting",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Iterate scout cycles with reframes",
|
|
5
|
+
"author": "dojo-genesis",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"permissions": [],
|
|
8
|
+
"entry": "SKILL.md",
|
|
9
|
+
"tags": ["dojo-genesis", "orchestration", "workflow", "process"],
|
|
10
|
+
"models": ["claude-*", "gpt-*", "gemini-*"],
|
|
11
|
+
"minOpenClawVersion": "2026.1.0"
|
|
12
|
+
}
|