一键导入
intelligence-transfer
Transfer learned patterns from another project on disk into this one -- the project-to-project pattern transfer that hooks_transfer performs
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Transfer learned patterns from another project on disk into this one -- the project-to-project pattern transfer that hooks_transfer performs
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build or rebuild the ADR index + dependency graph in AgentDB by running the in-process `agentdb index` command (one cold-start, all surfaces in one pass — no per-record npx round-trips). Handles v3-style and plugin-style ADR formats.
Create a new Architecture Decision Record with sequential numbering and AgentDB registration
Hive Mind orchestration patterns — queen-led multi-agent coordination with Byzantine/Raft/Gossip/CRDT consensus, typed collective memory, dialectic council, and session checkpoint/resume. Use for decision-bearing work; use swarm-advanced for parallel execution without consensus.
Analyze git diffs for risk scoring, reviewer recommendations, and change classification
Detect missing test coverage and generate test suggestions
Hive Mind orchestration patterns — queen-led multi-agent coordination with Byzantine/Raft/Gossip/CRDT consensus, typed collective memory, dialectic council, and session checkpoint/resume. Use for decision-bearing work; use swarm-advanced for parallel execution without consensus.
| name | intelligence-transfer |
| description | Transfer learned patterns from another project on disk into this one -- the project-to-project pattern transfer that hooks_transfer performs |
| argument-hint | --source <project-path> [--filter <type>] [--min-confidence <0-1>] |
| allowed-tools | mcp__ruflo__hooks_transfer mcp__ruflo__hooks_intelligence_pattern-search mcp__ruflo__hooks_intelligence_pattern-store mcp__ruflo__neural_patterns mcp__ruflo__neural_status Bash |
Project-to-project pattern sharing. Reads the learned patterns from another project's memory store on disk and reports what would transfer into this one.
hooks_transfer is a local, on-disk operation — it reads a source project's
memory store (<sourcePath>/.claude-flow/memory/store.json) and counts the
patterns it can transfer, grouped by type (file-patterns, task-routing,
command-risk, agent-success). There is no IPFS, no Pinata, no CID, and no
network call — this skill previously documented a surface the tool never had
(ADR-0293 D10).
sourcePath (required) — filesystem path to the source project.filter (optional) — only transfer pattern types whose key contains this
string (e.g. routing).minConfidence (optional, default 0.7) — minimum confidence threshold.# Inspect what's stored locally first
mcp tool call neural_patterns --json -- '{"action": "list"}'
# Transfer patterns from a sibling project on disk
mcp tool call hooks_transfer --json -- '{"sourcePath": "/path/to/peer-project"}'
# Filter to a single pattern family, with a confidence floor
mcp tool call hooks_transfer --json -- '{"sourcePath": "/path/to/peer-project", "filter": "routing", "minConfidence": 0.8}'
On success the response is:
{ "success": true, "sourcePath": "...", "transferred": { "total": 2, "byType": { "task-routing": 1, "agent-success": 1, "...": 0 } }, "dataSource": "source-project" }
If the source has no patterns (empty or nonexistent), the response is honest — it does NOT fabricate demo data (ADR-0293 D2):
{ "success": false, "message": "No patterns found in source project", "sourcePath": "...", "transferred": 0 }
hooks_transfer is local-disk only. There
is no remote/IPFS transport in this build. Copy the source project's
.claude-flow/memory/store.json to the target machine first, then run this
against the local copy.aidefence_has_pii first) before
sharing a store between projects.agentdb_* / memory_export
tools (out of scope here).success: false, never a fabricated count.ruflo-agentdb ADR-0001 §"Namespace convention" — the pattern namespaceneural-train skill — produces the patterns this skill transfers