@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,168 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: project-exploration
|
|
3
|
+
description: Explore a new project's philosophy and patterns before committing to collaboration. Assess architecture fit, map resonances, and identify entry points. Use when encountering a new codebase, repository, or project. Trigger phrases include 'explore this project', 'assess this codebase', 'should we collaborate on this', 'onboard me to this repo', 'evaluate this project for fit'.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
> **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run project-exploration`.
|
|
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
|
+
# Project Exploration Skill
|
|
12
|
+
|
|
13
|
+
**Version:** 1.0
|
|
14
|
+
**Author:** Tres Pies Design
|
|
15
|
+
**Purpose:** Structured process for respectfully exploring a new project to determine collaboration readiness and fit before committing.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Philosophy: Exploration Before Commitment
|
|
20
|
+
|
|
21
|
+
When encountering a large project or codebase, explore its philosophy and patterns before diving into implementation. The goal is not just to understand the code, but to understand the project's relationship to your goals, values, and existing knowledge.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Core Principles
|
|
26
|
+
|
|
27
|
+
- **Progressive Disclosure:** Do not attempt to read everything at once. Start with a high-level overview and drill down as needed.
|
|
28
|
+
- **Incremental Synthesis:** Save findings as you go. Externalize understanding to prevent information loss.
|
|
29
|
+
- **Seek Conceptual Clarity:** Prioritize understanding the core philosophy, values, and goals before implementation details.
|
|
30
|
+
- **Map Connections:** Understand the project's relationship to your existing knowledge and skills. Explicitly map resonances.
|
|
31
|
+
- **Express Genuine Enthusiasm:** Collaboration is relational. Output should reflect genuine interest and readiness to contribute.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## When to Use This Skill
|
|
36
|
+
|
|
37
|
+
- Invited to collaborate on a project with a large existing codebase
|
|
38
|
+
- Evaluating whether to adopt a library, framework, or tool
|
|
39
|
+
- Onboarding to a new team's repository
|
|
40
|
+
- Assessing whether a project's architecture supports your goals
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## The 5-Phase Exploration Process
|
|
45
|
+
|
|
46
|
+
### Phase 1: First Impressions — Map the Terrain
|
|
47
|
+
|
|
48
|
+
Get a high-level overview of structure and scope.
|
|
49
|
+
|
|
50
|
+
1. **Read the README** — What is this project? Who built it? What's its stated purpose?
|
|
51
|
+
2. **Scan project structure** — List top-level directories and key files. Identify organizational patterns.
|
|
52
|
+
3. **Check recent activity** — Last commit, release cadence, contributor count. Is this project alive?
|
|
53
|
+
4. **Document initial findings** — Create an initial overview of themes, structure, and first impressions.
|
|
54
|
+
|
|
55
|
+
**Output:** Project overview with structure analysis and activity assessment.
|
|
56
|
+
|
|
57
|
+
### Phase 2: Architecture Mapping — Taste the Water
|
|
58
|
+
|
|
59
|
+
Select 2-3 key documents or files to understand core content and patterns.
|
|
60
|
+
|
|
61
|
+
1. **Identify entry points** — Main module, config files, core abstractions
|
|
62
|
+
2. **Map behavioral capabilities** — Use semantic-clusters approach: what does this project actually *do*?
|
|
63
|
+
3. **Identify patterns** — What architectural patterns does it follow? (MVC, plugin architecture, event-driven, etc.)
|
|
64
|
+
4. **Note dependencies** — Key external dependencies and their role
|
|
65
|
+
|
|
66
|
+
**Output:** Architecture snapshot with capability map and pattern inventory.
|
|
67
|
+
|
|
68
|
+
### Phase 3: Assess Fit — Build the Bridge
|
|
69
|
+
|
|
70
|
+
Evaluate against user's goals and constraints.
|
|
71
|
+
|
|
72
|
+
1. **Alignment check** — Does this project's architecture support what the user wants to do?
|
|
73
|
+
2. **Pattern compatibility** — Are the patterns compatible with existing work?
|
|
74
|
+
3. **Health assessment** — Is the codebase healthy enough to build on? (Test coverage, documentation quality, code style consistency)
|
|
75
|
+
4. **Resonance mapping** — Connect the project's philosophy to existing knowledge:
|
|
76
|
+
|
|
77
|
+
| Project Principle | Existing Principle/Pattern | Shared Insight |
|
|
78
|
+
| :--- | :--- | :--- |
|
|
79
|
+
| [Principle from project] | [Your relevant pattern] | [The connection] |
|
|
80
|
+
|
|
81
|
+
### Phase 4: Identify Entry Points
|
|
82
|
+
|
|
83
|
+
Where would a new collaborator start?
|
|
84
|
+
|
|
85
|
+
1. **Most approachable areas** — Well-documented, well-tested, clear interfaces
|
|
86
|
+
2. **Most impactful areas** — Where contribution would add the most value
|
|
87
|
+
3. **Most risky areas** — Complex, poorly documented, or tightly coupled
|
|
88
|
+
4. **Quick wins** — Small improvements that build familiarity
|
|
89
|
+
|
|
90
|
+
### Phase 5: Synthesis — The Exploration Brief
|
|
91
|
+
|
|
92
|
+
Produce a comprehensive assessment.
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
## Fit Classification
|
|
97
|
+
|
|
98
|
+
| Rating | Meaning | Guidance |
|
|
99
|
+
|--------|---------|----------|
|
|
100
|
+
| **GREEN** | Strong fit. Architecture supports goals, patterns are compatible, codebase is healthy. | Proceed with collaboration. Start with recommended entry points. |
|
|
101
|
+
| **YELLOW** | Partial fit. Some concerns about architecture, patterns, or health. Manageable with effort. | Proceed with caution. Address concerns before deep investment. |
|
|
102
|
+
| **RED** | Poor fit. Fundamental misalignment in architecture, philosophy, or health. | Reconsider collaboration. Document concerns for future reference. |
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## Output Format: Exploration Brief
|
|
107
|
+
|
|
108
|
+
```markdown
|
|
109
|
+
## Exploration Brief: [Project Name]
|
|
110
|
+
|
|
111
|
+
**Date:** [Date]
|
|
112
|
+
**Repository:** [URL or path]
|
|
113
|
+
**Explorer:** [Name]
|
|
114
|
+
|
|
115
|
+
### Project Summary
|
|
116
|
+
|
|
117
|
+
[What this project is, who built it, what it does, and its core philosophy in 2-3 sentences.]
|
|
118
|
+
|
|
119
|
+
### Architecture Snapshot
|
|
120
|
+
|
|
121
|
+
**Structure:** [High-level organization]
|
|
122
|
+
**Key Patterns:** [Architectural patterns used]
|
|
123
|
+
**Core Dependencies:** [Major external dependencies]
|
|
124
|
+
**Activity:** [Last commit, release cadence, contributor count]
|
|
125
|
+
|
|
126
|
+
### Fit Assessment: [GREEN / YELLOW / RED]
|
|
127
|
+
|
|
128
|
+
**Alignment:** [Does this support your goals?]
|
|
129
|
+
**Pattern Compatibility:** [Are patterns compatible?]
|
|
130
|
+
**Codebase Health:** [Test coverage, docs quality, consistency]
|
|
131
|
+
|
|
132
|
+
### Resonance Map
|
|
133
|
+
|
|
134
|
+
| Project Principle | Existing Principle | Shared Insight |
|
|
135
|
+
| :--- | :--- | :--- |
|
|
136
|
+
| [Principle] | [Your pattern] | [Connection] |
|
|
137
|
+
|
|
138
|
+
### Recommended Entry Points
|
|
139
|
+
|
|
140
|
+
1. **[Area 1]:** [Why start here] — Risk: Low/Med/High
|
|
141
|
+
2. **[Area 2]:** [Why start here] — Risk: Low/Med/High
|
|
142
|
+
|
|
143
|
+
### Risks & Concerns
|
|
144
|
+
|
|
145
|
+
- [Risk 1: description and mitigation]
|
|
146
|
+
- [Risk 2: description and mitigation]
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## Quality Criteria
|
|
152
|
+
|
|
153
|
+
- [ ] First impressions phase completed before architecture deep-dive
|
|
154
|
+
- [ ] Fit assessment uses GREEN/YELLOW/RED classification
|
|
155
|
+
- [ ] Resonance map connects project to existing knowledge
|
|
156
|
+
- [ ] Entry points ranked by approachability and impact
|
|
157
|
+
- [ ] Risks identified with mitigation strategies
|
|
158
|
+
---
|
|
159
|
+
|
|
160
|
+
## OpenClaw Tool Integration
|
|
161
|
+
|
|
162
|
+
When running inside the Dojo Genesis plugin:
|
|
163
|
+
|
|
164
|
+
1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
|
|
165
|
+
2. **During** the skill, follow the workflow steps documented above
|
|
166
|
+
3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
|
|
167
|
+
4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
|
|
168
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dojo-genesis-plugin-project-exploration",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Explore new projects to assess collaboration potential",
|
|
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
|
+
}
|