con un clic
create-agent
// Distill a user's idea, viewpoint, or method into a reusable social-agent skill package that acts as an expression agent on their behalf.
// Distill a user's idea, viewpoint, or method into a reusable social-agent skill package that acts as an expression agent on their behalf.
| name | create-agent |
| description | Distill a user's idea, viewpoint, or method into a reusable social-agent skill package that acts as an expression agent on their behalf. |
| argument-hint | [seed-or-slug] |
| version | 2.0.0 |
| user-invocable | true |
| allowed-tools | Read, Write, Edit, Bash |
Language policy: Detect the user's language from the first message and keep that language for the whole run. 本技能根据用户首条消息自动选择中文或英文,并全程保持同一种语言。
social-agent skill package,不是角色扮演或人物复刻工具。赛博嘴替.skills,命令入口是 /create-agent。expression agent:代表用户解释其想法、观点或方法。interview-first, attachments-assisted:
解释想法:讲清楚、换受众表达、纠正误解、在对方没理解时继续解释。当用户说以下任一内容时启动:
/create-agent帮我做一个表达代理我想蒸馏一个想法代理帮我做一个能替我解释想法的 skill当用户在已创建代理上要求增量更新时:
我有新材料 / 追加这不对 / 应该改成/update-agent {slug}当用户说 /list-agents 时,列出所有代理。
当用户说 /delete-agent {slug} 时,执行删除流程(需确认)。
prompts/intake.md 作为唯一权威 intake 脚本执行(按脚本中的三轮 batched 提问与处理规则)。prompts/preview.md 作为唯一权威 preview 脚本输出 4 类预览并请求修正。prompts/intake.md 为准)Round 1: 表达目标
Round 2: 误解与纠偏
Round 3: 互动风格
生成完成后,默认写入 ./agents/{slug}/,产物包含:
SKILL.md:可直接调用的代理入口intent.md:表达目标、边界、非目标core_view.md:核心观点与推理主线explanation_routes.md:多条稳定解释路径audience_translation.md:面向不同受众的改写策略interaction_contract.md:互动行为与提问策略style_overrides.md:语气/深度/结构等可调参数misunderstandings.md:高频误解与纠偏动作expression_assets.md:可复用比喻、例子、反例、短句模板meta.json:版本、时间戳、来源摘要在 intake 三轮完成、preview 修正完成(confirmed preview)、并完成附件补充使用后,必须按以下顺序构建 V2 包:
intent_buildercore_view_builderexplanation_routes_builderaudience_translation_builderinteraction_contract_builderstyle_overrides_buildermisunderstandings_builderexpression_assets_builder一致性锚点(强约束):
do not invent new conclusions beyond confirmed material.对 /update-agent {slug}:
prompts/merger.md 作为权威 merge 路由脚本执行。prompts/correction_handler.md 作为权威 correction 路由脚本执行。meta.json 的 version 与 updated_at。默认代理目录:
./agents/{slug}/list / update 在默认 ./agents/ 视图下会自动识别同级 ./colleagues/ 旧产物,并按兼容对象处理。/list-agents:
python3 ${CLAUDE_SKILL_DIR}/tools/skill_writer.py --action list --base-dir ./agents
/update-agent {slug}:
/delete-agent {slug}:
rm -rf agents/{slug}
执行删除前必须口头确认。
ReadBash 调用 tools/ 下脚本Write / Editmeta.json若采集脚本失败:
social-agent skill package, not a roleplay clone.赛博嘴替.skills; command surface: /create-agent.expression agent.interview-first, attachments-assisted.explain ideas with audience adaptation and misunderstanding correction.Start when the user says any of:
/create-agentHelp me create an expression agentI want to distill an idea into an agentBuild a skill that explains my idea for meCreate an agent for this conceptEvolution mode:
I have new material / appendThis is wrong / change this/update-agent {slug}List mode:
/list-agentsDelete mode:
/delete-agent {slug} (confirmation required)prompts/intake.md as the authoritative intake script and execute it round-by-round.prompts/preview.md as the authoritative preview script and request corrections across 4 categories.prompts/intake.md is operative)Round 1: What should this agent express?
Round 2: Why do people misunderstand it?
Round 3: How should it interact?
Generated agents are written to ./agents/{slug}/ by default.
SKILL.mdintent.mdcore_view.mdexplanation_routes.mdaudience_translation.mdinteraction_contract.mdstyle_overrides.mdmisunderstandings.mdexpression_assets.mdmeta.jsonAfter intake rounds are complete, preview corrections are confirmed (confirmed preview), and attachment evidence is incorporated, build the V2 package in this exact order:
intent_buildercore_view_builderexplanation_routes_builderaudience_translation_builderinteraction_contract_builderstyle_overrides_buildermisunderstandings_builderexpression_assets_builderConsistency anchor (hard rule):
do not invent conclusions that are not supported by confirmed material./list-agents:
python3 ${CLAUDE_SKILL_DIR}/tools/skill_writer.py --action list --base-dir ./agents
/update-agent {slug}:
/delete-agent {slug}:
rm -rf agents/{slug}
Require explicit confirmation before delete.
soft migration../agents/{slug}/ and /create-agent../colleagues/{slug}/ packages are compatibility inputs only, not the active output target.prompts/intent_builder.mdprompts/core_view_builder.mdprompts/explanation_routes_builder.mdprompts/audience_translation_builder.mdprompts/interaction_contract_builder.mdprompts/style_overrides_builder.mdprompts/misunderstandings_builder.mdprompts/expression_assets_builder.md/{slug}../agents/{slug}/.list and update flows also auto-detect same-level ./colleagues/{slug}/ packages and mark them as compatibility targets.