Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/HezaoHezao/poirot --skill skill-creator명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | skill-creator |
| description | Create, edit, and evaluate agent skills iteratively. |
| allowed-tools | ["write_file","str_replace","read_file","list_dir"] |
| enabled | true |
| related-skills | ["find-skills"] |
| license | MIT |
| author | Adapted from deer-flow (Bytedance, MIT) |
A skill for creating new skills and iteratively improving them.
At a high level, the process of creating a skill goes like this:
SKILL.md with YAML frontmatter + Markdown body)Your job when using this skill is to figure out where the user is in this process and then jump in and help them progress through these stages.
A Poirot skill lives in a directory containing SKILL.md:
skills/<category>/<skill-name>/SKILL.md # user skills
poirot/backend/agents/skill/builtin_skills/<category>/<skill-name>/SKILL.md # builtin
Frontmatter fields:
---
name: <skill-name> # unique, lowercase-hyphenated
description: <≤60 char one sentence ending with a period>
allowed-tools: # Poirot tools this skill may invoke
- web_search
- browse_page
- bash
- read_file
- write_file
- list_dir
- str_replace
- present_files
- read_snapshot
enabled: true
related-skills: [<other-skill-name>] # optional cross-references
license: MIT # recommended for contributed skills
author: <human contributor or source attribution>
---
Body: # <Skill> title, 2-3 sentence intro, ## When to Use,
## How to Run, ## Procedure, ## Pitfalls, ## Verification.
description ≤ 60 characters, one sentence, ends with a period. State
the capability, not the implementation. No marketing words.grep → bash, cat/head/tail →
read_file, sed/awk → str_replace, find/ls → list_dir.scripts/, references in references/, templates in
templates/ inside the skill directory. Don't expect the model to
inline-write non-trivial logic every call — ship a helper script.SKILL.md/skill install <path> (or place under skills/)/skill list should show it activedescription for better triggering, body for clarity## When to Use section → model triggers skill on wrong tasks