A collection of skills for AI agents. Follows the Agent Skills specification. This repository is my personal skill testing ground.
npx skills add pskoett/pskoett-ai-skillsskills/
skill-name/
SKILL.md # Required - skill definition with YAML frontmatter
scripts/ # Optional - executable code
references/ # Optional - documentation loaded on demand
assets/ # Optional - templates, images, data files
| Skill | Description |
|---|---|
| agent-teams-simplify-and-harden | Implementation + audit loop using parallel agent teams with structured simplify, harden, and document passes |
| dx-data-navigator | Query DX Data Cloud for developer productivity metrics, DORA metrics, PR/deployment data, and engineering analytics |
| intent-framed-agent | Captures a lightweight intent contract at execution start and monitors coding-task drift until resolution |
| plan-interview | Runs a structured interview before planning non-trivial implementations |
| self-improvement | Captures learnings and errors with hook-based activation and automatic skill extraction |
| simplify-and-harden | Post-completion self-review that runs simplify, harden, and micro-documentation passes before signaling done |
These skills are experimental and currently part of the testing ground setup.
| Skill | Description |
|---|---|
| self-improvement-ci | CI-only self-improvement workflow for recurring failure-pattern capture using gh-aw |
| simplify-and-harden-ci | CI-only simplify/harden workflow for pull requests using gh-aw with headless scan/report gates |
plan-interviewaligns requirements.intent-framed-agentlocks execution intent and catches drift.simplify-and-hardenimproves post-implementation quality/security.self-improvementcaptures recurring patterns across tasks.
To use a skill, add it to your agent's configuration or reference it directly.
The self-improvement skill supports automatic activation via hooks. Add to .claude/settings.json:
{
"hooks": {
"UserPromptSubmit": [{
"matcher": "",
"hooks": [{
"type": "command",
"command": "./skills/self-improvement/scripts/activator.sh"
}]
}]
}
}Features:
- Hook activation: Automatic reminders to evaluate learnings after tasks
- Error detection: PostToolUse hook detects command failures
- Skill extraction: Promote high-value learnings to reusable skills
- Multi-agent support: Works with Claude Code, Codex CLI, and GitHub Copilot
Feel free to submit PRs with new skills or improvements to existing ones.