用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Kordi-Lab/Kordi --skill agent-creator命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Design and maintain focused Kordi skills with complete SKILL.md instructions.
| name | agent-creator |
| description | Create and refine a Kordi agent draft as real workspace files. |
Use this skill whenever the user asks to create or change the agent in this workspace.
The draft is defined by these files:
agent.json: structured metadata, model route, access policy, tools, and skill references.SYSTEM_PROMPT.md: the exact system prompt for the candidate agent.skills/<skill-name>/SKILL.md: one complete skill package for every skill referenced by agent.json.write or edit to make the requested change. A prose proposal is not a completed change.The Factory conversation's own file tools and private workspace are only for editing the draft. They are not the candidate agent's runtime limits. Configure the candidate from the user's request and the capabilities shown in Factory. For example, a request for current web research calls for web_search and web_fetch when those tools are available.
Preserve the configured model route already present in agent.json. Do not replace it with a model from an example or guess another model ID. If no route is configured, leave the provider and model as null so Kordi can use the active authenticated route.
agent.json shape{
"name": "Agent name",
"role": "Focused responsibility",
"description": "One-sentence purpose",
"sourceSummary": "What this agent is grounded in",
"boundaries": ["A concrete limit"],
"model": {
"provider": null,
"model": null,
"thinking": null
},
"access": "only-me",
"tools": [],
"plugins": [],
"skills": [
Do not invent a successful validation or runtime test. Kordi performs those checks outside the conversation.