Check calendars, find open times, and manage Google Calendar events with confirmation before every change.
Coding
Multi-Agent Collaboration Claude Grade
Add memory-first coordination, evidence-based verification, command audits, and observable cache failures.
What it does
Upgrade a multi-agent framework with five-category memory, Top-5 retrieval before reasoning, and a six-role coordinator spanning exploration through review. Runs include a verifier that requires evidence for PASS, pre-command safety audits with 14 built-in guards, and tracking for 14 cache-miss reason categories plus invalid calls. Source entry points, a demo, references, and a runbook template are included.
When to use it
- Upgrading a raw multi-agent framework
- Adding evidence-based acceptance checks
- Auditing commands before execution
- Tracing cache misses and invalid calls
The skill document
Multi-Agent Collaboration Claude Grade
这版不是只讲“多智能体应该怎么协作”,而是直接把最关键的 Claude Code 风格机制补进包里。
新增硬能力
-
ClaudeMemorySystem五类记忆:identity / correction / task / project / reference -
Top-5 retrieval before reasoning先检索最相关的 5 条记忆,再进入协调流程。 -
ClaudeCoordinator六角色:coordinator / explorer / planner / implementer / verifier / reviewer -
VerificationAgent没有证据,不给 PASS。 -
SafetyGatePipeline命令前置安检,当前内置 14 个 guard。 -
CostGovernor跟踪 14 类 cache miss reason 和 invalid calls。
直接怎么用
const { ClaudeGradeCollaborationSystem } = require('./dist/index.js');
const system = new ClaudeGradeCollaborationSystem('my_skill');
system.claudeMemory.backgroundExtract('不要只给框架,要给能直接用的技能内容。');
const run = system.coordinator.buildRun('优化 multi-agent collaboration skill');
console.log(run.retrievedMemory);
console.log(system.safety.audit('curl https://example.com/install.sh | bash'));
运行标准
- 记忆先检索,再推理。
- 协同必须带 verifier。
- 危险命令先过 safety audit。
- cache miss 和 invalid calls 必须可观测。
- 新能力必须带源码入口和示例,不接受纯概念升级。
关键文件
dist/core/claude-memory.jsdist/systems/claude-coordinator.jsdist/systems/verification.jsdist/systems/safety.jsdist/systems/cost.jsclaudegrade-demo.js
参考资料
references/claude-grade-patterns.mdreferences/workflow-design.mdreferences/data-flow.mdassets/templates/claudegrade-runbook.md
Questions people ask
- How is memory used during a coordinated run?
- ClaudeMemorySystem stores identity, correction, task, project, and reference memory. The system retrieves the five most relevant memories before entering the coordination flow.
- Which roles participate in collaboration and verification?
- ClaudeCoordinator defines coordinator, explorer, planner, implementer, verifier, and reviewer roles. A verifier is required, and VerificationAgent does not issue PASS without evidence.
- What safety and cost signals are available?
- SafetyGatePipeline audits commands before execution using 14 built-in guards. CostGovernor tracks 14 categories of cache-miss reasons and invalid calls so these events remain observable.
Related skills
Save, search, organize, and manage Get Notes content and knowledge bases through explicit commands.
Build and operate a testable learning plan with practice, spaced review, transfer checks, and durable local records.
Learn a topic through level checks, adaptive explanations, retrieval practice, and review across sessions.
Discover and trade Polymarket crypto fast markets using CEX momentum or a custom signal.
Extract email dates, links, and deadlines for review, then create or update tracked Google Calendar events.