OpenClaw Integration: This skill is invoked by the Dojo Genesis plugin via /dojo run seed-library.
The agent receives project context automatically via the before_agent_start hook.
Use dojo_get_context for full state, dojo_save_artifact to persist outputs,
and dojo_update_state to record phase transitions and decisions.
Seed Module Library
Manage and apply the 10 Dojo Seed Patches plus 3 field seeds as reusable thinking modules. The core seeds derive from Dataiku research; the field seeds emerged from direct practice. Make enterprise-grade agent patterns accessible, consistent, and evolvable.
When to Use This Skill
Trigger this skill when:
- User asks "What seed applies here?" or "Which pattern should I use?"
- Keywords match seed triggers (governance, multi-agent, cost, context, routing, etc.)
- Architecting new features or systems
- Debugging complex issues
- Optimizing costs or performance
- Building trust through transparency
The 10 Core Seeds
- Three-Tiered Governance - Strategic/Tactical/Operational framework
- Harness Trace - Nested spans + events for traceability
- Context Iceberg - 6x token multiplier, hierarchical loading
- Agent Connect - Routing-first, not swarm-first
- Go-Live Bundles - Reusable artifacts (DojoPacket)
- Cost Guard - Budget for full iceberg (5-10x multiplier)
- Safety Switch - Fallback to conservative mode
- Implicit Perspective Extraction - Extract from constraints/metaphors
- Mode-Based Complexity Gating - 3-question test
- Shared Infrastructure - Build once, reuse everywhere
Meta-Seed: Governance Multiplies Velocity
Field Seeds (From Practice)
- Voice Before Structure - Read design language before writing structural artifacts
- Pointer Directories - Empty directories are references, not gaps
- Granular Visibility - Progress tracking serves the user, not the agent
Core Workflow
1. Suggest Relevant Seeds
Based on keywords or task context:
python3.11 /home/ubuntu/skills/seed-library/scripts/suggest_seeds.py <keywords...>
Example:
python3.11 suggest_seeds.py multi-agent architecture coordination
Output:
- Top 3 relevant seeds ranked by relevance score
- Brief description of each seed
- File path to full seed content
Saved to: /home/ubuntu/seed-suggestions.md
2. Apply a Seed
Load full seed content and application guide:
python3.11 /home/ubuntu/skills/seed-library/scripts/apply_seed.py <seed_id> [session_id]
Example:
python3.11 apply_seed.py 04_agent_connect session_123
Output:
- Full seed content (What It Is, Why It Matters, The Pattern, etc.)
- Application checklist
- Next steps
- Usage tracked automatically
Saved to: /home/ubuntu/seed-<seed_id>-applied.md
Script Reference
suggest_seeds.py
Purpose: Suggest relevant seeds based on keywords
Usage:
python3.11 suggest_seeds.py <keywords...>
How it works:
- Matches keywords to seed triggers
- Calculates relevance score
- Returns top 3 suggestions
Trigger Keywords by Seed:
- 01 (Governance): governance, capabilities, complexity, multi-agent, coordination, policy, standards
- 02 (Trace): debugging, trace, transparency, performance, evaluation, logging, monitoring
- 03 (Context): token, cost, context, window, limit, budget, pruning, memory, overhead
- 04 (Agent Connect): multi-agent, routing, coordination, specialized, handoff, permission, swarm
- 05 (Bundles): export, sharing, reuse, artifact, package, bundle, repeatability, trust
- 06 (Cost Guard): cost, budget, estimation, planning, infrastructure, investment, pricing
- 07 (Safety Switch): fallback, conservative, alert, drift, failure, recovery, validation, error
- 08 (Perspective): perspective, constraint, metaphor, scope, extraction, implicit, natural
- 09 (Complexity): mode, complexity, routing, simple, query, reasoning, adaptive
- 10 (Infrastructure): infrastructure, reuse, duplication, foundation, shared, common, service
- 11 (Voice): voice, philosophy, design-language, manifest, description, ecosystem, grounding, plugin
- 12 (Pointers): empty, missing, pointer, provenance, registry, audit, gap, coverage, directory
- 13 (Visibility): progress, tracking, visibility, todo, granular, steering, trust, delegation
apply_seed.py
Purpose: Load and explain how to apply a seed
Usage:
python3.11 apply_seed.py <seed_id> [session_id]
What it does:
- Loads full seed content from
/seeds/<seed_id>.md
- Generates application guide with checklist
- Tracks usage in
/home/ubuntu/.seed-usage.json
- Saves guide to file
Seed IDs:
01_three_tiered_governance
02_harness_trace
03_context_iceberg
04_agent_connect
05_go_live_bundles
06_cost_guard
07_safety_switch
08_implicit_perspective_extraction
09_mode_based_complexity_gating
10_shared_infrastructure
meta_governance_multiplies_velocity
11_voice_before_structure
12_pointer_directories
13_granular_visibility
Seed Files
All seeds are stored in /home/ubuntu/skills/seed-library/seeds/ as markdown files.
Seed File Structure
---
seed_id: 01
name: Three-Tiered Governance
version: 1.0
created: 2026-01-12
source: Dataiku Research
status: active
---
# Seed Name
## What It Is
{description}
## Why It Matters
{rationale}
## The Pattern
{pattern description}
## Revisit Trigger
{when to apply this seed}
## Dojo Application
{how Dojo uses this pattern}
## What It Refuses
{what this pattern explicitly rejects}
## Checks
- [ ] {validation check 1}
- [ ] {validation check 2}
## Related Seeds
- {seed name}: {relationship}
Usage Tracking
The skill automatically tracks seed usage in /home/ubuntu/.seed-usage.json:
{
"seeds": {
"04_agent_connect": {
"usage_count": 3,
"last_used": "2026-01-29T12:00:00Z",
"sessions": ["session_123", "session_456"]
}
},
"session_seeds": {
"session_123": ["04_agent_connect", "10_shared_infrastructure"]
}
}
Reference Documents
seed_catalog.md
Quick reference to all 10 seeds plus meta-seed:
- One-line descriptions
- Triggers and refusals
- Seed relationships
- Usage patterns (5 common scenarios)
- Maintenance guidelines
Read this when:
- Getting overview of all seeds
- Understanding seed relationships
- Learning usage patterns
Common Use Cases
Use Case 1: Architecting Multi-Agent System
User says: "How should we architect the multi-agent system?"
Workflow:
- Run
suggest_seeds.py multi-agent architecture coordination
- Top suggestions: Agent Connect, Shared Infrastructure, Three-Tiered Governance
- Apply Seed 04 (Agent Connect)
- Follow application checklist
- Track usage
Output:
Based on your query, I recommend Agent Connect (Seed 04). This seed provides a routing-first pattern where the Supervisor acts as a single entry point, routing to specialized agents (Dojo, Librarian, Debugger, Builder) based on context. This prevents agent sprawl and keeps coordination manageable.
Use Case 2: Optimizing Token Usage
User says: "Token usage is spiking, how do we optimize?"
Workflow:
- Run
suggest_seeds.py token cost context optimization
- Top suggestions: Context Iceberg, Cost Guard, Mode-Based Complexity Gating
- Apply Seed 03 (Context Iceberg)
- Implement hierarchical context loading (Tier 1-4)
- Set pruning triggers (80%, 90%, 95%)
Output:
The Context Iceberg pattern (Seed 03) explains the 6x token multiplier from demo to production. Implement hierarchical context loading with 4 tiers, and set pruning triggers at 80% (prune Tier 4), 90% (prune Tier 3), and 95% (alert user).
Use Case 3: Debugging Unexpected Behavior
User says: "Why did Dojo choose Scout instead of Mirror?"
Workflow:
- Run
suggest_seeds.py debugging trace transparency
- Top suggestion: Harness Trace
- Apply Seed 02 (Harness Trace)
- Review trace spans for
mode_selection
- Read
metadata.reasoning
Output:
Use the Harness Trace (Seed 02) to inspect the decision path. Check the mode_selection span in the trace JSON. The metadata.reasoning field will explain why Scout was chosen over Mirror.
Use Case 4: Building Trust with Users
User says: "Users don't understand our recommendations"
Workflow:
- Run
suggest_seeds.py trust transparency trace
- Top suggestions: Harness Trace, Go-Live Bundles, Governance Multiplies Velocity
- Apply Seed 02 (Harness Trace) for transparency
- Apply Seed 05 (Go-Live Bundles) for repeatability
- Apply Meta-Seed for philosophy
Output:
Build trust through Harness Trace (transparency), Go-Live Bundles (repeatability), and the Governance Multiplies Velocity philosophy. Show users the decision path, make sessions exportable and inspectable, and emphasize that governance accelerates delivery.
Use Case 5: Planning New Feature
User says: "Let's plan the Workbench feature"
Workflow:
- Run
suggest_seeds.py planning feature governance
- Top suggestions: Three-Tiered Governance, Cost Guard, Shared Infrastructure
- Apply Seed 01 (Three-Tiered Governance)
- Define strategic (principles), tactical (standards), operational (tools)
- Apply Seed 06 (Cost Guard) to budget for 5-10x multiplier
Output:
Start with Three-Tiered Governance (Seed 01). Define strategic principles (does this align with "no autopilot"?), tactical standards (DojoPacket schema, routing logic), and operational tools (tests, traces). Then apply Cost Guard (Seed 06) to budget for the full iceberg, not just API costs.
Integration with Dojo Agent
When Dojo is reasoning, it can reference seeds:
Example:
"Considering Agent Connect (Seed 04) for this multi-agent architecture. Using Supervisor as router with transparent handoffs."
Example:
"Applying Context Iceberg (Seed 03) to manage token usage. Loading Tier 1 + Tier 2 context for this query."
Seed Relationships
Foundational Seeds (Start Here)
- 01. Three-Tiered Governance - Framework for all other seeds
- Meta. Governance Multiplies Velocity - Philosophy
Operational Seeds (Day-to-Day)
- 02. Harness Trace - Transparency and debugging
- 03. Context Iceberg - Token and cost management
- 07. Safety Switch - Error handling
- 09. Mode-Based Complexity Gating - Query routing
Architectural Seeds (System Design)
- 04. Agent Connect - Multi-agent coordination
- 10. Shared Infrastructure - Reusable services
Delivery Seeds (Shipping)
- 05. Go-Live Bundles - Packaging and reuse
- 06. Cost Guard - Budgeting and planning
UX Seeds (User Experience)
- 08. Implicit Perspective Extraction - Reduce friction
Field Seeds (From Practice)
- 11. Voice Before Structure - Ground in philosophy before writing
- 12. Pointer Directories - Understand provenance before filling gaps
- 13. Granular Visibility - Track progress for the user, not the agent
Seed Maintenance
When to Update a Seed
- Pattern evolves based on new learnings
- Better approach discovered
- User feedback suggests improvement
When to Archive a Seed
- Pattern no longer applies
- Superseded by better approach
- Context has fundamentally changed
Versioning Convention
- 1.0 - Initial version from Dataiku research
- 1.1 - Minor update (clarification, example added)
- 2.0 - Major update (pattern changed)
Update Process
- Identify need for update
- Draft new version
- Test with real scenarios
- Update seed file with "Revised:" section
- Update seed_catalog.md
- Notify users of change
Best Practices
Frequency
- Proactive: Suggest seeds during planning and design
- Reactive: Apply seeds when debugging or optimizing
- Continuous: Track usage to identify most valuable seeds
Application
- Read the full seed before applying (don't just skim)
- Follow the checklist to validate application
- Note what it refuses to avoid anti-patterns
- Track usage to measure effectiveness
Evolution
- Update when patterns evolve (not just for the sake of updating)
- Archive when obsolete (don't hoard outdated seeds)
- Version carefully (breaking changes = major version bump)
Limitations
What This Skill Does
- Suggest relevant seeds based on keywords
- Load and explain how to apply seeds
- Track usage over time
- Provide quick reference to all seeds
What This Skill Doesn't Do
- Automatically apply seeds (you still need to implement)
- Make architectural decisions for you
- Guarantee success (seeds are patterns, not silver bullets)
- Replace deep thinking (seeds guide, they don't replace reasoning)
Quick Reference
| Task |
Command |
| Suggest seeds |
python3.11 suggest_seeds.py <keywords...> |
| Apply seed |
python3.11 apply_seed.py <seed_id> |
| View catalog |
file read references/seed_catalog.md |
| Check usage |
cat /home/ubuntu/.seed-usage.json |
| List all seeds |
ls /home/ubuntu/skills/seed-library/seeds/ |
Success Metrics
- Accessibility: Find relevant seed in < 10 seconds
- Consistency: Seeds applied correctly 90%+ of the time
- Evolution: Seeds updated when patterns improve
- Reuse: Seeds used across multiple sessions
- Learning: New seeds added as patterns emerge
OpenClaw Tool Integration
When running inside the Dojo Genesis plugin:
- Start by calling
dojo_get_context to retrieve full project state, history, and artifacts
- During the skill, follow the workflow steps documented above
- Save outputs using
dojo_save_artifact with the artifacts output directory
- Update project state by calling
dojo_update_state to record skill completion and any phase transitions
1---2name: seed-library-23description: Access and apply the 10 Dojo Seed Patches plus 3 field seeds as reusable thinking modules. Use when architecting systems, optimizing costs, debugging complex issues, or grounding ecosystem-level work. Trigger phrases include "which seed applies here", "suggest a seed pattern", "apply a seed to this", "what pattern should we use", "load the seed library".4---56> **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run seed-library`.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.1011# Seed Module Library1213Manage and apply the **10 Dojo Seed Patches** plus **3 field seeds** as reusable thinking modules. The core seeds derive from Dataiku research; the field seeds emerged from direct practice. Make enterprise-grade agent patterns accessible, consistent, and evolvable.1415## When to Use This Skill1617Trigger this skill when:18- User asks "What seed applies here?" or "Which pattern should I use?"19- Keywords match seed triggers (governance, multi-agent, cost, context, routing, etc.)20- Architecting new features or systems21- Debugging complex issues22- Optimizing costs or performance23- Building trust through transparency2425## The 10 Core Seeds26271. **Three-Tiered Governance** - Strategic/Tactical/Operational framework282. **Harness Trace** - Nested spans + events for traceability293. **Context Iceberg** - 6x token multiplier, hierarchical loading304. **Agent Connect** - Routing-first, not swarm-first315. **Go-Live Bundles** - Reusable artifacts (DojoPacket)326. **Cost Guard** - Budget for full iceberg (5-10x multiplier)337. **Safety Switch** - Fallback to conservative mode348. **Implicit Perspective Extraction** - Extract from constraints/metaphors359. **Mode-Based Complexity Gating** - 3-question test3610. **Shared Infrastructure** - Build once, reuse everywhere3738**Meta-Seed:** Governance Multiplies Velocity3940### Field Seeds (From Practice)4111. **Voice Before Structure** - Read design language before writing structural artifacts4212. **Pointer Directories** - Empty directories are references, not gaps4313. **Granular Visibility** - Progress tracking serves the user, not the agent4445## Core Workflow4647### 1. Suggest Relevant Seeds4849Based on keywords or task context:5051```bash52python3.11 /home/ubuntu/skills/seed-library/scripts/suggest_seeds.py <keywords...>53```5455**Example:**56```bash57python3.11 suggest_seeds.py multi-agent architecture coordination58```5960**Output:**61- Top 3 relevant seeds ranked by relevance score62- Brief description of each seed63- File path to full seed content6465**Saved to:** `/home/ubuntu/seed-suggestions.md`6667### 2. Apply a Seed6869Load full seed content and application guide:7071```bash72python3.11 /home/ubuntu/skills/seed-library/scripts/apply_seed.py <seed_id> [session_id]73```7475**Example:**76```bash77python3.11 apply_seed.py 04_agent_connect session_12378```7980**Output:**81- Full seed content (What It Is, Why It Matters, The Pattern, etc.)82- Application checklist83- Next steps84- Usage tracked automatically8586**Saved to:** `/home/ubuntu/seed-<seed_id>-applied.md`8788## Script Reference8990### suggest_seeds.py9192**Purpose:** Suggest relevant seeds based on keywords9394**Usage:**95```bash96python3.11 suggest_seeds.py <keywords...>97```9899**How it works:**1001. Matches keywords to seed triggers1012. Calculates relevance score1023. Returns top 3 suggestions103104**Trigger Keywords by Seed:**105106- **01 (Governance):** governance, capabilities, complexity, multi-agent, coordination, policy, standards107- **02 (Trace):** debugging, trace, transparency, performance, evaluation, logging, monitoring108- **03 (Context):** token, cost, context, window, limit, budget, pruning, memory, overhead109- **04 (Agent Connect):** multi-agent, routing, coordination, specialized, handoff, permission, swarm110- **05 (Bundles):** export, sharing, reuse, artifact, package, bundle, repeatability, trust111- **06 (Cost Guard):** cost, budget, estimation, planning, infrastructure, investment, pricing112- **07 (Safety Switch):** fallback, conservative, alert, drift, failure, recovery, validation, error113- **08 (Perspective):** perspective, constraint, metaphor, scope, extraction, implicit, natural114- **09 (Complexity):** mode, complexity, routing, simple, query, reasoning, adaptive115- **10 (Infrastructure):** infrastructure, reuse, duplication, foundation, shared, common, service116- **11 (Voice):** voice, philosophy, design-language, manifest, description, ecosystem, grounding, plugin117- **12 (Pointers):** empty, missing, pointer, provenance, registry, audit, gap, coverage, directory118- **13 (Visibility):** progress, tracking, visibility, todo, granular, steering, trust, delegation119120### apply_seed.py121122**Purpose:** Load and explain how to apply a seed123124**Usage:**125```bash126python3.11 apply_seed.py <seed_id> [session_id]127```128129**What it does:**1301. Loads full seed content from `/seeds/<seed_id>.md`1312. Generates application guide with checklist1323. Tracks usage in `/home/ubuntu/.seed-usage.json`1334. Saves guide to file134135**Seed IDs:**136- `01_three_tiered_governance`137- `02_harness_trace`138- `03_context_iceberg`139- `04_agent_connect`140- `05_go_live_bundles`141- `06_cost_guard`142- `07_safety_switch`143- `08_implicit_perspective_extraction`144- `09_mode_based_complexity_gating`145- `10_shared_infrastructure`146- `meta_governance_multiplies_velocity`147- `11_voice_before_structure`148- `12_pointer_directories`149- `13_granular_visibility`150151## Seed Files152153All seeds are stored in `/home/ubuntu/skills/seed-library/seeds/` as markdown files.154155### Seed File Structure156157```markdown158---159seed_id: 01160name: Three-Tiered Governance161version: 1.0162created: 2026-01-12163source: Dataiku Research164status: active165---166167# Seed Name168169## What It Is170{description}171172## Why It Matters173{rationale}174175## The Pattern176{pattern description}177178## Revisit Trigger179{when to apply this seed}180181## Dojo Application182{how Dojo uses this pattern}183184## What It Refuses185{what this pattern explicitly rejects}186187## Checks188- [ ] {validation check 1}189- [ ] {validation check 2}190191## Related Seeds192- {seed name}: {relationship}193```194195## Usage Tracking196197The skill automatically tracks seed usage in `/home/ubuntu/.seed-usage.json`:198199```json200{201 "seeds": {202 "04_agent_connect": {203 "usage_count": 3,204 "last_used": "2026-01-29T12:00:00Z",205 "sessions": ["session_123", "session_456"]206 }207 },208 "session_seeds": {209 "session_123": ["04_agent_connect", "10_shared_infrastructure"]210 }211}212```213214## Reference Documents215216### seed_catalog.md217218Quick reference to all 10 seeds plus meta-seed:219- One-line descriptions220- Triggers and refusals221- Seed relationships222- Usage patterns (5 common scenarios)223- Maintenance guidelines224225**Read this when:**226- Getting overview of all seeds227- Understanding seed relationships228- Learning usage patterns229230## Common Use Cases231232### Use Case 1: Architecting Multi-Agent System233234**User says:** "How should we architect the multi-agent system?"235236**Workflow:**2371. Run `suggest_seeds.py multi-agent architecture coordination`2382. Top suggestions: Agent Connect, Shared Infrastructure, Three-Tiered Governance2393. Apply Seed 04 (Agent Connect)2404. Follow application checklist2415. Track usage242243**Output:**244> Based on your query, I recommend **Agent Connect** (Seed 04). This seed provides a routing-first pattern where the Supervisor acts as a single entry point, routing to specialized agents (Dojo, Librarian, Debugger, Builder) based on context. This prevents agent sprawl and keeps coordination manageable.245246### Use Case 2: Optimizing Token Usage247248**User says:** "Token usage is spiking, how do we optimize?"249250**Workflow:**2511. Run `suggest_seeds.py token cost context optimization`2522. Top suggestions: Context Iceberg, Cost Guard, Mode-Based Complexity Gating2533. Apply Seed 03 (Context Iceberg)2544. Implement hierarchical context loading (Tier 1-4)2555. Set pruning triggers (80%, 90%, 95%)256257**Output:**258> The **Context Iceberg** pattern (Seed 03) explains the 6x token multiplier from demo to production. Implement hierarchical context loading with 4 tiers, and set pruning triggers at 80% (prune Tier 4), 90% (prune Tier 3), and 95% (alert user).259260### Use Case 3: Debugging Unexpected Behavior261262**User says:** "Why did Dojo choose Scout instead of Mirror?"263264**Workflow:**2651. Run `suggest_seeds.py debugging trace transparency`2662. Top suggestion: Harness Trace2673. Apply Seed 02 (Harness Trace)2684. Review trace spans for `mode_selection`2695. Read `metadata.reasoning`270271**Output:**272> Use the **Harness Trace** (Seed 02) to inspect the decision path. Check the `mode_selection` span in the trace JSON. The `metadata.reasoning` field will explain why Scout was chosen over Mirror.273274### Use Case 4: Building Trust with Users275276**User says:** "Users don't understand our recommendations"277278**Workflow:**2791. Run `suggest_seeds.py trust transparency trace`2802. Top suggestions: Harness Trace, Go-Live Bundles, Governance Multiplies Velocity2813. Apply Seed 02 (Harness Trace) for transparency2824. Apply Seed 05 (Go-Live Bundles) for repeatability2835. Apply Meta-Seed for philosophy284285**Output:**286> Build trust through **Harness Trace** (transparency), **Go-Live Bundles** (repeatability), and the **Governance Multiplies Velocity** philosophy. Show users the decision path, make sessions exportable and inspectable, and emphasize that governance accelerates delivery.287288### Use Case 5: Planning New Feature289290**User says:** "Let's plan the Workbench feature"291292**Workflow:**2931. Run `suggest_seeds.py planning feature governance`2942. Top suggestions: Three-Tiered Governance, Cost Guard, Shared Infrastructure2953. Apply Seed 01 (Three-Tiered Governance)2964. Define strategic (principles), tactical (standards), operational (tools)2975. Apply Seed 06 (Cost Guard) to budget for 5-10x multiplier298299**Output:**300> Start with **Three-Tiered Governance** (Seed 01). Define strategic principles (does this align with "no autopilot"?), tactical standards (DojoPacket schema, routing logic), and operational tools (tests, traces). Then apply **Cost Guard** (Seed 06) to budget for the full iceberg, not just API costs.301302## Integration with Dojo Agent303304When Dojo is reasoning, it can reference seeds:305306**Example:**307> "Considering **Agent Connect** (Seed 04) for this multi-agent architecture. Using Supervisor as router with transparent handoffs."308309**Example:**310> "Applying **Context Iceberg** (Seed 03) to manage token usage. Loading Tier 1 + Tier 2 context for this query."311312## Seed Relationships313314### Foundational Seeds (Start Here)315- **01. Three-Tiered Governance** - Framework for all other seeds316- **Meta. Governance Multiplies Velocity** - Philosophy317318### Operational Seeds (Day-to-Day)319- **02. Harness Trace** - Transparency and debugging320- **03. Context Iceberg** - Token and cost management321- **07. Safety Switch** - Error handling322- **09. Mode-Based Complexity Gating** - Query routing323324### Architectural Seeds (System Design)325- **04. Agent Connect** - Multi-agent coordination326- **10. Shared Infrastructure** - Reusable services327328### Delivery Seeds (Shipping)329- **05. Go-Live Bundles** - Packaging and reuse330- **06. Cost Guard** - Budgeting and planning331332### UX Seeds (User Experience)333- **08. Implicit Perspective Extraction** - Reduce friction334335### Field Seeds (From Practice)336- **11. Voice Before Structure** - Ground in philosophy before writing337- **12. Pointer Directories** - Understand provenance before filling gaps338- **13. Granular Visibility** - Track progress for the user, not the agent339340## Seed Maintenance341342### When to Update a Seed343- Pattern evolves based on new learnings344- Better approach discovered345- User feedback suggests improvement346347### When to Archive a Seed348- Pattern no longer applies349- Superseded by better approach350- Context has fundamentally changed351352### Versioning Convention353- **1.0** - Initial version from Dataiku research354- **1.1** - Minor update (clarification, example added)355- **2.0** - Major update (pattern changed)356357### Update Process3581. Identify need for update3592. Draft new version3603. Test with real scenarios3614. Update seed file with "Revised:" section3625. Update seed_catalog.md3636. Notify users of change364365## Best Practices366367### Frequency368- **Proactive:** Suggest seeds during planning and design369- **Reactive:** Apply seeds when debugging or optimizing370- **Continuous:** Track usage to identify most valuable seeds371372### Application373- **Read the full seed** before applying (don't just skim)374- **Follow the checklist** to validate application375- **Note what it refuses** to avoid anti-patterns376- **Track usage** to measure effectiveness377378### Evolution379- **Update when patterns evolve** (not just for the sake of updating)380- **Archive when obsolete** (don't hoard outdated seeds)381- **Version carefully** (breaking changes = major version bump)382383## Limitations384385### What This Skill Does386- Suggest relevant seeds based on keywords387- Load and explain how to apply seeds388- Track usage over time389- Provide quick reference to all seeds390391### What This Skill Doesn't Do392- Automatically apply seeds (you still need to implement)393- Make architectural decisions for you394- Guarantee success (seeds are patterns, not silver bullets)395- Replace deep thinking (seeds guide, they don't replace reasoning)396397## Quick Reference398399| Task | Command |400|------|---------|401| Suggest seeds | `python3.11 suggest_seeds.py <keywords...>` |402| Apply seed | `python3.11 apply_seed.py <seed_id>` |403| View catalog | `file read references/seed_catalog.md` |404| Check usage | `cat /home/ubuntu/.seed-usage.json` |405| List all seeds | `ls /home/ubuntu/skills/seed-library/seeds/` |406407## Success Metrics408409- **Accessibility:** Find relevant seed in < 10 seconds410- **Consistency:** Seeds applied correctly 90%+ of the time411- **Evolution:** Seeds updated when patterns improve412- **Reuse:** Seeds used across multiple sessions413- **Learning:** New seeds added as patterns emerge414---415416## OpenClaw Tool Integration417418When running inside the Dojo Genesis plugin:4194201. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts4212. **During** the skill, follow the workflow steps documented above4223. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory4234. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions424