ワンクリックで
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 職業分類に基づく
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`.
| 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.