intelligence-transfer
Publish or fetch learned patterns across projects via IPFS (Pinata) -- the cross-project pattern transfer that hooks_transfer enables
npx skills add ruvnet/ruflo --skill intelligence-transfer --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Intelligence Transfer Cross-project pattern sharing via IPFS. Lets a different project — or a different machine — fetch and apply patterns this project has already learned. ## Why this exists Most learning is project-local. `hooks_transfer` is the escape hatch: publish patterns to IPFS, share the CID, and any peer can ingest them. Equivalent to "a deploy artifact for what your agents have learned." ## Prerequisite ```bash # Required env var (or equivalent endpoint config) echo $PINATA_API_JWT ``` If unset, `hooks_transfer` returns a structured `success: false` with `error: "PINATA_API_JWT not configured"`. Configure before running this skill. ## Workflows ### Publish current project's patterns ```bash # Inspect what's stored locally first mcp tool call neural_patterns --json -- '{"list": true}' # Publish to IPFS — returns a CID mcp tool call hooks_transfer --json -- '{"action": "store"}' ``` The response includes the IPFS CID. Save it; share it with peers who need the patterns. ### Fetch + apply a peer's patterns ```bash # Pull a CID and apply locally mcp tool call hooks_transfer --json -- '{"action": "load", "cid": "QmXyz..."}' # Verify they landed mcp tool call hooks_intelligen
- Why this exists
- Prerequisite
- Workflows
- Publish current project's patterns
- Fetch + apply a peer's patterns
- Mirror an entire project's patterns
- When to use this skill
- When NOT to use
- Caveats
- Related
Required env var (or equivalent endpoint config)
echo $PINATA_API_JWT
Inspect what's stored locally first
mcp tool call neural_patterns --json -- '{"list": true}'
Publish to IPFS — returns a CID
mcp tool call hooks_transfer --json -- '{"action": "store"}'
Pull a CID and apply locally
mcp tool call hooks_transfer --json -- '{"action": "load", "cid": "QmXyz..."}'
Verify they landed
mcp tool call hooks_intelligence_pattern-search --json -- '{"query": "<test>", "limit": 5}'What does the intelligence-transfer skill do?
Publish or fetch learned patterns across projects via IPFS (Pinata) -- the cross-project pattern transfer that hooks_transfer enables
How do I install it?
Run `npx skills add ruvnet/ruflo --skill intelligence-transfer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.