ai-coding-agent-skills
Agent skills for AI coders
Overview
Single-source, reusable skills and agent prompts shared across AI coding runtimes. The skills/ directory is the source of truth and is referenced by runtime-specific integrations via .claude/skills -> ../skills and per-skill symlinks under .agents/skills/ (e.g. .agents/skills/<skill> -> ../../skills/<skill>). Autonomous or scheduled workflows should invoke these canonical skills instead of maintaining duplicate routine prompts.
Each skill directory contains a SKILL.md that documents prerequisites and invocation.
Quick start
-
Clone the repo:
git clone [email protected]:dceoy/ai-coding-agent-skills.git -
Pick a runtime and explore the skills in
skills/and the relevant runtime integration:- Claude Code / Claude Code Routines:
.claude/skills -> ../skills(symlink exposing all skills) - Codex CLI / other runtimes:
.agents/skills/(per-skill symlinks intoskills/)
- Claude Code / Claude Code Routines:
-
Open a skill directory and read the
SKILL.mdto learn how to invoke it.
Skills
All skills are located in skills/ and surfaced through shared discovery or runtime-specific symlinks.
Git Workflows
clean-gone-branches- Clean up local branches marked as [gone] and their worktreescommit- Create a git commit with an appropriate messagecommit-push-pr- Commit, push, and open a pull request
Code Quality
code-review- Comprehensive multi-agent code review for pull requestscode-simplifier- Simplify and refine code for clarity and maintainabilitypr-feedback-triage- Triage and resolve pull request review feedbackpr-review- Autonomous CI/GitHub PR review that posts concise, high-confidence findings by defaultsecurity-guidance- Security-focused review of code changes, diffs, commits, and pull requests
AI Tools
codex- Use OpenAI Codex from AI coding agents for code reviews, adversarial reviews, and task delegation
Skill Management
claude-agent-converter- Convert Claude Code agents to portable skillsclaude-command-converter- Convert Claude Code commands to portable skills
Structure
.
├── skills/ # Shared skill directories (source of truth)
├── .agents/
│ └── skills/ # Per-skill symlinks into skills/ (other runtimes)
├── .claude/
│ └── skills -> ../skills # Symlink exposing skills/ to Claude Code runtime
├── .github/
│ └── workflows/ # CI workflows (ci.yml)
├── AGENTS.md # Repository guidelines (source of truth)
├── CLAUDE.md -> AGENTS.md # Symlink for Claude Code
├── README.md # This file
└── LICENSE
Prerequisites
Install and authenticate the required CLI tools before running skills:
- Claude Code - For
.claude/agents and skills- Install: https://docs.anthropic.com/en/docs/claude-code
- Auth: Follow CLI onboarding flow
- Codex CLI / Codex plugin - For the
codexskill- Full Claude Code integration: install
openai/codex-plugin-ccand run/codex:setup - Standalone / generic agent usage: install
@openai/codexand runcodex login - Plugin-managed operations (status/result/cancel/transfer) require the Claude Code plugin context
- Full Claude Code integration: install
Usage notes
- Skills do not always auto-run; use your agent's skill invocation flow or ask for the skill explicitly.
- For Claude Code Routines, CI, and other autonomous workflows, invoke the canonical skill under
skills/and pass runtime-specific context externally. pr-reviewis the source of truth for autonomous PR review behavior, including GitHub posting and verification.- If a skill fails, open its
SKILL.mdand verify prerequisites and command syntax.
Troubleshooting
Skill not found
- Confirm the skill directory exists in the expected runtime location
- Check that skill name matches exactly (case-sensitive)
- Verify the
SKILL.mddocumentation is present
CLI not in PATH
- Ensure the tool is installed and accessible:
which <tool-name> - Add the tool's bin directory to your shell PATH
- Restart your terminal after installation
Authentication errors
- Re-run the tool's auth command:
- Claude Code: Follow onboarding flow
- Codex CLI: run
codex login - Codex Claude Code plugin: run
/codex:setup
- Verify active subscription or API key
Symlink issues
- Skill directories are shared from
skills/via.agents/skillsand.claude/skills - If broken, recreate the symlink or ensure
skills/exists - On Windows, ensure symlink support is enabled
Contributing
See AGENTS.md for repository guidelines and agent-specific rules.
License
See LICENSE for details.
No comments yet
Be the first to share your take.