Skills

August 2, 2026 · View on GitHub

Forget about MCP1; use command-line tools and tailor context to the task at hand.

Note

Unsolicited advice: try to stay away from snake oil and cruft. The best skill is no skill. Seriously, only write skills to update or steer clankers if you want to adjust their “out-of-the-box” behavior. The models are good, they know what they are doing (in like 89% of the cases2).

Use with Codex, Claude Code, Pi.

Install

git clone git@github.com:bkircher/skills.git ~/src/skills

… or something like this. You can also clone somewhere else and symlink to the agent-specific directories.

Test

Start Codex as normal:

codex -m gpt-5.3

(before Codex version 0.80.0, pass --enable skills feature flag):

codex --enable skills -m gpt-5.2

Then, when prompted:

> list skills

Should output something like:

• Available skills:

  - english-text-editor
  - gh-address-comments
  - gh-code-review
  - gh-run-failure
  - git-commit-message
  - jira-read-ticket

Use with Codex

Skills are still a work in progress (as of Codex 0.72.0) 3. Run Codex with: codex --enable skills. For example:

codex --enable skills -m gpt-5.2-codex -s workspace-write -a on-request

Tested with:

codex --version
codex-cli 0.72.0

Use with Claude Code

Claude Code supports skills out of the box. Make sure the skills are installed, e.g.,

cd ~/.claude
ln -s $HOME/src/skills skills

Then in Claude CLI:

> list skills

⏺ Here are the available skills:

  GitHub & Git:
  - gh-address-comments - Help address review/issue comments on the open GitHub PR for the current branch
  - gh-code-review - Conduct a thorough and in-depth code review for a PR on GitHub
  - gh-run-failure - Analyze failures in GitHub pipelines or jobs
  - git-commit-message - Formulate a git commit message

  Text & Documentation:
  - english-text-editor - Suggests improvements for English language text (spelling, wording)

  Project Management:
  - jira-read-ticket - Read Jira ticket description, comments, and details

  You can invoke any skill using the / prefix, for example: /gh-code-review or /git-commit-message

List of skills

List of skills:

SkillDescription
confluence-readSearch Confluence pages and fetch page content
english-text-editorSuggests improvements for English language text (spelling, wording)
gh-address-commentsAddress review/issue comments on open GitHub PR for current branch Source
gh-code-reviewConduct thorough code review for a GitHub PR
gh-run-failureAnalyze failures in GitHub pipelines or jobs
git-commit-messageGenerate Git commit messages from staged changes when requested
jira-read-ticketPull description, comments, or more from a Jira ticket
jira-write-ticketWrite a Jira ticket
playwright-cliAutomate browser interactions, test web pages, and work with Playwright tests Source (added 2026-04-06, Apache-2.0)
snyk-cliScan and triage Snyk security findings in local repositories and container images
sonar-cliAccess and understand SonarQube analysis results with the SonarQube CLI
unit-testingHelp when writing or updating unit tests

Create your own skills

mkdir -p ~/src/skills/<my-name>
curl -fsSL \
    https://raw.githubusercontent.com/anthropics/skills/refs/heads/main/template/SKILL.md \
    -o ~/src/skills/<my-name>/SKILL.md

General:

Prompting:

Other skills:

License

Unless otherwise noted, the license is MIT. Some skills are copied from elsewhere and have their own licenses.

Footnotes

  1. for most of the time

  2. totally made up number

  3. I believe Codex fully supports skills now; haven't used it in a while