一键导入
agents-team
// Enable general multi-agent team mode via spawn_agent/wait tools. Supports orchestrator, worker, reviewer, research, writer, and editor roles.
// Enable general multi-agent team mode via spawn_agent/wait tools. Supports orchestrator, worker, reviewer, research, writer, and editor roles.
商业级视觉资产与网页(详情页/落地页)的审美与UX视觉审查:输出P0/P1/P2问题清单、可落地的样式tokens与改稿建议;可结合截图、URL与源码进行定位与修改。
设计并构建各类 AI 智能体/助手。适用于用户: (1) 询问“创建 agent / 助手 / 智能体系统” (2) 想理解 agent 架构、agentic 模式或自治式 AI (3) 需要能力设计、子代理、规划或 skills 机制建议 (4) 询问 Claude Code、Cursor 等智能体内部实现 (5) 想为业务/研究/创作/运营等场景构建 agent 关键词:agent, assistant, autonomous, workflow, tool use, multi-step, orchestration
启用 agents-team 协作,双代理完成小说逐章元数据抽取与完整性审校(parser + checker),并写入可续跑的记忆索引。
进行全面代码审查,覆盖安全、正确性、性能与可维护性;适用于用户要求 review、排查潜在 bug 或审计代码库。
Agents-CLI 认知记忆系统。用于管理长期记忆(core/episodic/semantic/procedural/vault)、可检索回忆、归档遗忘、以及多代理写入治理。
A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution.
| name | agents-team |
| description | Enable general multi-agent team mode via spawn_agent/wait tools. Supports orchestrator, worker, reviewer, research, writer, and editor roles. |
This Skill enables general agents team mode. It is disabled by default and only becomes available after you load this Skill.
agent_type:
orchestrator: plan, delegate, and merge.worker: implement a bounded code or execution task.reviewer: do a read-only audit for bugs, regressions, or missing checks.research: summarize sources / produce supporting material.writer: draft a section or structured artifact.editor: unify voice, tighten structure, fix inconsistencies.list_agents and wait to observe real team state instead of assuming progress.submission_id, not only the agent_id.fork_context: true only when the child genuinely needs the current conversation context; otherwise keep prompts tighter.spawn_agent / legacy Task).spawn_agent({ agent_type, prompt, description?, fork_context? }) -> { agent_id, submission_id }wait({ ids, timeout_ms? }) -> agent statuses + submission statuses/previewssend_input({ id, prompt, interrupt? }) -> queue more work for that agent and return a new submission_idresume_agent({ id }) -> reopen a closed agent so it can receive future workclose_agent({ id })list_agents()wait for the blocking agents before the next dependent step.reviewer or explicit verification pass before finalizing.close_agent only stops future queued work. It does not kill in-flight execution.resume_agent is for reopening a previously closed agent, not for rewinding history.interrupt: true is reserved but not yet implemented as a real preemption primitive. If the target agent is still busy, the tool should fail explicitly instead of pretending success.task_id to spawn_agent and that task is already owned by the current parent agent, runtime will drop the duplicate child binding. If another owner already holds it, spawn_agent fails explicitly and you should retry without task_id when you only need an unbound helper.Use this exact structure when delegating: