Agent 生成器
- 作者仓库星标 549
- 作者仓库 bkit-claude-code
skill-create - Interactive Skill Creation Workflow
프로젝트 컨텍스트를 분석하여 project-local 스킬을 생성하는 워크플로우.
Workflow Steps
Step 1: Gather Information
If /skill-create (no args):
- Ask user for skill name (kebab-case)
- Ask user for skill purpose/description
- Ask user for classification: workflow or capability
If /skill-create {name}:
- Use provided name
- Analyze project context to infer purpose
- Ask user to confirm/modify
If /skill-create from-btw {btw-id}:
- Read btw suggestion from
.bkit/btw-suggestions.json - Use suggestion text as seed for skill description
- Use suggestion context for project context
Step 2: Analyze Project Context
- Read
CLAUDE.mdfor project conventions - Scan project structure:
- Identify tech stack (Java/Spring, Next.js, Python, etc.)
- Find relevant patterns in source code
- Check existing project-local skills for overlap
- Determine appropriate:
- Allowed tools for the skill
- Trigger keywords (Korean + English)
- Related files/patterns to reference
Step 3: Generate SKILL.md
Create .claude/skills/project/{name}/SKILL.md with:
---
name: {name}
classification: {workflow|capability}
classification-reason: "{reason based on analysis}"
deprecation-risk: none
effort: low
description: |
{Generated description}
Triggers: {trigger commands}
Keywords: {keywords in Korean and English}
argument-hint: "{usage hint}"
user-invocable: true
allowed-tools:
- Read
- Write
- Edit
- Glob
- Grep
- Bash
---
Body content includes:
- Purpose and when to use
- Step-by-step instructions for workflow skills
- Pattern reference for capability skills
- Code examples from actual project files
- Integration points with other skills
Step 4: Generate Eval Files (optional)
Create evals/{name}/ directory with:
evals/{name}/
eval.yaml - Test configuration
prompt.txt - Test prompt
expected.txt - Expected behavior description
eval.yaml format:
name: "{name} skill eval"
skill: ".claude/skills/project/{name}/SKILL.md"
tests:
- name: "basic trigger"
prompt: "{trigger command}"
expected:
- "{expected behavior 1}"
- "{expected behavior 2}"
- name: "edge case"
prompt: "{edge case prompt}"
expected:
- "{expected behavior}"
Step 5: Confirm and Report
- Show generated file paths
- Show skill summary (name, classification, triggers)
- Suggest: "Test with
/{name}or review at.claude/skills/project/{name}/SKILL.md"
Project-Local Skill Location
All generated skills go to: .claude/skills/project/{name}/SKILL.md
This location:
- Is git-trackable for team sharing
- Takes precedence over bkit core skills (2-layer architecture)
- Is auto-loaded by Claude Code's skill discovery
Naming Conventions
| Pattern | Example | Use When |
|---|---|---|
{project}-{domain} |
hunikflow-model |
Domain-specific capability |
{action}-{target} |
validate-entity |
Action-oriented workflow |
{tool}-{purpose} |
proxy-guide |
Tool/pattern guide |
From-BTW Integration
When creating from a /btw suggestion:
- Read the suggestion's
context.fileto understand what code was being worked on - Read the suggestion's
context.featureto understand the PDCA feature context - Use suggestion text as the primary description seed
- After creation, update the btw suggestion's
promotedTofield with the new skill name
- 流狐分类
- 通用
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @popup-studio-ai · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- Python
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Workflow Steps
If /skill-create (no args): Ask user for skill name (kebab-case) Ask user for skill purpose/description
Read CLAUDE.md for project conventions Scan project structure: Identify tech stack (Java/Spring, Next.js, Python, etc.)
Create .claude/skills/project/{name}/SKILL.md with: Body content includes: Purpose and when to use
Create evals/{name}/ directory with: eval.yaml format:
Show generated file paths Show skill summary (name, classification, triggers) Suggest: "Test with /{name} or review at .claude/skills/project/{name}/SKILL.md"
# skill-create - Interactive Skill Creation Workflow
프로젝트 컨텍스트를 분석하여 project-local 스킬을 생성하는 워크플로우.
## Workflow Steps
### Step 1: Gather Information
If `/skill-create` (no args):
1. Ask user for skill name (kebab-case)
2. Ask user for skill purpose/description
3. Ask user for classification: workflow or capability
If `/skill-create {name}`:
1. Use provided name
2. Analyze project context to infer purpose
3. Ask user to confirm/modify
If `/skill-create from-btw {btw-id}`:
1. Read btw suggestion from `.bkit/btw-suggestions.json`
2. Use suggestion text as seed for skill description
3. Use suggestion context for project context
### Step 2: Analyze Project Context
1. Read `CLAUDE.md` for project conventions
2. Scan project structure:
- Identify tech stack (Java/Spring, Next.js, Python, etc.)
- Find relevant patterns in source code
- Check existing project-local skills for overlap
3. Determine appropriate:
- Allowed tools for the skill
- Trigger keywords (Korean + English)
- Related files/patterns to reference
### Step 3: Generate SKILL.md
Create `.claude/skills/project/{name}/SKILL.md` with:
```yaml
---
name: {name}
classification: {workflow|capability}
classification-reason: "{reason based on analysis}"
deprecation-risk: none
effort: low
description: |
{Generated description}
Triggers: {trigger commands}
Keywords: {keywords in Korean and English}
argument-hint: "{usage hint}"
user-invocable: true
allowed-tools:
- Read
- Write
- Edit
- Glob
- Grep
- Bash
---
```
Body content includes:
- Purpose and when to use
- Step-by-step instructions for workflow skills
- Pattern reference for capability skills
- Code examples from actual project files
- Integration points with other skills
### Step 4: Generate Eval Files (optional)
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Workflow Steps → Step 1: Gather Information → Step 2: Analyze Project Context → Step 3: Generate SKILL.md → Step 4: Generate Eval Files (optional) → Step 5: Confirm and Report
要点 -> eval.yaml format · 프로젝트 컨텍스트를 분석하여 project-local 스킬을 생성하는 워크플로우. · If /skill-create (no args): 1. · If /skill-create {name}: 1. · If /skill-create from-btw {btw-id}: 1. · 1. Read CLAUDE.md for project conventions 2. · 1. Show generated file paths 2. · When creating from a /btw suggestion: 1.
文件/命令 -> /skill-create · /skill-create {name} · /skill-create from-btw {btw-id} · .bkit/btw-suggestions.json · CLAUDE.md · .claude/skills/project/{name}/SKILL.md · evals/{name}/ · /{name}
内容 SHA-256 -> 60c6621af27c
方法与流程
适用与边界
原文中的明确线索
/skill-create、/skill-create {name}、/skill-create from-btw {btw-id}、.bkit/btw-suggestions.json、CLAUDE.md、.claude/skills/project/{name}/SKILL.md、evals/{name}/、/{name}