ワンクリックで
skills-sh-search
Search and install skills from skills.sh marketplace when internal skills are insufficient
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Search and install skills from skills.sh marketplace when internal skills are insufficient
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | skills-sh-search |
| description | Search and install skills from skills.sh marketplace when internal skills are insufficient |
| scope | core |
| argument-hint | <query> [--install] [--global] |
| user-invocable | true |
Search the skills.sh marketplace for reusable AI agent skills when no matching internal skill exists. Install discovered skills directly into the project.
<query> Required. Search query describing the capability needed
--install, -i Install selected skill after search
--global, -g Install to ~/.codex/skills/ instead of project .codex/skills/
--list, -l List currently installed skills.sh skills
--check, -c Check for updates on installed skills.sh skills
--source, -s Search source: "skills-sh" (default) | "agentskills" | "all"
1. Search skills.sh marketplace
├── Run: npx --yes skills find "<query>"
├── Review results (name, description, install count)
└── Present top candidates to user
2. User selects skill
├── Confirm selection with user
└── Check for namespace conflicts with existing skills
3. Install skill
├── Run: npx --yes skills add <source> [-g]
├── Verify installation in .codex/skills/
└── Check installed SKILL.md frontmatter
4. Post-install adaptation
├── Review installed SKILL.md frontmatter
├── Add oh-my-customcodex fields if missing:
│ ├── user-invocable: true|false
│ ├── model-invocable (if not present)
│ └── argument-hint (if applicable)
└── Add source metadata:
├── source-type: skills-sh
└── source-origin: <owner/repo>
5. Ontology sync
├── Notify: run "omcodex ontology build" to register new skill
└── Or manually add to skills.yaml if ontology CLI unavailable
Before installing, verify no existing skill shares the same name:
# Check for conflict
ls .codex/skills/ | grep -w "<skill-name>"
If conflict exists:
[skills-sh-search] Searching marketplace...
Query: "<query>"
Results: 5 found
1. owner/skill-name (12.3K installs)
Description of the skill
2. owner/another-skill (8.1K installs)
Description of the skill
3. owner/third-skill (3.5K installs)
Description of the skill
Select [1-3] or "skip" to cancel:
[skills-sh-search] Installed
Skill: <skill-name>
Source: <owner/repo>
Location: .codex/skills/<skill-name>/SKILL.md
Adapted: ✓ (added user-invocable, source metadata)
Next: Run "omcodex ontology build" to register in ontology.
[skills-sh-search] Failed
Error: <error_message>
Suggested Fix: <suggestion>
[skills-sh-search] No Results
Query: "<query>"
Suggestions:
- Try broader search terms
- Check https://skills.sh/ directly
- Consider creating a custom skill with /create-agent
Search the agentskills.io community skill registry as an alternative source.
Search workflow:
1. Try: npx --yes @agentskill.sh/cli search "<query>"
2. If CLI unavailable: WebSearch "site:agentskills.io <query>"
3. Present results with source attribution
Install workflow:
1. Run: npx --yes @agentskill.sh/cli install <slug>
2. Verify installation in .codex/skills/
3. Add source metadata:
├── source-type: agentskills-io
└── source-origin: <slug>
Usage:
# Search agentskills.io only
/skills-sh-search "memory management" --source agentskills
# Search both sources
/skills-sh-search "testing patterns" --source all
Fallback chain:
| Step | Tool | Condition |
|---|---|---|
| 1 | @agentskill.sh/cli search | Primary — if CLI available |
| 2 | WebSearch site:agentskills.io | CLI unavailable or no results |
| 3 | Report no results | Both failed |
# Search for Terraform skills
/skills-sh-search terraform infrastructure
# Search and install
/skills-sh-search "react testing patterns" --install
# Install globally
/skills-sh-search "git workflow" --install --global
# List installed skills.sh skills
/skills-sh-search --list
# Check for updates
/skills-sh-search --check
# Search agentskills.io
/skills-sh-search "agent memory" --source agentskills
# Search all sources
/skills-sh-search "code review" --source all --install
When intent-detection finds no matching agent and the domain is identifiable, this skill can be suggested as a fallback to find relevant external skills.
Installed skills.sh skills are tracked with source-type: skills-sh metadata, enabling update-external to check for updates via npx skills check.
If a skills.sh skill provides domain knowledge, create-agent can reference it when building a new agent for that domain.
Installed agentskills.io skills are tracked with source-type: agentskills-io metadata, enabling update-external to check for updates. Default source remains skills.sh; agentskills.io is opt-in via --source flag.
--install flag or user confirmationDISABLE_TELEMETRY=1 to disable skills CLI telemetryPre-action boundary checking — validates agent tool calls against declared capabilities and task contracts
Auto-detect project context and optimize harness — deactivate unused agents/skills, suggest missing experts, generate project profile
Multi-LLM adversarial consensus loop — 3+ LLMs compete to find flaws in designs/specs until unanimous agreement is reached
Monitor Claude Code releases and auto-generate GitHub issues for each new version
Execute OpenAI Codex CLI prompts and return results
YAML-based DAG workflow engine with topological execution and failure strategies