원클릭으로
skill-creator
Create or update skills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create or update skills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | skill-creator |
| description | Create or update skills. Use when designing, structuring, or packaging skills with scripts, references, and assets. |
Guidance for creating effective skills.
Skills are modular packages that extend agent capabilities with specialized knowledge, workflows, and tools. Each skill is a directory containing a SKILL.md file and optional bundled resources.
OPC uses a two-level skill system:
| Level | Path | Scope |
|---|---|---|
| System | .opc/skills/<skill-name>/ | Shared across all projects |
| Project | .opc/projects/<project_id>/skills/<skill-name>/ | Specific to one project |
Project skills with the same name override system skills. When creating new skills from project experience, always use the project level.
Skills enter the system through two paths:
init_skill.py or file_write.<employee>-<role>-<domain>-playbook under the project skills directory.Both paths produce the same <skill-name>/SKILL.md format. This guide covers the agent-driven path; auto-promoted skills follow the same naming and format conventions.
The context window is shared. Only add context the agent doesn't already have. Prefer concise examples over verbose explanations.
skill-name/
├── SKILL.md (required)
│ ├── YAML frontmatter (name, description required)
│ └── Markdown instructions
└── Bundled Resources (optional)
├── scripts/ - Executable code
├── references/ - Documentation loaded as needed
└── assets/ - Files used in output
All skills — whether agent-created or auto-promoted — must follow these conventions:
backend-api-playbook)name field in frontmatterClarify use cases: what triggers this skill, what does it produce?
Identify what scripts, references, and assets would help.
For project-specific skills, create under .opc/projects/<project_id>/skills/:
python3 {baseDir}/scripts/init_skill.py <skill-name> --path .opc/projects/<project_id>/skills
Options: --resources scripts,references,assets and --examples.
Write SKILL.md with:
name (hyphen-case, matches directory) and description (what it does + when to use it — this is the primary trigger for skill discovery)python3 {baseDir}/scripts/package_skill.py <path/to/skill-folder>
Validates the skill then creates a distributable .skill zip file.
Test, notice struggles, improve SKILL.md and resources.
Collaborate with other agents in OpenOPC company mode via the `opc-collab` CLI — send messages, request user input, delegate work, read the manager board, respond in meetings, propose task adjustments.
Search and install agent skills from ClawHub, the public skill registry. Use when needing new capabilities, searching for skills, installing skills, or updating installed skills.
Standing rules for how any role in an OpenOPC company coordinates with its peers — work-item discipline, messaging, meetings, and blocking collaboration. Loaded only in company_mode.
Schedule reminders, recurring tasks, and one-time jobs using system crontab.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Manage durable global/project memory in `.opc/memory/global.md` and `.opc/memory/projects/<current_project_id>.md`.