soleri-knowledge-harvestlisted
Install: claude install-skill adrozdenko/soleri
# Knowledge Harvest — Extract Patterns From Anything
Point at code, docs, PRs, architecture decisions, or postmortems — the agent extracts every pattern, anti-pattern, decision, and principle, then captures them to the vault.
## Steps
### 1. Understand the Source
Read target content and classify: `YOUR_AGENT_core op:route_intent params: { prompt: "Extract knowledge from: <source>" }`
### 2. Check What's Already Known
```
YOUR_AGENT_core op:search_intelligent
params: { query: "<topic of source material>" }
YOUR_AGENT_core op:vault_tags
YOUR_AGENT_core op:vault_domains
```
Focus extraction on gaps — skip what vault already covers.
### 3. Extract and Classify
| Type | What to Look For |
| ---------------- | ------------------------------------ |
| **pattern** | Repeatable approaches that work |
| **anti-pattern** | Known mistakes to avoid |
| **decision** | Architectural choices with rationale |
| **principle** | Guiding rules or heuristics |
| **workflow** | Step-by-step procedures |
For each: determine category, severity, and tags.
### 4. Batch Capture
```
YOUR_AGENT_core op:capture_knowledge
params: {
title: "<clear, searchable name>",
description: "<what it is, when to apply, why it matters>",
type: "<pattern|anti-pattern|rule|principle|workflow>",
domain: "<domain>",
tags: ["<tag1>", "<tag2>"],
example: "<code snippet or quote>",
why: "<reasoni