ソース情報
- リポジトリ
- Kordi-Lab/Kordi
- ソースの最終更新活動
- 2026年8月20日 14:41
- 検出された SKILL.md の言語
- 英語
- スター
- 7
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Kordi-Lab/Kordi --skill agent-creatorコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Design and maintain focused Kordi skills with complete SKILL.md instructions.
SKILL.md を表示中
| 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.