Battle-tested AI agent skills from gptme, packaged as a Claude Code plugin.
/plugin install github:gptme/gptme-skills-cc
Or from the Claude Code marketplace (coming soon):
/plugin install gptme-skills@claude-plugins-official
| Skill | Description |
|---|---|
/code-review |
Systematic PR and code audit workflow with bundled analysis utilities |
/persistent-learning |
Capture insights to durable files so future sessions inherit the knowledge |
/progressive-disclosure |
Restructure large documentation into token-efficient slim indexes |
/git-workflow |
Conventional commits, worktree branches, CI gate — reliable git for AI agents |
These patterns come from running autonomous AI agents continuously — not from docs or theory. They address recurring failure modes:
- Code review: Agents produce inconsistent, shallow reviews.
/code-reviewgives a systematic multi-dimension workflow and automated pattern detection. - Persistent learning: Claude sessions are stateless.
/persistent-learningteaches the write-first habit that makes knowledge survive session boundaries. - Progressive disclosure: Large documentation files waste context budget.
/progressive-disclosuregives a 40-60% reduction pattern that keeps content accessible. - Git workflow: Agents commit sloppily, skip CI, and cause merge accidents.
/git-workflowestablishes conventional commits, feature branches, and CI gate as defaults.
obra/superpowers is an excellent general-purpose skill pack. gptme-skills is complementary — it covers different ground:
| Topic | superpowers | gptme-skills |
|---|---|---|
| TDD / test-first | ✅ | — |
| Systematic debugging | ✅ | — |
| Code review | — | ✅ (with bundled analysis utils) |
| Persistent cross-session learning | — | ✅ |
| Documentation restructuring | — | ✅ |
| Git / commit workflow | — | ✅ |
Install both. They don't overlap.
These skills also work in gptme — the same SKILL.md format is used by both runtimes. Skills written for gptme-skills-cc work in gptme without modification (gptme uses additional frontmatter fields for keyword matching, which Claude Code safely ignores).
This plugin is generated from gptme-contrib, the shared skill library for the gptme ecosystem.
MIT — see LICENSE.
- gptme — the open-source AI agent framework these patterns come from
- gptme-contrib — gptme's shared skill library (source of truth)
- obra/superpowers — complementary general-purpose skill pack
- Claude Code Plugin Reference — plugin format docs