ワンクリックで
skill
Skill management and creation. Use for "create skill", "manage skills", "skill info", and "skill help".
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Skill management and creation. Use for "create skill", "manage skills", "skill info", and "skill help".
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Manage OMA skills — list, add, remove, search, and edit skills
Socratic deep interview with mathematical ambiguity gating before autonomous execution
Remove AI slop - low-quality, generic, or verbose content. Use for "clean up", "remove fluff", and "make concise".
Consensus planning - agree before executing. Use for "ralplan", "consensus", "pre-execution review".
Setup routing and environment configuration. Use for "setup", "configure", and "get started".
N coordinated agents on shared task list using Claude Code native teams, with git worktree isolation per executor
SOC 職業分類に基づく
| name | skill |
| description | Skill management and creation. Use for "create skill", "manage skills", "skill info", and "skill help". |
| trigger | /oma:skill |
Create, manage, and organize OMA skills.
OMA distinguishes three skill scopes with precedence (highest to lowest):
| Scope | Path | Read-Only |
|---|---|---|
| Project | .oma/skills/ | No |
| User | ~/.augment/plugins/marketplaces/oh-my-auggie/plugins/oma/skills-learned/ | No |
| Built-in (plugin) | plugins/oma/skills/ | Yes |
Project-level skills take precedence over user-level; user-level takes precedence over built-in.
{skill-name}/
└── SKILL.md
---
name: {skill-name}
description: {one-line description}
trigger: /oma:{skill-name}
allowed-tools: [Read, Glob, Bash, Edit, Write]
model: sonnet4.6
---
## Skill: {skill-name}
{body content}
/oma:skill list
/oma:skill info {skill-name}
/oma:skill add {skill-name}
/oma:skill edit {skill-name}
/oma:skill remove {skill-name}
Note: Use remove. delete is not a supported subcommand alias.
/oma:skill search {query}
/oma:skill setup user
/oma:skill setup project
/oma:skill setup plugin
Initializes the skills directory for the given scope.
/oma:skill sync
/oma:skill sync {url}
Syncs all skills from configured remote sources, or installs a specific skill from a GitHub URL.
mkdir -p plugins/oma/skills/{skill-name}
/oma:skill info {skill-name}
/oma:{skill-name}
Good names:
code-reviewdebugdeployPoor names:
the-code-reviewing-skillhelp-me-with-my-code## Skill: {name}
**Trigger:** /oma:{name}
**Description:** {description}
**Created:** {date}
### Usage
{how to use}
### Examples
/oma:{name} {example} /oma:{name} {example}
### Files
- `plugins/oma/skills/{name}/SKILL.md`
Use the template that best matches the skill type.
Captures how to diagnose and fix a specific error or class of errors.
---
name: {skill-name}
description: Diagnose and fix {error class}
trigger: /oma:{skill-name}
---
## Skill: {skill-name}
{full explanation of the error and solution}
## When to Use
{when this skill applies}
## Diagnosis Steps
1. {step}
2. {step}
## Fix
{how to resolve}
## Prevention
{how to avoid this error in the future}
Captures a multi-step process for accomplishing a goal.
---
name: {skill-name}
description: {one-liner}
trigger: /oma:{skill-name}
---
## Skill: {skill-name}
{high-level description}
## When to Use
{context when to invoke this}
## Steps
1. {step}
2. {step}
## Examples
/oma:{skill-name} {example}
## Constraints
{limits and edge cases}
Captures a reusable code structure or idiom.
---
name: {skill-name}
description: Apply {pattern name}
trigger: /oma:{skill-name}
allowed-tools: [Read, Glob, Grep, Bash, Edit, Write]
---
## Skill: {skill-name}
{full description of the pattern}
## When to Use
{context}
## Pattern
```{language}
{canonical example}
{what to avoid}
{limitations}
### Template 4: Integration
Captures how to connect to an external service or tool.
```markdown
---
name: {skill-name}
description: Integrate with {service/tool name}
trigger: /oma:{skill-name}
allowed-tools: [Bash, Read]
---
## Skill: {skill-name}
{what this integration does}
## Prerequisites
- {requirement}
- {requirement}
## Setup
{configuration steps}
## Usage
{how to use}
## Examples
{example commands}
## Troubleshooting
{common issues and fixes}