| name | skills |
|---|---|
| description | Curated Agent Skills collection with installable plugins for Claude Code and directory-based use in Pi, OpenCode, and Codex |
Curated Agent Skills with installable Claude Code plugins and directory-based skills for Pi, OpenCode, Codex, and other tools that load SKILL.md directories.
- In Claude Code, go to Settings > Marketplace
- Add marketplace from GitHub:
dxta/claude-code-skills - Browse and install individual plugins
Recommended neutral path:
git submodule add https://github.com/dxta/claude-code-skills.git ai/skills/mineThen expose the repo to each tool with symlinks or an installer:
# OpenCode
ln -s ../ai/skills/mine ~/.config/opencode/skills
# Pi coding agent
ln -s /path/to/repo/ai/skills/mine ~/.pi/agent/skills/mine
# Codex
ln -s /path/to/repo/ai/skills/mine/core/systematic-debugging ~/.codex/skills/systematic-debuggingFor multi-source setups, keep this repo as the public mine/ source and compose private or third-party skills outside this repository.
| Plugin | Skills | Agents | Commands | Description |
|---|---|---|---|---|
| core-thinking | 9 | - | - | Mental models: collision-zone thinking, defense-in-depth, inversion, meta-pattern recognition, root-cause tracing, scale game, simplification cascades, when-stuck, reasoning tools |
| core-workflow | 5 | 2 | 3 | Code review, planning, push-all, skill creator, spec analyzer |
| context-engineering | 4 | - | - | Master checklist, anti-patterns, agent selection, token management (CC-adapted) |
| frontend | 5 | 1 | - | Design, development, UI styling, web artifacts, web frameworks |
| backend | 2 | 1 | - | Backend development, databases |
| quality | 6 | 2 | 2 | Chaos engineering, code review, performance, PR review, test coverage, webapp testing |
| devops | 4 | 1 | 1 | Ansible, CI/CD, cloud costs, IaC |
| docs | 5 | 1 | 1 | API docs, DOCX, PDF, PPTX, XLSX |
| design | 5 | - | - | Algorithmic art, artifacts, branding, canvas, themes |
| security | 2 | 1 | - | Security pro pack, security scanner |
| comms | 6 | - | - | GCal, GDrive, GitHub, GitLab, Gmail, internal comms |
| media-and-data | 4 | - | - | Media processing, Slack GIFs, Memvid, PKM |
| tools-and-integrations | 1 | - | - | MCP builder |
This repository serves two use cases:
- Root-level skill sources -- Categories such as
core/,frontend/,backend/, etc. contain skills in<category>/<skill-name>/SKILL.mdlayout. This is the source of truth and is compatible with tools that recursively loadSKILL.mddirectories. plugins/marketplace overlay -- Claude Code plugin packages. Each plugin has a.claude-plugin/plugin.jsonmanifest and askills/directory of symlinks pointing back to root-level sources. Some plugins also includeagents/andcommands/directories.
claude-code-skills/
core/ # Root-level skill sources
collision-zone-thinking/
SKILL.md
...
frontend/
backend/
...
index.json # Full skill registry
plugins/
core-thinking/
.claude-plugin/
plugin.json # Marketplace manifest
skills/
collision-zone-thinking -> ../../../core/collision-zone-thinking
...
core-workflow/
.claude-plugin/
plugin.json
skills/
agents/
commands/
...
Some root-level skills are intentionally available only when using the repository directly as a directory/submodule source.
Examples:
- aws/ -- AWS CDK, cost operations, and serverless EDA. Kept separate due to cloud-provider specificity; intended for explicit opt-in.
- packs/ -- Composite skill packs (feature-dev, fullstack-starter-pack) that reference skills across categories.
- Some local workflow skills may remain directory-only before they are packaged into marketplace plugins.
Edit skill files at root level, e.g.:
core/when-stuck/SKILL.md
Then regenerate plugin symlinks if plugin packaging changed:
scripts/sync-plugins.sh- Create
<category>/<skill-name>/SKILL.md - Add an entry to
index.json - Update the relevant plugin's symlinks and
plugin.jsonif it should ship as a Claude Code plugin - Run
scripts/sync-plugins.sh
MIT