원클릭으로
skill-creator
Create or update SKILL.md files. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create or update SKILL.md files. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
配置 OctoAgent 的 LLM Provider、模型别名和 Memory 模型绑定。适用于新增 SiliconFlow / OpenRouter / OpenAI 等 Provider、设置 main / cheap / memory aliases,以及说明 Web / CLI / Agent 的正确配置入口与生效方式。
Build, scaffold, and register MCP (Model Context Protocol) servers for OctoAgent. Use when: (1) creating a new MCP server from scratch, (2) adding tools/resources to an existing MCP server, (3) registering an MCP server with OctoAgent's MCP registry, (4) debugging MCP server connectivity. NOT for: using existing MCP tools (those are auto-available), general API integrations without MCP.
Delegate coding tasks to OctoAgent Workers. Use when: (1) building/creating new features, (2) reviewing PRs, (3) refactoring codebases, (4) iterative coding that needs file exploration. NOT for: simple one-liner fixes (just edit), reading code (use filesystem tools directly).
GitHub operations via `gh` CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating/commenting on issues, (3) listing/filtering PRs or issues, (4) viewing run logs. NOT for: local git operations (use git directly), non-GitHub repos, or cloning (use git clone).
View LiteLLM Proxy model usage and cost data. Use when: user asks about model costs, token usage, spending breakdown, or API usage statistics. Queries LiteLLM spend endpoints.
Edit PDFs with natural-language instructions using the nano-pdf CLI. Use when asked to edit, modify, or update PDF content on specific pages.
| name | skill-creator |
| description | Create or update SKILL.md files. Use when designing, structuring, or packaging skills with scripts, references, and assets. |
| version | 1.0.0 |
| author | OctoAgent |
| tags | ["skill","creator","meta"] |
| tools_required | ["filesystem.read_text","filesystem.list_dir","terminal.exec"] |
This skill provides guidance for creating effective SKILL.md files for OctoAgent.
Skills are modular, self-contained packages that extend OctoAgent's capabilities by providing specialized knowledge, workflows, and tools. They transform the agent from a general-purpose assistant into a specialized agent equipped with procedural knowledge.
The context window is a shared resource. Skills share it with system prompt, conversation history, other Skills, and the user request. Only add context the LLM doesn't already have.
Every skill consists of a required SKILL.md file and optional bundled resources:
skill-name/
├── SKILL.md (required)
│ ├── YAML frontmatter metadata (required)
│ │ ├── name: (required) - lowercase letters, digits, hyphens
│ │ └── description: (required) - clear, comprehensive
│ └── Markdown instructions (required)
└── Bundled Resources (optional)
├── scripts/ - Executable code (Python/Bash/etc.)
├── references/ - Documentation loaded into context as needed
└── assets/ - Files used in output (templates, icons, fonts, etc.)
name and description. Optional: version, author, tags, trigger_patterns, tools_required.skills action=load name=<name>^[a-z0-9]+(-[a-z0-9]+)*$Skills are installed to one of three directories (priority: project > user > builtin):
skills/ in the OctoAgent repository~/.octoagent/skills/{project_root}/skills/Same-named skills at higher priority override lower priority.