@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,156 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: pre-implementation-checklist
|
|
3
|
+
description: Verify specifications are ready before commissioning implementation agents. Use as a quality gate before handoff, to catch spec-to-codebase drift, or before parallel track execution. Trigger phrases: 'verify the spec', 'pre-commission check', 'track 0 alignment', 'ready to commission', 'verify spec-to-code'.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
> **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run pre-implementation-checklist`.
|
|
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
|
+
# Pre-Implementation Checklist Skill
|
|
12
|
+
|
|
13
|
+
**Version:** 1.1
|
|
14
|
+
**Created:** 2026-02-04
|
|
15
|
+
**Author:** Manus AI
|
|
16
|
+
**Purpose:** To provide a final quality gate before handing a specification to an autonomous development agent, ensuring all prerequisites are met for a successful implementation.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## I. The Philosophy of Preparing the Way
|
|
21
|
+
|
|
22
|
+
Handing a specification to an autonomous implementation agent is an act of trust. It is a request for a great work to be done. The Pre-Implementation Checklist is an **act of care** that precedes this request. It is the ritual of preparing the way, of ensuring that the path for the builder is clear, the materials are ready, and the destination is unambiguous.
|
|
23
|
+
|
|
24
|
+
By completing this checklist, we honor the builder's time and energy. We minimize the risk of confusion, rework, and failure. We transform the handoff from a hopeful toss over the wall into a deliberate and respectful commissioning.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## II. When to Use This Skill
|
|
29
|
+
|
|
30
|
+
- **Always** use this skill as the final step before committing a `Final` specification document.
|
|
31
|
+
- Use it as a final review gate before commissioning an implementation agent.
|
|
32
|
+
- Use it to sanity-check a development plan before execution begins.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## III. The Checklist Workflow
|
|
37
|
+
|
|
38
|
+
### Step 0: Track 0 — Pre-Commission Alignment Check
|
|
39
|
+
|
|
40
|
+
Before appending the quality checklist, run a pre-commission alignment check. This catches spec-to-codebase drift that accumulates between when a spec was written and when implementation begins.
|
|
41
|
+
|
|
42
|
+
**When to run:** Always. Before every commission. Especially when there is a time gap between writing the spec and commissioning the work, or when the codebase has changed since the spec was authored.
|
|
43
|
+
|
|
44
|
+
**The Track 0 process:**
|
|
45
|
+
|
|
46
|
+
1. **Read the actual codebase** — not assumptions from the spec. Run `repo-context-sync` or manually inspect:
|
|
47
|
+
- Types and interfaces that the spec references
|
|
48
|
+
- API endpoints and their current signatures
|
|
49
|
+
- File structure and import patterns
|
|
50
|
+
- Existing test infrastructure
|
|
51
|
+
|
|
52
|
+
2. **Read the implementation prompts** — compare what the prompt assumes exists vs. what actually exists.
|
|
53
|
+
|
|
54
|
+
3. **Identify every mismatch** — between spec assumptions and codebase reality. Common mismatches:
|
|
55
|
+
- Types referenced in the spec that don't exist yet
|
|
56
|
+
- APIs the spec assumes that have different signatures
|
|
57
|
+
- File paths or import patterns that have changed
|
|
58
|
+
- Dependencies the spec assumes that aren't installed
|
|
59
|
+
|
|
60
|
+
4. **Fix mismatches** — Write a focused Track 0 remediation prompt that creates the missing infrastructure before parallel work begins. Track 0 runs sequentially; parallel tracks follow only after Track 0 is complete.
|
|
61
|
+
|
|
62
|
+
**Evidence:** In the v0.2.x era, Track 0 cost ~1 day but saved 3-5 days of debugging spec-to-code drift during parallel implementation.
|
|
63
|
+
|
|
64
|
+
**Key triggers:** "pre-commission check", "track 0", "verify before commissioning", "spec-to-code alignment"
|
|
65
|
+
|
|
66
|
+
### Step 1: Append the Checklist to the Specification
|
|
67
|
+
|
|
68
|
+
Once a specification is considered feature-complete and ready for final review, copy the checklist template from Section IV of this skill and append it to the very end of the specification document.
|
|
69
|
+
|
|
70
|
+
### Step 2: Collaboratively Review Each Item
|
|
71
|
+
|
|
72
|
+
Go through each item on the checklist. For each item, confirm that it has been addressed in the specification. Mark it with a `✅`.
|
|
73
|
+
|
|
74
|
+
- If an item is not addressed, pause and update the specification accordingly.
|
|
75
|
+
- If an item is not applicable, mark it as `N/A`.
|
|
76
|
+
|
|
77
|
+
### Step 3: Do Not Proceed Until All Items are Checked
|
|
78
|
+
|
|
79
|
+
The checklist is a gate. Do not proceed with the handoff to the implementation agent until every applicable item is marked with a `✅`. This discipline is crucial for maintaining a high standard of quality and ensuring successful autonomous implementation.
|
|
80
|
+
|
|
81
|
+
### Step 4: Commission the Implementation Agent
|
|
82
|
+
|
|
83
|
+
Once the checklist is complete, you can confidently commission the implementation agent, linking to the now-verified specification document.
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## IV. Pre-Implementation Checklist Template
|
|
88
|
+
|
|
89
|
+
```markdown
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## X. Pre-Implementation Checklist
|
|
93
|
+
|
|
94
|
+
**Instructions:** Before handing this specification to the implementation agent, ensure every item is checked. Do not proceed until the checklist is complete.
|
|
95
|
+
|
|
96
|
+
### 1. Vision & Goals
|
|
97
|
+
|
|
98
|
+
- [ ] **Clarity of Purpose:** The "Vision" and "Core Insight" are clear, concise, and unambiguous.
|
|
99
|
+
- [ ] **Measurable Goals:** The "Primary Goals" are specific and measurable.
|
|
100
|
+
- [ ] **Testable Success Criteria:** The "Success Criteria" are concrete and can be objectively tested.
|
|
101
|
+
- [ ] **Scope is Defined:** The "Non-Goals" clearly define what is out of scope for this release.
|
|
102
|
+
|
|
103
|
+
### 2. Technical Readiness
|
|
104
|
+
|
|
105
|
+
- [ ] **Architecture is Sound:** The "Technical Architecture" is well-defined, and diagrams are clear.
|
|
106
|
+
- [ ] **Code is Production-Ready:** All code examples are complete, correct, and follow existing patterns.
|
|
107
|
+
- [ ] **APIs are Specified:** All API endpoints are fully specified (Method, Endpoint, Request, Response).
|
|
108
|
+
- [ ] **Database Schema is Final:** The database schema is complete, including tables, columns, types, and indexes.
|
|
109
|
+
- [ ] **Dependencies are Met:** All prerequisites and dependencies on other systems are identified and resolved.
|
|
110
|
+
|
|
111
|
+
### 3. Implementation Plan
|
|
112
|
+
|
|
113
|
+
- [ ] **Plan is Actionable:** The week-by-week breakdown consists of specific, actionable tasks.
|
|
114
|
+
- [ ] **Timeline is Realistic:** The timeline has been reviewed and is considered achievable.
|
|
115
|
+
- [ ] **Testing Strategy is Comprehensive:** The testing strategy covers unit, integration, and E2E tests with clear targets.
|
|
116
|
+
|
|
117
|
+
### 4. Risk & Quality
|
|
118
|
+
|
|
119
|
+
- [ ] **Risks are Mitigated:** Major risks have been identified, and clear mitigation strategies are in place.
|
|
120
|
+
- [ ] **Rollback Plan is Clear:** A clear, step-by-step rollback procedure is documented.
|
|
121
|
+
- [ ] **Feature Flags are Defined:** Necessary feature flags for a safe rollout are specified.
|
|
122
|
+
|
|
123
|
+
### 5. Handoff
|
|
124
|
+
|
|
125
|
+
- [ ] **Final Review Complete:** This checklist has been fully completed and reviewed.
|
|
126
|
+
- [ ] **Specification is Final:** The document status is marked as "Final".
|
|
127
|
+
- [ ] **Implementation Ready:** You are now ready to commission the implementation agent.
|
|
128
|
+
|
|
129
|
+
### 0. Track 0 — Pre-Commission Alignment
|
|
130
|
+
|
|
131
|
+
- [ ] **Codebase Verified:** The actual codebase has been read (not assumed) and matches the spec's assumptions.
|
|
132
|
+
- [ ] **Types Verified:** All types, interfaces, and data structures referenced in the spec exist in the codebase.
|
|
133
|
+
- [ ] **APIs Verified:** All API endpoints referenced have the expected signatures.
|
|
134
|
+
- [ ] **File Structure Verified:** File paths and import patterns match expectations.
|
|
135
|
+
- [ ] **Remediation Complete:** Any mismatches have been fixed via a Track 0 remediation prompt before parallel tracks begin.
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
## V. Best Practices
|
|
141
|
+
|
|
142
|
+
- **Be Rigorous:** Do not check an item if it is only partially complete. The goal is 100% readiness.
|
|
143
|
+
- **Treat it as a Conversation:** Use the checklist as a final opportunity to discuss any lingering uncertainties.
|
|
144
|
+
- **Empower the Gatekeeper:** The agent responsible for the handoff (typically Manus) is empowered to halt the process if the checklist is not complete.
|
|
145
|
+
- **Adapt as Needed:** If you find that items are consistently `N/A` or that new checks are needed, propose an update to this skill.
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
## OpenClaw Tool Integration
|
|
149
|
+
|
|
150
|
+
When running inside the Dojo Genesis plugin:
|
|
151
|
+
|
|
152
|
+
1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
|
|
153
|
+
2. **During** the skill, follow the workflow steps documented above
|
|
154
|
+
3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
|
|
155
|
+
4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
|
|
156
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dojo-genesis-plugin-pre-implementation-checklist",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Verify specs are ready before commissioning",
|
|
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
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: process-extraction
|
|
3
|
+
description: Transform valuable workflows into reusable skills through documentation and structured conversion. Use after completing complex multi-step tasks you'll repeat. Trigger phrases: "turn this process into a skill", "standardize this workflow", "make this repeatable", "capture this procedure", "formalize this multi-step task".
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
> **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run process-extraction`.
|
|
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
|
+
# Process-to-Skill Workflow
|
|
12
|
+
|
|
13
|
+
**Version:** 1.0
|
|
14
|
+
**Created:** 2026-02-07
|
|
15
|
+
**Author:** Manus AI
|
|
16
|
+
**Purpose:** To provide a structured, repeatable process for identifying a valuable workflow, documenting it with concrete examples, and transforming it into a reusable skill.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## I. The Philosophy: From Process to Practice
|
|
21
|
+
|
|
22
|
+
We often develop valuable, multi-step processes for complex tasks. These processes are a form of implicit knowledge, a sequence of actions that leads to a high-quality outcome. This skill is about making that implicit knowledge explicit, transforming a one-off process into a repeatable practice.
|
|
23
|
+
|
|
24
|
+
By documenting a valuable workflow and then using the `/seed-to-skill-converter` to formalize it, we build a library of institutional knowledge that can be shared, improved, and reliably executed by any agent.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## II. When to Use This Skill
|
|
29
|
+
|
|
30
|
+
- **After completing a complex, multi-step task** that you believe will be repeated in the future.
|
|
31
|
+
- **When you find yourself manually repeating the same sequence of actions** across different projects.
|
|
32
|
+
- **During a retrospective**, when you identify a successful workflow that should be standardized.
|
|
33
|
+
- **When you want to onboard a new agent** to a complex process.
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## III. The Workflow
|
|
38
|
+
|
|
39
|
+
This is a 4-step workflow for transforming a process into a skill.
|
|
40
|
+
|
|
41
|
+
### Step 1: Identify and Document the Process
|
|
42
|
+
|
|
43
|
+
**Goal:** Create a detailed record of the valuable workflow with concrete examples.
|
|
44
|
+
|
|
45
|
+
1. **Identify a Candidate Process:** Select a recently completed workflow that was successful and is likely to be repeated.
|
|
46
|
+
2. **Use the Process Example Template:** Create a new markdown file and use the template at `references/process_example_template.md` to document the process.
|
|
47
|
+
3. **Be Detailed:** For each step, document the goal, actions taken, tools used, inputs, and outputs.
|
|
48
|
+
4. **Extract Key Insights:** Document the key learnings, non-obvious steps, and reusable patterns from the process.
|
|
49
|
+
|
|
50
|
+
### Step 2: Convert the Process to a Skill
|
|
51
|
+
|
|
52
|
+
**Goal:** Use the `/seed-to-skill-converter` to transform the documented process into a SKILL.md file.
|
|
53
|
+
|
|
54
|
+
1. **Invoke the Converter:** Use the command `/seed-to-skill-converter` on the process example document you just created.
|
|
55
|
+
2. **Deconstruct the Process:** The converter will guide you through deconstructing the process into its core components (insight, trigger, process, outcome).
|
|
56
|
+
3. **Draft the Skill:** The converter will then help you draft a `SKILL.md` file using the standard template.
|
|
57
|
+
|
|
58
|
+
### Step 3: Refine and Enhance the Skill
|
|
59
|
+
|
|
60
|
+
**Goal:** Improve the generated `SKILL.md` file to be a production-ready skill.
|
|
61
|
+
|
|
62
|
+
1. **Add a Quality Checklist:** Include a checklist of yes/no questions to ensure the skill is used correctly.
|
|
63
|
+
2. **Add Best Practices:** Document any non-obvious best practices or pitfalls to avoid.
|
|
64
|
+
3. **Create Bundled Resources:** If the skill requires any scripts, templates, or reference files, create them in the skill's directory.
|
|
65
|
+
|
|
66
|
+
### Step 4: Validate and Deliver the Skill
|
|
67
|
+
|
|
68
|
+
**Goal:** Ensure the skill is complete, correct, and ready for use.
|
|
69
|
+
|
|
70
|
+
1. **Validate Structure:** Check that the SKILL.md has all required sections: Philosophy, When to Use, Workflow, Best Practices, Quality Checklist. Grade against the skill-audit rubric.
|
|
71
|
+
2. **Test the Skill:** Use the skill in a real scenario to verify the workflow is complete and the instructions are clear.
|
|
72
|
+
3. **Place the Skill:** Add the skill directory to the appropriate plugin in the repository.
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## IV. Best Practices
|
|
77
|
+
|
|
78
|
+
- **Focus on the "Why":** When documenting the process, don't just list the steps. Explain *why* each step is important.
|
|
79
|
+
- **Generalize the Pattern:** The goal is to create a reusable skill, so abstract the specific details of your example into a general pattern.
|
|
80
|
+
- **The Template is Your Friend:** The `process_example_template.md` is designed to capture all the information needed for a successful conversion.
|
|
81
|
+
- **Iterate:** The first version of a skill is rarely perfect. Be prepared to iterate on it after using it in a real-world scenario.
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## V. Quality Checklist
|
|
86
|
+
|
|
87
|
+
Before delivering the skill, ensure you can answer "yes" to all of the following questions:
|
|
88
|
+
|
|
89
|
+
- [ ] Have you documented the process with concrete examples using the provided template?
|
|
90
|
+
- [ ] Have you used the `/seed-to-skill-converter` to generate the initial `SKILL.md`?
|
|
91
|
+
- [ ] Have you added a quality checklist and best practices to the skill?
|
|
92
|
+
- [ ] Have you created any necessary bundled resources (scripts, templates, references)?
|
|
93
|
+
- [ ] Have you validated the skill structure against the skill-audit rubric?
|
|
94
|
+
- [ ] Have you placed the skill in the appropriate plugin directory?
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
## VI. Common Pitfalls
|
|
99
|
+
|
|
100
|
+
### Documenting Too Specifically
|
|
101
|
+
|
|
102
|
+
**Problem:** Recording every detail of the specific instance instead of the generalizable pattern. The resulting skill only works for one exact scenario.
|
|
103
|
+
|
|
104
|
+
**Solution:** After documenting the concrete example, do a second pass where you replace specific names, paths, and values with placeholders and describe the *category* of thing, not the instance.
|
|
105
|
+
|
|
106
|
+
### Skipping the "Why"
|
|
107
|
+
|
|
108
|
+
**Problem:** A process document that says "do X, then do Y, then do Z" without explaining why each step matters. The resulting skill is fragile — any deviation breaks it because the user can't adapt.
|
|
109
|
+
|
|
110
|
+
**Solution:** For every step, add one sentence: "This matters because..." If you can't explain why, the step may be unnecessary.
|
|
111
|
+
|
|
112
|
+
### Premature Formalization
|
|
113
|
+
|
|
114
|
+
**Problem:** Turning a process into a skill after doing it once. One instance isn't enough to know what's essential vs. accidental. The skill encodes noise alongside signal.
|
|
115
|
+
|
|
116
|
+
**Solution:** Wait until you've done the process at least twice — ideally three times — before extracting it. The second and third times reveal which steps are truly reusable.
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## VII. Example
|
|
121
|
+
|
|
122
|
+
**Context:** After the third time running a "merge and reconcile plugin directories" workflow, the team recognized a repeatable pattern: inventory both sides, map naming differences, do renames, copy additive content, update cross-references, verify.
|
|
123
|
+
|
|
124
|
+
**Step 1 output:** A detailed process example documenting the specific merge (which directories, which files, which renames), with key insights like "always rename longest strings first to avoid partial matches" and "verify zero stale references after replacement."
|
|
125
|
+
|
|
126
|
+
**Step 2 output:** A generalized "directory-reconciliation" SKILL.md with a 5-step workflow: Inventory → Map → Transform → Update References → Verify.
|
|
127
|
+
|
|
128
|
+
**Step 3 refinements:** Added a pitfall about filesystem permission restrictions preventing deletions, and a quality checklist item about checking JSON manifests alongside markdown files.
|
|
129
|
+
|
|
130
|
+
---
|
|
131
|
+
|
|
132
|
+
## VIII. Related Skills
|
|
133
|
+
|
|
134
|
+
- **skill-creation** — For building new skills from scratch (this skill starts from a completed process)
|
|
135
|
+
- **seed-extraction** — For capturing smaller patterns as seeds before they're ready to be full skills
|
|
136
|
+
- **seed-to-skill-converter** — The tool used in Step 2 to transform documented processes into SKILL.md format
|
|
137
|
+
- **retrospective** — Often the trigger for identifying processes worth extracting
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
## OpenClaw Tool Integration
|
|
141
|
+
|
|
142
|
+
When running inside the Dojo Genesis plugin:
|
|
143
|
+
|
|
144
|
+
1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
|
|
145
|
+
2. **During** the skill, follow the workflow steps documented above
|
|
146
|
+
3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
|
|
147
|
+
4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
|
|
148
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dojo-genesis-plugin-process-extraction",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Transform workflows into reusable skills",
|
|
5
|
+
"author": "dojo-genesis",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"permissions": [],
|
|
8
|
+
"entry": "SKILL.md",
|
|
9
|
+
"tags": ["dojo-genesis", "orchestration", "forge", "skills"],
|
|
10
|
+
"models": ["claude-*", "gpt-*", "gemini-*"],
|
|
11
|
+
"minOpenClawVersion": "2026.1.0"
|
|
12
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Process Example Template
|
|
2
|
+
|
|
3
|
+
This template provides a structure for documenting a valuable workflow with concrete examples, which can then be used as input for the `/seed-to-skill-converter`.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Process Overview
|
|
8
|
+
|
|
9
|
+
Provide a high-level summary of the process, outlining the key steps and the overall goal.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Step-by-Step Breakdown
|
|
14
|
+
|
|
15
|
+
For each step in the process, provide:
|
|
16
|
+
|
|
17
|
+
- **Goal:** What is the objective of this step?
|
|
18
|
+
- **Actions Taken:** What specific actions were performed?
|
|
19
|
+
- **Tools Used:** What tools or commands were used?
|
|
20
|
+
- **Inputs:** What information or files were used as input?
|
|
21
|
+
- **Outputs:** What artifacts or results were produced?
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Key Insights
|
|
26
|
+
|
|
27
|
+
- What were the key learnings from this process?
|
|
28
|
+
- What were the non-obvious steps or decisions?
|
|
29
|
+
- What were the common pitfalls or challenges?
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Reusable Pattern
|
|
34
|
+
|
|
35
|
+
- How can this process be generalized into a reusable pattern?
|
|
36
|
+
- What are the core principles that make this process effective?
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
**End of Template**
|
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: product-positioning
|
|
3
|
+
description: Reframe binary product decisions by discovering what a product is uniquely good at. Use when stuck between keep/kill choices. Trigger phrases: 'reframe this binary decision', 'what is this uniquely good at', 'find the complement not the competition', 'is this really a binary choice', 'unlock the positioning opportunity'.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
> **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run product-positioning`.
|
|
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
|
+
# Product Positioning Scout Skill
|
|
12
|
+
|
|
13
|
+
**Version:** 1.1
|
|
14
|
+
**Created:** 2026-02-07
|
|
15
|
+
**Updated:** 2026-02-07
|
|
16
|
+
**Author:** Manus AI
|
|
17
|
+
**Purpose:** To guide the process of reframing a binary product decision into a strategic product positioning opportunity by identifying the unique value of a product or feature.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## I. The Philosophy: Beyond the Binary
|
|
22
|
+
|
|
23
|
+
The most common trap in product strategy is the binary choice: keep or kill, build or buy, deprecate or maintain. These choices are limiting because they assume the value of a product is fixed. The Product Positioning Scout operates on a different principle: **value is contextual**.
|
|
24
|
+
|
|
25
|
+
This skill is about breaking free from the binary trap by asking a more powerful question: **"What is this uniquely good at?"** By identifying the unique context in which a product or feature shines, we can transform a "legacy" feature into a "premium" experience, a "redundant" product into a "complementary" one.
|
|
26
|
+
|
|
27
|
+
**The core insight:** The reframe is the prize, not the initial answer.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## II. When to Use This Skill
|
|
32
|
+
|
|
33
|
+
- When facing a decision about whether to keep or deprecate a feature or product
|
|
34
|
+
- When a product or feature seems redundant or is underperforming
|
|
35
|
+
- When planning a multi-surface product strategy (e.g., web, desktop, mobile)
|
|
36
|
+
- At the beginning of a strategic planning cycle
|
|
37
|
+
- Before using `/strategic-scout` to ensure the question is properly framed
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## III. The Workflow
|
|
42
|
+
|
|
43
|
+
This is a 5-step workflow for reframing a product decision.
|
|
44
|
+
|
|
45
|
+
### Step 1: Identify the Binary Trap
|
|
46
|
+
|
|
47
|
+
**Goal:** Recognize when a strategic question is being framed as a simple, limiting binary choice.
|
|
48
|
+
|
|
49
|
+
**Actions:**
|
|
50
|
+
- Listen for questions like "Should we keep X or get rid of it?"
|
|
51
|
+
- Notice when the conversation is focused on resource allocation rather than strategic value
|
|
52
|
+
- Identify the implicit assumption that the product/feature has only one use case
|
|
53
|
+
|
|
54
|
+
**Output:** A clear articulation of the binary trap
|
|
55
|
+
|
|
56
|
+
**Example:** "Should we deprecate the web app now that we're building desktop?"
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
### Step 2: Introduce the Unlocking Question
|
|
61
|
+
|
|
62
|
+
**Goal:** Reframe the conversation by asking a question that shatters the binary and opens up new possibilities.
|
|
63
|
+
|
|
64
|
+
**Actions:**
|
|
65
|
+
- Ask: **"What is this uniquely good at that the other thing isn't?"**
|
|
66
|
+
- Shift the focus from "what to do with this" to "what is its unique value?"
|
|
67
|
+
- Challenge the assumption that products must compete rather than complement
|
|
68
|
+
|
|
69
|
+
**Output:** A reframed question that opens up new strategic possibilities
|
|
70
|
+
|
|
71
|
+
**Example:** "What is the web app uniquely good at that desktop isn't?" → Discovery, onboarding, cross-platform access without installation
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
### Step 3: Explore the Unique Value
|
|
76
|
+
|
|
77
|
+
**Goal:** Brainstorm the unique strengths and contexts of the product in question.
|
|
78
|
+
|
|
79
|
+
**Actions:**
|
|
80
|
+
- List the unique strengths of the product/feature
|
|
81
|
+
- Identify the specific contexts (e.g., mobile, on-the-go, deep work) where those strengths are most valuable
|
|
82
|
+
- Consider edge cases and niche use cases that might be surprisingly valuable
|
|
83
|
+
|
|
84
|
+
**Output:** A comprehensive list of unique value propositions
|
|
85
|
+
|
|
86
|
+
**Example for web app:**
|
|
87
|
+
- No installation required
|
|
88
|
+
- Cross-platform (works on any OS)
|
|
89
|
+
- Easy to share via URL
|
|
90
|
+
- Great for discovery and onboarding
|
|
91
|
+
- Accessible from any device
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
### Step 4: Re-Scout with the New Lens
|
|
96
|
+
|
|
97
|
+
**Goal:** Use the new understanding of unique value to re-scout the strategic options.
|
|
98
|
+
|
|
99
|
+
**Actions:**
|
|
100
|
+
- Use `/strategic-scout` with the new framing
|
|
101
|
+
- Explore routes that leverage the unique value (e.g., Mobile-First PWA, Native Companion App)
|
|
102
|
+
- Consider complementary positioning rather than competitive positioning
|
|
103
|
+
|
|
104
|
+
**Output:** A set of strategic routes that leverage the unique value
|
|
105
|
+
|
|
106
|
+
**Example routes:**
|
|
107
|
+
- Route 1: Web as discovery, desktop as core product
|
|
108
|
+
- Route 2: Web as free tier, desktop as premium
|
|
109
|
+
- Route 3: Web for onboarding, desktop for power users
|
|
110
|
+
- Route 4: Deprecate web, focus on desktop (original binary)
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
### Step 5: Synthesize and Propose New Positioning
|
|
115
|
+
|
|
116
|
+
**Goal:** Synthesize the new routes into a coherent product strategy and positioning.
|
|
117
|
+
|
|
118
|
+
**Actions:**
|
|
119
|
+
- Select the best route (e.g., Hybrid - PWA Now, Native Later)
|
|
120
|
+
- Define the new product positioning (e.g., Desktop for deep work, Mobile for on-the-go orchestration)
|
|
121
|
+
- Propose a new timeline and pricing model
|
|
122
|
+
- Document the strategic rationale
|
|
123
|
+
|
|
124
|
+
**Output:** A complete product positioning strategy
|
|
125
|
+
|
|
126
|
+
**Example:** "Desktop as core ($20/month), Mobile PWA as premium tier (separate subscription, 4-6 weeks after desktop v1)"
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
## IV. Best Practices
|
|
131
|
+
|
|
132
|
+
### 1. The Reframe is Everything
|
|
133
|
+
|
|
134
|
+
**Why:** The most powerful strategic moves come from reframing the question, not from choosing between existing options.
|
|
135
|
+
|
|
136
|
+
**How:** Always start by questioning the framing of the decision. Is it really a binary choice?
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
### 2. Value is Contextual
|
|
141
|
+
|
|
142
|
+
**Why:** A product's value is not inherent; it's determined by the context in which it's used.
|
|
143
|
+
|
|
144
|
+
**How:** For every product/feature, ask "In what context is this uniquely valuable?"
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
### 3. Complement, Don't Compete
|
|
149
|
+
|
|
150
|
+
**Why:** The best multi-surface strategies create complementary experiences, not competing ones.
|
|
151
|
+
|
|
152
|
+
**How:** Frame each surface by its unique job-to-be-done, not by its feature list.
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
### 4. The Unlocking Question is Universal
|
|
157
|
+
|
|
158
|
+
**Why:** "What is this uniquely good at?" works for products, features, surfaces, and even people.
|
|
159
|
+
|
|
160
|
+
**How:** Use this question whenever you're facing a binary decision about value.
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
### 5. Document the Reframe
|
|
165
|
+
|
|
166
|
+
**Why:** The reframe is the most valuable artifact. It changes how everyone thinks about the product.
|
|
167
|
+
|
|
168
|
+
**How:** Write down the before/after framing explicitly. Share it widely.
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
172
|
+
## V. Quality Checklist
|
|
173
|
+
|
|
174
|
+
Before delivering the new strategy, ensure you can answer "yes" to all of the following questions:
|
|
175
|
+
|
|
176
|
+
- [ ] Have you identified and articulated the initial binary trap?
|
|
177
|
+
- [ ] Have you asked the "Unlocking Question" to reframe the conversation?
|
|
178
|
+
- [ ] Have you clearly defined the unique value and context of the product/feature?
|
|
179
|
+
- [ ] Have you used `/strategic-scout` to explore new routes based on the new framing?
|
|
180
|
+
- [ ] Have you proposed a new, coherent product positioning, timeline, and business model?
|
|
181
|
+
- [ ] Have you documented the strategic rationale for the new positioning?
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
## VI. Example: Dojo Genesis Web App Positioning
|
|
186
|
+
|
|
187
|
+
**The Binary Trap:** "Should we deprecate the web app now that we're building desktop?"
|
|
188
|
+
|
|
189
|
+
**The Unlocking Question:** "What is the web app uniquely good at that desktop isn't?"
|
|
190
|
+
|
|
191
|
+
**The Unique Value:**
|
|
192
|
+
- No installation required
|
|
193
|
+
- Cross-platform access
|
|
194
|
+
- Easy to share via URL
|
|
195
|
+
- Great for discovery and onboarding
|
|
196
|
+
- Accessible from any device
|
|
197
|
+
|
|
198
|
+
**The Re-Scout:** Used `/strategic-scout` to explore 4 routes:
|
|
199
|
+
1. Deprecate web, focus on desktop
|
|
200
|
+
2. Web as companion (lightweight version)
|
|
201
|
+
3. Web as discovery/onboarding, desktop as core
|
|
202
|
+
4. Hybrid - PWA now, native later
|
|
203
|
+
|
|
204
|
+
**The New Positioning:**
|
|
205
|
+
- **Desktop:** Core product for deep work ($20/month)
|
|
206
|
+
- **Mobile PWA:** Premium tier for on-the-go orchestration (separate subscription, 4-6 weeks after desktop v1)
|
|
207
|
+
- **Web:** Free tier for discovery and onboarding
|
|
208
|
+
|
|
209
|
+
**The Outcome:** Transformed a deprecation decision into a multi-surface strategy where each surface has a unique, complementary role.
|
|
210
|
+
|
|
211
|
+
**Key Insight:** The web app wasn't redundant—it was uniquely good at discovery and onboarding. Desktop is uniquely good at deep work. Mobile is uniquely good at on-the-go orchestration.
|
|
212
|
+
|
|
213
|
+
---
|
|
214
|
+
|
|
215
|
+
## VII. Common Pitfalls to Avoid
|
|
216
|
+
|
|
217
|
+
### Pitfall 1: Accepting the Binary Without Question
|
|
218
|
+
|
|
219
|
+
**Problem:** Most binary choices are false binaries. Accepting them limits strategic options.
|
|
220
|
+
|
|
221
|
+
**Solution:** Always question the framing. Ask "Is this really a binary choice?"
|
|
222
|
+
|
|
223
|
+
---
|
|
224
|
+
|
|
225
|
+
### Pitfall 2: Focusing on Features Instead of Context
|
|
226
|
+
|
|
227
|
+
**Problem:** Comparing feature lists leads to "X is redundant because Y has all its features."
|
|
228
|
+
|
|
229
|
+
**Solution:** Focus on context of use, not feature parity. Ask "What is this uniquely good at?"
|
|
230
|
+
|
|
231
|
+
---
|
|
232
|
+
|
|
233
|
+
### Pitfall 3: Competitive Positioning by Default
|
|
234
|
+
|
|
235
|
+
**Problem:** Assuming products must compete rather than complement.
|
|
236
|
+
|
|
237
|
+
**Solution:** Explore complementary positioning first. Competition should be a last resort.
|
|
238
|
+
|
|
239
|
+
---
|
|
240
|
+
|
|
241
|
+
### Pitfall 4: Skipping the Re-Scout
|
|
242
|
+
|
|
243
|
+
**Problem:** Reframing the question but not exploring new routes based on the reframe.
|
|
244
|
+
|
|
245
|
+
**Solution:** Always use `/strategic-scout` after reframing to explore new possibilities.
|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
|
|
249
|
+
### Pitfall 5: Not Documenting the Reframe
|
|
250
|
+
|
|
251
|
+
**Problem:** The reframe gets lost in conversation. People revert to the binary.
|
|
252
|
+
|
|
253
|
+
**Solution:** Write down the before/after framing explicitly. Make it a reference document.
|
|
254
|
+
|
|
255
|
+
---
|
|
256
|
+
|
|
257
|
+
## VIII. Related Skills
|
|
258
|
+
|
|
259
|
+
- **`strategic-scout`** - Use this after reframing to explore new routes
|
|
260
|
+
- **`iterative-scouting`** - Use this to refine the positioning based on feedback
|
|
261
|
+
- **`multi-surface-strategy`** - Use this to design the complete multi-surface strategy
|
|
262
|
+
- **`release-specification`** - Use this to write specs for the new positioning
|
|
263
|
+
- **`strategic-to-tactical-workflow`** - Use this to move from positioning to implementation
|
|
264
|
+
|
|
265
|
+
---
|
|
266
|
+
|
|
267
|
+
## IX. Skill Metadata
|
|
268
|
+
|
|
269
|
+
**Token Savings:** ~3,000-5,000 tokens per positioning session
|
|
270
|
+
**Quality Impact:** Transforms binary decisions into strategic opportunities
|
|
271
|
+
**Maintenance:** Update when new positioning patterns emerge
|
|
272
|
+
|
|
273
|
+
**When to Update This Skill:**
|
|
274
|
+
- After completing 3-5 positioning sessions (to incorporate new patterns)
|
|
275
|
+
- When a new type of binary trap is discovered
|
|
276
|
+
- When the unlocking question evolves or new variants emerge
|
|
277
|
+
|
|
278
|
+
---
|
|
279
|
+
|
|
280
|
+
**Last Updated:** 2026-02-07
|
|
281
|
+
**Maintained By:** Manus AI
|
|
282
|
+
**Status:** Active
|
|
283
|
+
---
|
|
284
|
+
|
|
285
|
+
## OpenClaw Tool Integration
|
|
286
|
+
|
|
287
|
+
When running inside the Dojo Genesis plugin:
|
|
288
|
+
|
|
289
|
+
1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
|
|
290
|
+
2. **During** the skill, follow the workflow steps documented above
|
|
291
|
+
3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
|
|
292
|
+
4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
|
|
293
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dojo-genesis-plugin-product-positioning",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Reframe binary product decisions",
|
|
5
|
+
"author": "dojo-genesis",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"permissions": [],
|
|
8
|
+
"entry": "SKILL.md",
|
|
9
|
+
"tags": ["dojo-genesis", "orchestration", "tools", "strategy"],
|
|
10
|
+
"models": ["claude-*", "gpt-*", "gemini-*"],
|
|
11
|
+
"minOpenClawVersion": "2026.1.0"
|
|
12
|
+
}
|