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
1---2name: seed-library-33description: 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# Seed Module Library78Manage 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.910## When to Use This Skill1112Trigger this skill when:13- User asks "What seed applies here?" or "Which pattern should I use?"14- Keywords match seed triggers (governance, multi-agent, cost, context, routing, etc.)15- Architecting new features or systems16- Debugging complex issues17- Optimizing costs or performance18- Building trust through transparency1920## The 10 Core Seeds21221. **Three-Tiered Governance** - Strategic/Tactical/Operational framework232. **Harness Trace** - Nested spans + events for traceability243. **Context Iceberg** - 6x token multiplier, hierarchical loading254. **Agent Connect** - Routing-first, not swarm-first265. **Go-Live Bundles** - Reusable artifacts (DojoPacket)276. **Cost Guard** - Budget for full iceberg (5-10x multiplier)287. **Safety Switch** - Fallback to conservative mode298. **Implicit Perspective Extraction** - Extract from constraints/metaphors309. **Mode-Based Complexity Gating** - 3-question test3110. **Shared Infrastructure** - Build once, reuse everywhere3233**Meta-Seed:** Governance Multiplies Velocity3435### Field Seeds (From Practice)3611. **Voice Before Structure** - Read design language before writing structural artifacts3712. **Pointer Directories** - Empty directories are references, not gaps3813. **Granular Visibility** - Progress tracking serves the user, not the agent3940## Core Workflow4142### 1. Suggest Relevant Seeds4344Based on keywords or task context:4546```bash47python3.11 /home/ubuntu/skills/seed-library/scripts/suggest_seeds.py <keywords...>48```4950**Example:**51```bash52python3.11 suggest_seeds.py multi-agent architecture coordination53```5455**Output:**56- Top 3 relevant seeds ranked by relevance score57- Brief description of each seed58- File path to full seed content5960**Saved to:** `/home/ubuntu/seed-suggestions.md`6162### 2. Apply a Seed6364Load full seed content and application guide:6566```bash67python3.11 /home/ubuntu/skills/seed-library/scripts/apply_seed.py <seed_id> [session_id]68```6970**Example:**71```bash72python3.11 apply_seed.py 04_agent_connect session_12373```7475**Output:**76- Full seed content (What It Is, Why It Matters, The Pattern, etc.)77- Application checklist78- Next steps79- Usage tracked automatically8081**Saved to:** `/home/ubuntu/seed-<seed_id>-applied.md`8283## Script Reference8485### suggest_seeds.py8687**Purpose:** Suggest relevant seeds based on keywords8889**Usage:**90```bash91python3.11 suggest_seeds.py <keywords...>92```9394**How it works:**951. Matches keywords to seed triggers962. Calculates relevance score973. Returns top 3 suggestions9899**Trigger Keywords by Seed:**100101- **01 (Governance):** governance, capabilities, complexity, multi-agent, coordination, policy, standards102- **02 (Trace):** debugging, trace, transparency, performance, evaluation, logging, monitoring103- **03 (Context):** token, cost, context, window, limit, budget, pruning, memory, overhead104- **04 (Agent Connect):** multi-agent, routing, coordination, specialized, handoff, permission, swarm105- **05 (Bundles):** export, sharing, reuse, artifact, package, bundle, repeatability, trust106- **06 (Cost Guard):** cost, budget, estimation, planning, infrastructure, investment, pricing107- **07 (Safety Switch):** fallback, conservative, alert, drift, failure, recovery, validation, error108- **08 (Perspective):** perspective, constraint, metaphor, scope, extraction, implicit, natural109- **09 (Complexity):** mode, complexity, routing, simple, query, reasoning, adaptive110- **10 (Infrastructure):** infrastructure, reuse, duplication, foundation, shared, common, service111- **11 (Voice):** voice, philosophy, design-language, manifest, description, ecosystem, grounding, plugin112- **12 (Pointers):** empty, missing, pointer, provenance, registry, audit, gap, coverage, directory113- **13 (Visibility):** progress, tracking, visibility, todo, granular, steering, trust, delegation114115### apply_seed.py116117**Purpose:** Load and explain how to apply a seed118119**Usage:**120```bash121python3.11 apply_seed.py <seed_id> [session_id]122```123124**What it does:**1251. Loads full seed content from `/seeds/<seed_id>.md`1262. Generates application guide with checklist1273. Tracks usage in `/home/ubuntu/.seed-usage.json`1284. Saves guide to file129130**Seed IDs:**131- `01_three_tiered_governance`132- `02_harness_trace`133- `03_context_iceberg`134- `04_agent_connect`135- `05_go_live_bundles`136- `06_cost_guard`137- `07_safety_switch`138- `08_implicit_perspective_extraction`139- `09_mode_based_complexity_gating`140- `10_shared_infrastructure`141- `meta_governance_multiplies_velocity`142- `11_voice_before_structure`143- `12_pointer_directories`144- `13_granular_visibility`145146## Seed Files147148All seeds are stored in `/home/ubuntu/skills/seed-library/seeds/` as markdown files.149150### Seed File Structure151152```markdown153---154seed_id: 01155name: Three-Tiered Governance156version: 1.0157created: 2026-01-12158source: Dataiku Research159status: active160---161162# Seed Name163164## What It Is165{description}166167## Why It Matters168{rationale}169170## The Pattern171{pattern description}172173## Revisit Trigger174{when to apply this seed}175176## Dojo Application177{how Dojo uses this pattern}178179## What It Refuses180{what this pattern explicitly rejects}181182## Checks183- [ ] {validation check 1}184- [ ] {validation check 2}185186## Related Seeds187- {seed name}: {relationship}188```189190## Usage Tracking191192The skill automatically tracks seed usage in `/home/ubuntu/.seed-usage.json`:193194```json195{196 "seeds": {197 "04_agent_connect": {198 "usage_count": 3,199 "last_used": "2026-01-29T12:00:00Z",200 "sessions": ["session_123", "session_456"]201 }202 },203 "session_seeds": {204 "session_123": ["04_agent_connect", "10_shared_infrastructure"]205 }206}207```208209## Reference Documents210211### seed_catalog.md212213Quick reference to all 10 seeds plus meta-seed:214- One-line descriptions215- Triggers and refusals216- Seed relationships217- Usage patterns (5 common scenarios)218- Maintenance guidelines219220**Read this when:**221- Getting overview of all seeds222- Understanding seed relationships223- Learning usage patterns224225## Common Use Cases226227### Use Case 1: Architecting Multi-Agent System228229**User says:** "How should we architect the multi-agent system?"230231**Workflow:**2321. Run `suggest_seeds.py multi-agent architecture coordination`2332. Top suggestions: Agent Connect, Shared Infrastructure, Three-Tiered Governance2343. Apply Seed 04 (Agent Connect)2354. Follow application checklist2365. Track usage237238**Output:**239> 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.240241### Use Case 2: Optimizing Token Usage242243**User says:** "Token usage is spiking, how do we optimize?"244245**Workflow:**2461. Run `suggest_seeds.py token cost context optimization`2472. Top suggestions: Context Iceberg, Cost Guard, Mode-Based Complexity Gating2483. Apply Seed 03 (Context Iceberg)2494. Implement hierarchical context loading (Tier 1-4)2505. Set pruning triggers (80%, 90%, 95%)251252**Output:**253> 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).254255### Use Case 3: Debugging Unexpected Behavior256257**User says:** "Why did Dojo choose Scout instead of Mirror?"258259**Workflow:**2601. Run `suggest_seeds.py debugging trace transparency`2612. Top suggestion: Harness Trace2623. Apply Seed 02 (Harness Trace)2634. Review trace spans for `mode_selection`2645. Read `metadata.reasoning`265266**Output:**267> 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.268269### Use Case 4: Building Trust with Users270271**User says:** "Users don't understand our recommendations"272273**Workflow:**2741. Run `suggest_seeds.py trust transparency trace`2752. Top suggestions: Harness Trace, Go-Live Bundles, Governance Multiplies Velocity2763. Apply Seed 02 (Harness Trace) for transparency2774. Apply Seed 05 (Go-Live Bundles) for repeatability2785. Apply Meta-Seed for philosophy279280**Output:**281> 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.282283### Use Case 5: Planning New Feature284285**User says:** "Let's plan the Workbench feature"286287**Workflow:**2881. Run `suggest_seeds.py planning feature governance`2892. Top suggestions: Three-Tiered Governance, Cost Guard, Shared Infrastructure2903. Apply Seed 01 (Three-Tiered Governance)2914. Define strategic (principles), tactical (standards), operational (tools)2925. Apply Seed 06 (Cost Guard) to budget for 5-10x multiplier293294**Output:**295> 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.296297## Integration with Dojo Agent298299When Dojo is reasoning, it can reference seeds:300301**Example:**302> "Considering **Agent Connect** (Seed 04) for this multi-agent architecture. Using Supervisor as router with transparent handoffs."303304**Example:**305> "Applying **Context Iceberg** (Seed 03) to manage token usage. Loading Tier 1 + Tier 2 context for this query."306307## Seed Relationships308309### Foundational Seeds (Start Here)310- **01. Three-Tiered Governance** - Framework for all other seeds311- **Meta. Governance Multiplies Velocity** - Philosophy312313### Operational Seeds (Day-to-Day)314- **02. Harness Trace** - Transparency and debugging315- **03. Context Iceberg** - Token and cost management316- **07. Safety Switch** - Error handling317- **09. Mode-Based Complexity Gating** - Query routing318319### Architectural Seeds (System Design)320- **04. Agent Connect** - Multi-agent coordination321- **10. Shared Infrastructure** - Reusable services322323### Delivery Seeds (Shipping)324- **05. Go-Live Bundles** - Packaging and reuse325- **06. Cost Guard** - Budgeting and planning326327### UX Seeds (User Experience)328- **08. Implicit Perspective Extraction** - Reduce friction329330### Field Seeds (From Practice)331- **11. Voice Before Structure** - Ground in philosophy before writing332- **12. Pointer Directories** - Understand provenance before filling gaps333- **13. Granular Visibility** - Track progress for the user, not the agent334335## Seed Maintenance336337### When to Update a Seed338- Pattern evolves based on new learnings339- Better approach discovered340- User feedback suggests improvement341342### When to Archive a Seed343- Pattern no longer applies344- Superseded by better approach345- Context has fundamentally changed346347### Versioning Convention348- **1.0** - Initial version from Dataiku research349- **1.1** - Minor update (clarification, example added)350- **2.0** - Major update (pattern changed)351352### Update Process3531. Identify need for update3542. Draft new version3553. Test with real scenarios3564. Update seed file with "Revised:" section3575. Update seed_catalog.md3586. Notify users of change359360## Best Practices361362### Frequency363- **Proactive:** Suggest seeds during planning and design364- **Reactive:** Apply seeds when debugging or optimizing365- **Continuous:** Track usage to identify most valuable seeds366367### Application368- **Read the full seed** before applying (don't just skim)369- **Follow the checklist** to validate application370- **Note what it refuses** to avoid anti-patterns371- **Track usage** to measure effectiveness372373### Evolution374- **Update when patterns evolve** (not just for the sake of updating)375- **Archive when obsolete** (don't hoard outdated seeds)376- **Version carefully** (breaking changes = major version bump)377378## Limitations379380### What This Skill Does381- Suggest relevant seeds based on keywords382- Load and explain how to apply seeds383- Track usage over time384- Provide quick reference to all seeds385386### What This Skill Doesn't Do387- Automatically apply seeds (you still need to implement)388- Make architectural decisions for you389- Guarantee success (seeds are patterns, not silver bullets)390- Replace deep thinking (seeds guide, they don't replace reasoning)391392## Quick Reference393394| Task | Command |395|------|---------|396| Suggest seeds | `python3.11 suggest_seeds.py <keywords...>` |397| Apply seed | `python3.11 apply_seed.py <seed_id>` |398| View catalog | `file read references/seed_catalog.md` |399| Check usage | `cat /home/ubuntu/.seed-usage.json` |400| List all seeds | `ls /home/ubuntu/skills/seed-library/seeds/` |401402## Success Metrics403404- **Accessibility:** Find relevant seed in < 10 seconds405- **Consistency:** Seeds applied correctly 90%+ of the time406- **Evolution:** Seeds updated when patterns improve407- **Reuse:** Seeds used across multiple sessions408- **Learning:** New seeds added as patterns emerge