소스 정보
- 저장소
- 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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.