Portable agent skills packaged once and exposed through multiple installation surfaces.
| Skill | Purpose |
|---|---|
test-challenger |
Review tests for coverage, false positives, reliability, and framework-specific gaps. |
comprehensive-pr-review |
Run a structured multi-agent PR review before merge. |
test-challenger is the normalized packaged name for the original test-challenge source skill.
.agents/skills/ # Canonical portable skills
.claude/agents/ # Generated Claude Code subagents
commands/skills/ # Generated Gemini CLI commands
scripts/install_skills.py # Cross-runtime local installer
scripts/sync_adapters.py # Regenerates Claude/Gemini adapters
python3 scripts/install_skills.py --target codex allpython3 scripts/install_skills.py --target claude-skills allpython3 scripts/install_skills.py --target claude-subagents allgemini extensions install https://github.com/MV011/agent-skillsThis installs the extension-backed commands:
/skills:test-challenger/skills:comprehensive-pr-review
python3 scripts/install_skills.py --target universal allThat copies the canonical skills into ~/.agents/skills/, which is the shared install surface used by the open Agent Skills convention and similar toolchains.
After changing any SKILL.md, regenerate the Claude and Gemini wrappers:
python3 scripts/sync_adapters.pyDetailed install notes and upstream documentation links live in docs/install.md.