@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,211 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: status-template
|
|
3
|
+
description: Write comprehensive status documents for software projects using a 10-section template bridging heartbeat, anatomy, and checkup perspectives. Use when writing status reports, creating project overviews, documenting codebase state, preparing handoffs, or auditing project health. Trigger phrases: 'write a status report', 'give me the lay of the land', 'where are we right now', 'create a project overview', 'document the current state', 'prepare a handoff document'.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
> **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run status-template`.
|
|
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
|
+
# Status Template Skill
|
|
12
|
+
|
|
13
|
+
**Version:** 1.0
|
|
14
|
+
**Created:** 2026-02-08
|
|
15
|
+
**Author:** Cruz + Manus (Cowork)
|
|
16
|
+
**Origin:** Elevated from the `repo-status` skill's status template reference, which was itself codified from a live status-writing + file-management + health-audit session.
|
|
17
|
+
**Lineage:** status-writing (heartbeat) + file-management (anatomy) + health-audit (checkup) β repo-status β this standalone skill.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## I. The Philosophy: One Document, Three Perspectives
|
|
22
|
+
|
|
23
|
+
Project status lives in too many places β Slack threads, standup notes, README footers, someone's head. When a new person (or agent) arrives and asks "where are we?", the answer is usually scattered, stale, or both.
|
|
24
|
+
|
|
25
|
+
This skill produces a single `.status.md` file that answers that question by looking at the project from three angles:
|
|
26
|
+
|
|
27
|
+
- **Heartbeat (status-writing):** Is it alive? What's moving? What's stuck? Emoji-driven health indicators give an instant pulse check.
|
|
28
|
+
- **Anatomy (file-management):** Where is everything? An annotated directory tree with per-folder status turns the filesystem into a map.
|
|
29
|
+
- **Checkup (health-audit):** How healthy is it? Critical issues, security posture, and sustainability assessment tell you what needs attention.
|
|
30
|
+
|
|
31
|
+
One file. Three lenses. Updated over time.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## II. When to Use This Skill
|
|
36
|
+
|
|
37
|
+
- **Writing a status report:** Monthly, per-release, or ad-hoc β this template gives you the structure.
|
|
38
|
+
- **Onboarding someone to a project:** Instead of a 30-minute walkthrough, hand them a `.status.md`.
|
|
39
|
+
- **Preparing a handoff:** Moving a project between teams or agents? This is the context document.
|
|
40
|
+
- **Before a major decision:** Understanding the full state before deciding what to change.
|
|
41
|
+
- **When a project feels opaque:** Structure reduces confusion. The template imposes coherence on complexity.
|
|
42
|
+
- **After running the `repo-status` skill:** This template is Phase 4 of that workflow.
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## III. The Template Structure
|
|
47
|
+
|
|
48
|
+
The status document has 10 sections. Each one has a specific job.
|
|
49
|
+
|
|
50
|
+
### Section 1: Vision & Purpose
|
|
51
|
+
**Job:** Anchor everything that follows. One sentence + core principles.
|
|
52
|
+
|
|
53
|
+
Why it matters: Without a stated purpose, status updates become lists of things. With one, they become a story about progress toward a goal.
|
|
54
|
+
|
|
55
|
+
```markdown
|
|
56
|
+
## 1. Vision & Purpose
|
|
57
|
+
> [One sentence capturing what the project is and why it exists.]
|
|
58
|
+
**Core Principles:** [3-5 comma-separated principles]
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### Section 2: Current State
|
|
62
|
+
**Job:** Instant pulse check. A table of major areas with emoji status and brief notes.
|
|
63
|
+
|
|
64
|
+
Why it matters: Someone glancing at this document for 5 seconds should know if things are healthy or on fire. The emoji table achieves this.
|
|
65
|
+
|
|
66
|
+
```markdown
|
|
67
|
+
## 2. Current State
|
|
68
|
+
| Area | Status | Notes |
|
|
69
|
+
| :--- | :--- | :--- |
|
|
70
|
+
| **[Major Area]** | β
/π/β οΈ/β | [One-line note] |
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
**Status Key:**
|
|
74
|
+
- β
Complete/Healthy
|
|
75
|
+
- π In Progress
|
|
76
|
+
- βΈοΈ Paused
|
|
77
|
+
- β οΈ Concern
|
|
78
|
+
- β Blocked/Critical
|
|
79
|
+
|
|
80
|
+
### Section 3: Directory Structure
|
|
81
|
+
**Job:** Annotated filesystem map. Every significant directory gets a status emoji and note.
|
|
82
|
+
|
|
83
|
+
Why it matters: Most codebases lack a visual map of what's where. An annotated tree is worth a thousand words for spatial orientation.
|
|
84
|
+
|
|
85
|
+
Use `π¦` for legacy/deprecated directories. Use `β` for empty or minimal ones.
|
|
86
|
+
|
|
87
|
+
### Section 4: Semantic Clusters
|
|
88
|
+
**Job:** Group components by *what they do*, not where they live.
|
|
89
|
+
|
|
90
|
+
Why it matters: This is the behavioral architecture. A feature spans frontend + backend + database + tests. Clusters reveal the system's capabilities as cross-cutting concerns.
|
|
91
|
+
|
|
92
|
+
If using semantic clusters, invoke the `semantic-clusters` skill for the full framework. Otherwise, this section can be simplified to a feature list with health assessments.
|
|
93
|
+
|
|
94
|
+
For each cluster:
|
|
95
|
+
```markdown
|
|
96
|
+
### [emoji] [VERB] β [Short Description]
|
|
97
|
+
> [One sentence explaining this capability.]
|
|
98
|
+
| Component | Location | Status | LOC |
|
|
99
|
+
|-----------|----------|--------|-----|
|
|
100
|
+
**Health:** [emoji] [assessment]
|
|
101
|
+
**Audit Notes:** [key technical details]
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
### Section 5: File Importance Ranking
|
|
105
|
+
**Job:** Rank files by criticality so people know what not to break.
|
|
106
|
+
|
|
107
|
+
Why it matters: In a 500-file codebase, 10 files are critical, 10 are important, and the rest are supporting. Making this explicit prevents accidental damage to core files.
|
|
108
|
+
|
|
109
|
+
Four tiers: Critical (system breaks without these), Important (features break), Supporting (graceful degradation), Knowledge (development-time only).
|
|
110
|
+
|
|
111
|
+
### Section 6: Health Assessment
|
|
112
|
+
**Job:** Honest checkup. Critical issues, security, sustainability.
|
|
113
|
+
|
|
114
|
+
Why it matters: This is the health-audit perspective. Every project has blind spots β security gaps, test coverage holes, manual processes that should be automated. This section forces them into the light.
|
|
115
|
+
|
|
116
|
+
Three categories:
|
|
117
|
+
- **Critical Issues:** Can it build? Critical vulnerabilities? Main branch broken?
|
|
118
|
+
- **Security:** Secrets management, auth, encryption, access control.
|
|
119
|
+
- **Sustainability:** Test coverage, CI/CD, tech debt, documentation freshness.
|
|
120
|
+
|
|
121
|
+
### Section 7: Active Workstreams
|
|
122
|
+
**Job:** What's being worked on right now, by whom.
|
|
123
|
+
|
|
124
|
+
A table: `Workstream | Owner | Status | Focus`
|
|
125
|
+
|
|
126
|
+
### Section 8: Blockers & Dependencies
|
|
127
|
+
**Job:** What's preventing progress. Be ruthlessly honest.
|
|
128
|
+
|
|
129
|
+
If nothing is blocking, say "None." That's valuable information too.
|
|
130
|
+
|
|
131
|
+
### Section 9: Next Steps
|
|
132
|
+
**Job:** Concrete, actionable items. Numbered list with emoji status.
|
|
133
|
+
|
|
134
|
+
Not aspirational goals β specific things that should happen next.
|
|
135
|
+
|
|
136
|
+
### Section 10: Aggregate Statistics
|
|
137
|
+
**Job:** Summary numbers table for quick reference.
|
|
138
|
+
|
|
139
|
+
LOC, file counts, package counts, test coverage, migration counts, CI/CD workflow counts, versions shipped.
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
## IV. How to Fill the Template
|
|
144
|
+
|
|
145
|
+
Read `references/complete-template.md` for the full, copy-paste-ready template with all sections, placeholders, and HTML comments for guidance.
|
|
146
|
+
|
|
147
|
+
**The filling process:**
|
|
148
|
+
|
|
149
|
+
1. **Start with Section 1.** If you can't write the vision in one sentence, you don't understand the project well enough yet. Go back and read more.
|
|
150
|
+
2. **Fill Section 2 next.** The current state table forces you to identify the major areas. This becomes your map for the rest.
|
|
151
|
+
3. **Sections 3-4 require exploration.** Walk the filesystem, read key files, count LOC. This is the most time-consuming part.
|
|
152
|
+
4. **Section 5 requires judgment.** Which 10 files, if deleted, would break the system? Which 10 more would break major features?
|
|
153
|
+
5. **Section 6 requires honesty.** The health assessment is useless if it's all green. Every project has concerns. Find them.
|
|
154
|
+
6. **Sections 7-9 require current knowledge.** Talk to the team, read recent PRs, check the issue tracker.
|
|
155
|
+
7. **Section 10 is verification.** Run `find` and `wc -l` to get real numbers. Don't guess.
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## V. Best Practices
|
|
160
|
+
|
|
161
|
+
- **Dot-prefix the file.** Save as `.status.md` to keep it discoverable but out of the way. It complements (doesn't replace) a lightweight `STATUS.md`.
|
|
162
|
+
- **Update incrementally.** After the first write, subsequent updates should diff against the existing document, not regenerate from scratch.
|
|
163
|
+
- **Emoji consistency.** Use the same status key everywhere. Mixing conventions creates noise.
|
|
164
|
+
- **Be concise in tables.** Each table cell should be scannable in under 3 seconds. Full sentences belong in prose sections, not tables.
|
|
165
|
+
- **The directory tree should be 2-3 levels deep** for most directories, deeper only for architecturally significant subtrees.
|
|
166
|
+
- **Statistics will drift.** Within 10% is accurate enough. Note the date so readers know how fresh the numbers are.
|
|
167
|
+
- **Section 4 is optional for simple projects.** If the project has fewer than 50 files, skip semantic clusters and use a flat feature list instead.
|
|
168
|
+
- **Section 5 is optional for small projects.** Below 100 files, importance ranking adds little value.
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
172
|
+
## VI. Adapting the Template
|
|
173
|
+
|
|
174
|
+
Not every project needs all 10 sections. Here's a sizing guide:
|
|
175
|
+
|
|
176
|
+
| Project Size | Sections to Include |
|
|
177
|
+
|-------------|-------------------|
|
|
178
|
+
| **Small** (< 50 files) | 1, 2, 3, 6, 7, 9 |
|
|
179
|
+
| **Medium** (50-300 files) | 1, 2, 3, 4 (simplified), 6, 7, 8, 9, 10 |
|
|
180
|
+
| **Large** (300+ files) | All 10 sections |
|
|
181
|
+
| **Monorepo** | All 10, with sub-sections per package/service |
|
|
182
|
+
|
|
183
|
+
For non-software projects (documentation sites, design systems, data pipelines), adapt the vocabulary but keep the structure. Section 4 clusters might become "capabilities" or "data flows" instead of "action verbs."
|
|
184
|
+
|
|
185
|
+
---
|
|
186
|
+
|
|
187
|
+
## VII. Quality Checklist
|
|
188
|
+
|
|
189
|
+
Before delivering the `.status.md`, confirm:
|
|
190
|
+
|
|
191
|
+
- [ ] Vision statement is present, accurate, and one sentence
|
|
192
|
+
- [ ] Current state table covers every major subsystem
|
|
193
|
+
- [ ] Directory tree is annotated with status emojis
|
|
194
|
+
- [ ] Health assessment is honest (not all green)
|
|
195
|
+
- [ ] Active workstreams reflect actual current work (not aspirations)
|
|
196
|
+
- [ ] Blockers section is truthful (empty or populated, not missing)
|
|
197
|
+
- [ ] Next steps are concrete and actionable (not "improve things")
|
|
198
|
+
- [ ] Statistics are programmatically verified (not guessed)
|
|
199
|
+
- [ ] The document reads coherently top-to-bottom
|
|
200
|
+
- [ ] The document is dated with `Last Updated`
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## OpenClaw Tool Integration
|
|
204
|
+
|
|
205
|
+
When running inside the Dojo Genesis plugin:
|
|
206
|
+
|
|
207
|
+
1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
|
|
208
|
+
2. **During** the skill, follow the workflow steps documented above
|
|
209
|
+
3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
|
|
210
|
+
4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
|
|
211
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dojo-genesis-plugin-status-template",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Write status docs using 10-section template",
|
|
5
|
+
"author": "dojo-genesis",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"permissions": [],
|
|
8
|
+
"entry": "SKILL.md",
|
|
9
|
+
"tags": ["dojo-genesis", "orchestration", "system", "health"],
|
|
10
|
+
"models": ["claude-*", "gpt-*", "gemini-*"],
|
|
11
|
+
"minOpenClawVersion": "2026.1.0"
|
|
12
|
+
}
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
# Complete .status.md Template
|
|
2
|
+
|
|
3
|
+
**Purpose:** Copy this template and fill in every section. Delete all HTML comments and placeholders before saving.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
```markdown
|
|
8
|
+
# [Project Name] β Comprehensive System Status
|
|
9
|
+
|
|
10
|
+
**Author:** [Who generated this]
|
|
11
|
+
**Status:** [Active & Evolving | On Hold | Complete]
|
|
12
|
+
**Last Updated:** [YYYY-MM-DD]
|
|
13
|
+
**Methodology:** status-template skill (status-writing + file-management + health-audit)
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## 1. Vision & Purpose
|
|
18
|
+
|
|
19
|
+
> [One compelling sentence capturing what this project is and why it exists.]
|
|
20
|
+
|
|
21
|
+
**Core Principles:** [3-5 comma-separated principles, e.g., Privacy-first, Observable, Adaptive]
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## 2. Current State
|
|
26
|
+
|
|
27
|
+
| Area | Status | Notes |
|
|
28
|
+
| :--- | :--- | :--- |
|
|
29
|
+
| **[Major Area 1]** | [emoji] | [Brief note] |
|
|
30
|
+
| **[Major Area 2]** | [emoji] | [Brief note] |
|
|
31
|
+
| **[Major Area 3]** | [emoji] | [Brief note] |
|
|
32
|
+
|
|
33
|
+
**Status Key:**
|
|
34
|
+
- β
**Complete/Healthy:** Done and verified.
|
|
35
|
+
- π **In Progress:** Actively being worked on.
|
|
36
|
+
- βΈοΈ **Paused:** Intentionally on hold.
|
|
37
|
+
- β οΈ **Concern:** Needs attention but not blocking.
|
|
38
|
+
- β **Blocked/Critical:** Halted or failing.
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## 3. Directory Structure & Folder Status
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
project-root/ [emoji] [short note]
|
|
46
|
+
βββ [dir1]/ [emoji] [note]
|
|
47
|
+
β βββ [subdir1]/ [emoji] [note]
|
|
48
|
+
β βββ [subdir2]/ [emoji] [note]
|
|
49
|
+
βββ [dir2]/ [emoji] [note]
|
|
50
|
+
β βββ [subdir]/ [emoji] [note]
|
|
51
|
+
βββ [file1.ext] [emoji] [note]
|
|
52
|
+
βββ [file2.ext] [emoji] [note]
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## 4. Semantic Action-Verb Clusters
|
|
58
|
+
|
|
59
|
+
<!-- Use the semantic-clusters skill for the full framework.
|
|
60
|
+
For simpler projects, replace with a flat feature list. -->
|
|
61
|
+
|
|
62
|
+
### [emoji] [VERB] β [Short Description]
|
|
63
|
+
|
|
64
|
+
> [One sentence explaining what this capability means for the system.]
|
|
65
|
+
|
|
66
|
+
| Component | Location | Status | LOC |
|
|
67
|
+
|-----------|----------|--------|-----|
|
|
68
|
+
| [Name] | [path/to/component/] | [emoji] | [number] |
|
|
69
|
+
|
|
70
|
+
**Health:** [emoji] [1-line assessment]
|
|
71
|
+
**Audit Notes:** [Key technical details, 1-2 lines max.]
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
<!-- Repeat for each cluster. -->
|
|
76
|
+
|
|
77
|
+
### Cross-Cluster Components
|
|
78
|
+
|
|
79
|
+
| Component | Directory | Primary Cluster | Notes |
|
|
80
|
+
|-----------|-----------|----------------|-------|
|
|
81
|
+
| [Name] | [path/] | [VERB] | [Why it's cross-cluster] |
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## 5. File Importance Ranking
|
|
86
|
+
|
|
87
|
+
### Tier 1 β Critical (System won't function without these)
|
|
88
|
+
|
|
89
|
+
| Rank | File | Why |
|
|
90
|
+
|------|------|-----|
|
|
91
|
+
| 1 | [path/to/file] | [One-line justification] |
|
|
92
|
+
|
|
93
|
+
### Tier 2 β Important (Core features break without these)
|
|
94
|
+
|
|
95
|
+
| Rank | File | Why |
|
|
96
|
+
|------|------|-----|
|
|
97
|
+
| 11 | [path/to/file] | [One-line justification] |
|
|
98
|
+
|
|
99
|
+
### Tier 3 β Supporting (Degrade gracefully without these)
|
|
100
|
+
|
|
101
|
+
| Rank | File | Why |
|
|
102
|
+
|------|------|-----|
|
|
103
|
+
| 21-25 | [path/to/files] | [Category description] |
|
|
104
|
+
|
|
105
|
+
### Tier 4 β Knowledge (Essential for development, not runtime)
|
|
106
|
+
|
|
107
|
+
| Rank | File | Why |
|
|
108
|
+
|------|------|-----|
|
|
109
|
+
| 51 | [path/to/file] | [One-line justification] |
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## 6. Health Assessment
|
|
114
|
+
|
|
115
|
+
### Critical Issues
|
|
116
|
+
- **[None / List issues]**
|
|
117
|
+
|
|
118
|
+
### Security
|
|
119
|
+
|
|
120
|
+
| Area | Status | Notes |
|
|
121
|
+
|------|--------|-------|
|
|
122
|
+
| Secret management | [emoji] | [Assessment] |
|
|
123
|
+
| Authentication | [emoji] | [Assessment] |
|
|
124
|
+
| Authorization | [emoji] | [Assessment] |
|
|
125
|
+
| Encryption | [emoji] | [Assessment] |
|
|
126
|
+
|
|
127
|
+
### Sustainability
|
|
128
|
+
|
|
129
|
+
| Area | Status | Notes |
|
|
130
|
+
|------|--------|-------|
|
|
131
|
+
| Backend test coverage | [emoji] | [Percentage + assessment] |
|
|
132
|
+
| Frontend test coverage | [emoji] | [Percentage + assessment] |
|
|
133
|
+
| CI/CD automation | [emoji] | [Workflow count + assessment] |
|
|
134
|
+
| Technical debt | [emoji] | [Assessment] |
|
|
135
|
+
| Documentation | [emoji] | [File count + assessment] |
|
|
136
|
+
| Manual processes | [emoji] | [List any] |
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
## 7. Active Workstreams
|
|
141
|
+
|
|
142
|
+
| Workstream | Owner/Agent | Status | Focus |
|
|
143
|
+
|------------|-------------|--------|-------|
|
|
144
|
+
| [Name] | [Who] | [emoji] | [What they're doing] |
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
## 8. Blockers & Dependencies
|
|
149
|
+
|
|
150
|
+
- **[Blocker description]** β [Impact and who owns resolution]
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## 9. Next Steps
|
|
155
|
+
|
|
156
|
+
1. [emoji] [Concrete, actionable task]
|
|
157
|
+
2. [emoji] [Concrete, actionable task]
|
|
158
|
+
3. [emoji] [Concrete, actionable task]
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
## 10. Aggregate Statistics
|
|
163
|
+
|
|
164
|
+
| Metric | Value |
|
|
165
|
+
|--------|-------|
|
|
166
|
+
| Total [primary language] LOC | ~[number] |
|
|
167
|
+
| Total [primary language] files | [number] |
|
|
168
|
+
| Total [secondary language] LOC | ~[number] |
|
|
169
|
+
| Total [secondary language] files | [number] |
|
|
170
|
+
| Total [tools/endpoints] | [number] |
|
|
171
|
+
| Total documentation files | [number] |
|
|
172
|
+
| Total migrations | [number] |
|
|
173
|
+
| Total CI/CD workflows | [number] |
|
|
174
|
+
| Versions shipped | [number] |
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
---
|
|
180
|
+
|
|
181
|
+
## Template Notes
|
|
182
|
+
|
|
183
|
+
1. **Delete all HTML comments** before saving the final document.
|
|
184
|
+
2. **Adapt section count to project size:**
|
|
185
|
+
- Small (< 50 files): Sections 1, 2, 3, 6, 7, 9
|
|
186
|
+
- Medium (50-300 files): Sections 1-3, 4 (simplified), 6-10
|
|
187
|
+
- Large (300+ files): All 10 sections
|
|
188
|
+
3. **Emoji status key must be consistent** across all sections.
|
|
189
|
+
4. **LOC is approximate.** Use `~` prefix. Within 10% accuracy is fine.
|
|
190
|
+
5. **Directory tree depth:** 2-3 levels default, deeper for architecturally significant areas.
|
|
191
|
+
6. **Cross-cluster table** (Section 4) is only needed when using semantic action-verb clusters. For simpler projects using a flat feature list, skip it.
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: status-writing
|
|
3
|
+
description: Write and update STATUS.md files to provide at-a-glance visibility into project health as a single source of truth. Use at project start, during weekly syncs, after major releases, or whenever project status significantly changes. Trigger phrases: 'create a status file', 'update the project status', 'what's the current state', 'document where we are', 'create a status dashboard'.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
> **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run status-writing`.
|
|
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
|
+
# Status Writer Skill
|
|
12
|
+
|
|
13
|
+
**Version:** 1.0
|
|
14
|
+
**Created:** 2026-02-04
|
|
15
|
+
**Author:** Manus AI
|
|
16
|
+
**Purpose:** To provide a structured, repeatable process for writing and updating `STATUS.md` files, turning project tracking into a mindful and transparent practice.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## I. The Philosophy: The Ritual of Bearing Witness
|
|
21
|
+
|
|
22
|
+
A `STATUS.md` file is more than a report; it is a **Ritual of Bearing Witness**. It is a practice of radical honesty about where a project truly isβnot where we wish it were, or where it is supposed to be. It is a pause to see clearly, without judgment, the current state of our work.
|
|
23
|
+
|
|
24
|
+
This ritual combats the natural tendency for entropy and confusion to creep into complex projects. It provides a single, trusted source of truth that grounds our conversations and decisions in reality. By maintaining this document with care, we cultivate transparency, accountability, and a shared understanding of our journey.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## II. When to Use This Skill
|
|
29
|
+
|
|
30
|
+
- **At the beginning of a new project:** To establish the initial state and vision.
|
|
31
|
+
- **At the start and end of a work session:** To frame the day's work and document its outcome.
|
|
32
|
+
- **During a weekly sync:** To facilitate a high-level review of all active projects.
|
|
33
|
+
- **Whenever there is a significant change in project status:** (e.g., a new blocker emerges, a major milestone is reached).
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## III. The Status Update Workflow
|
|
38
|
+
|
|
39
|
+
### Step 1: Locate or Create the `STATUS.md` File
|
|
40
|
+
|
|
41
|
+
Navigate to the root of the project repository. If a `STATUS.md` file does not exist, create one using the template from Section IV of this skill.
|
|
42
|
+
|
|
43
|
+
### Step 2: Update the Header
|
|
44
|
+
|
|
45
|
+
Change the `Last Updated` date to the current date.
|
|
46
|
+
|
|
47
|
+
### Step 3: Review and Update Each Section
|
|
48
|
+
|
|
49
|
+
Go through each section of the `STATUS.md` file and update it to reflect the current reality.
|
|
50
|
+
|
|
51
|
+
- **Vision & Purpose:** This should rarely change, but it is good to re-read it to stay grounded.
|
|
52
|
+
- **Current State:** This is the most important section. Update the status of each area using the emoji key (β
, π, βΈοΈ, β). Add or remove items as the project evolves.
|
|
53
|
+
- **Active Workstreams:** What are you actively working on *right now*? Update the tasks and progress.
|
|
54
|
+
- **Blockers & Dependencies:** Be ruthlessly honest about what is preventing progress. If a blocker is resolved, remove it.
|
|
55
|
+
- **Next Steps:** What is the immediate next action? This should be concrete and actionable.
|
|
56
|
+
|
|
57
|
+
### Step 4: Commit the Changes
|
|
58
|
+
|
|
59
|
+
Commit the updated `STATUS.md` file with a clear and descriptive commit message.
|
|
60
|
+
|
|
61
|
+
**Commit Message Convention:**
|
|
62
|
+
`docs(status): Update [Project Name] status for [Date]`
|
|
63
|
+
|
|
64
|
+
**Example:**
|
|
65
|
+
`docs(status): Update AROMA status for 2026-02-04`
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## IV. `STATUS.md` Template
|
|
70
|
+
|
|
71
|
+
```markdown
|
|
72
|
+
# [Project Name] Project Status
|
|
73
|
+
|
|
74
|
+
**Author:** [Your Name]
|
|
75
|
+
**Status:** [Active & Evolving | On Hold | Complete]
|
|
76
|
+
**Last Updated:** [YYYY-MM-DD]
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## 1. Vision & Purpose
|
|
81
|
+
|
|
82
|
+
> [A single, compelling sentence that captures the essence of this project.]
|
|
83
|
+
|
|
84
|
+
**Core Principles:**
|
|
85
|
+
- [Principle 1]
|
|
86
|
+
- [Principle 2]
|
|
87
|
+
- [Principle 3]
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## 2. Current State
|
|
92
|
+
|
|
93
|
+
[A brief, high-level summary of the project's current phase or condition.]
|
|
94
|
+
|
|
95
|
+
| Area | Status | Notes |
|
|
96
|
+
| :--- | :--- | :--- |
|
|
97
|
+
| **[Key Area 1]** | [β
/π/βΈοΈ/β] | [Brief, relevant notes.] |
|
|
98
|
+
| **[Key Area 2]** | [β
/π/βΈοΈ/β] | [Brief, relevant notes.] |
|
|
99
|
+
| **[Key Area 3]** | [β
/π/βΈοΈ/β] | [Brief, relevant notes.] |
|
|
100
|
+
|
|
101
|
+
**Status Key:**
|
|
102
|
+
- β
**Complete:** The work is done and verified.
|
|
103
|
+
- π **In Progress:** Actively being worked on.
|
|
104
|
+
- βΈοΈ **Paused:** Intentionally on hold.
|
|
105
|
+
- β **Blocked:** Progress is halted due to a dependency or issue.
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## 3. Active Workstreams
|
|
110
|
+
|
|
111
|
+
[What are we actively working on right now? Be specific.]
|
|
112
|
+
|
|
113
|
+
1. **[Workstream 1]:**
|
|
114
|
+
- **Task:** [Description of the current task.]
|
|
115
|
+
- **Progress:** [e.g., 75% complete, waiting for review]
|
|
116
|
+
|
|
117
|
+
2. **[Workstream 2]:**
|
|
118
|
+
- **Task:** [Description of the current task.]
|
|
119
|
+
- **Progress:** [e.g., Just started, gathering requirements]
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
## 4. Blockers & Dependencies
|
|
124
|
+
|
|
125
|
+
[What is preventing progress? Be ruthlessly honest.]
|
|
126
|
+
|
|
127
|
+
- **[Blocker 1]:** [Description of the blocker and its impact.]
|
|
128
|
+
- **Owner:** [Who is responsible for resolving this?]
|
|
129
|
+
- **Next Step:** [What is the next action to resolve this?]
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
## 5. Next Steps
|
|
134
|
+
|
|
135
|
+
[What are the immediate next actions for this project?]
|
|
136
|
+
|
|
137
|
+
1. [A concrete, actionable task.]
|
|
138
|
+
2. [A concrete, actionable task.]
|
|
139
|
+
3. [A concrete, actionable task.]
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## V. Best Practices
|
|
145
|
+
|
|
146
|
+
- **Be Honest:** The value of this document is its truthfulness. Do not sugarcoat bad news.
|
|
147
|
+
- **Be Concise:** Use bullet points and short sentences. This is a dashboard, not a novel.
|
|
148
|
+
- **Use the Emoji Key:** The emojis provide an instant visual summary of project health.
|
|
149
|
+
- **Update Regularly:** A stale status document is worse than no status document. Make it a habit.
|
|
150
|
+
- **Focus on the 'What', Not the 'Who':** The status is about the project, not the people. Frame blockers and issues impersonally.
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## OpenClaw Tool Integration
|
|
154
|
+
|
|
155
|
+
When running inside the Dojo Genesis plugin:
|
|
156
|
+
|
|
157
|
+
1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
|
|
158
|
+
2. **During** the skill, follow the workflow steps documented above
|
|
159
|
+
3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
|
|
160
|
+
4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
|
|
161
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dojo-genesis-plugin-status-writing",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Write and update STATUS.md files",
|
|
5
|
+
"author": "dojo-genesis",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"permissions": [],
|
|
8
|
+
"entry": "SKILL.md",
|
|
9
|
+
"tags": ["dojo-genesis", "orchestration", "system", "health"],
|
|
10
|
+
"models": ["claude-*", "gpt-*", "gemini-*"],
|
|
11
|
+
"minOpenClawVersion": "2026.1.0"
|
|
12
|
+
}
|