Claude Code skills and hook plugins
npx claudepluginhub trancong12102/agentskillsPlay notification sounds when Claude stops or asks a question (macOS)
Agents for codebase exploration, external research, planning, review, and autonomous execution
Desktop notifications for Claude Code — works in any OSC 9 terminal (Ghostty, iTerm2, Kitty, etc.) and inside tmux
A collection of reusable skills for AI coding agents, mainly for Claude Code.
Some skills require API keys or external CLI authentication. Set them up before use:
| Skill | Credential | How to get |
|---|---|---|
context7 | CONTEXT7_API_KEY env var | Sign up at context7.com |
codebase-search | MORPH_API_KEY env var | Sign up at morphllm.com |
github-codebase-search | MORPH_API_KEY env var | Same as above |
oracle | Codex CLI auth | Run codex login after installing Codex CLI |
council-review | Codex CLI auth | Same as above |
The oracle and council-review skills require Codex CLI with an oracle profile. Add this to ~/.codex/config.toml:
[profiles.oracle]
model = "gpt-5.4"
model_reasoning_effort = "high"
approval_policy = "never"
sandbox_mode = "read-only"
# All skills
bunx skills add trancong12102/agentskills -g -y -a claude-code
# Or individual skills
bunx skills add trancong12102/agentskills -g -y -a claude-code -s context7
bunx skills add trancong12102/agentskills -g -y -a claude-code -s council-review
bunx skills add trancong12102/agentskills -g -y -a claude-code -s deps-dev
bunx skills add trancong12102/agentskills -g -y -a claude-code -s oracle
| Plugin | Description |
|---|---|
| ora | 7 specialized subagents for exploration, planning, and execution (see Agents below) |
| sound-notify | Play macOS notification sounds when Claude stops or asks a question |
/plugin marketplace add trancong12102/agentskills
/plugin install ora@agentskills
/plugin install sound-notify@agentskills
# Enable auto-update
/plugin marketplace update agentskills
The ora plugin ships 7 specialized subagents organized across three phases:
| Agent | Model | Description |
|---|---|---|
ora:Ariadne | Sonnet | Codebase exploration — traces flows, finds implementations, maps architecture. |
ora:Clio | Sonnet | External research — fetches docs, searches GitHub repos, looks up best practices. |
| Agent | Model | Description |
|---|---|---|
ora:Prometheus | Opus | Interview-style planner — gathers codebase context, then asks targeted questions to clarify scope before producing a structured plan. Two-phase invocation: Phase 1 returns questions, Phase 2 synthesizes a plan from answers. |
ora:Metis | Opus | Pre-plan risk analysis — classifies intent, surfaces hidden requirements, flags AI-slop risks, and generates directives for the planner. |
ora:Momus | Sonnet | Plan validation — checks reference validity, task executability, and critical blockers. Strong approval bias — rejects only for true blockers (max 3 issues). Auto-triggered by ExitPlanMode hook on plans with 4+ steps. |