A personal collection of agent skills — host-neutral, one skill per folder under skills/.
Each skill is a self-contained SKILL.md following the Agent Skills format: a name/description frontmatter block plus instructions the agent follows when the skill is invoked. Skills here are not tied to any single tool or CLI — the source content assumes no host-specific mechanics unless a skill says otherwise.
- tactician — a four-stage ticket workflow (
tactician-research,tactician-plan,tactician-execute,tactician-archive) for researching, planning, executing, and archiving development tickets. Currently v1.
skills/
├── README.md
├── AGENTS.md
├── LICENSE
├── CHANGELOG.md
└── skills/
├── tactician-research/SKILL.md
├── tactician-plan/SKILL.md
├── tactician-execute/SKILL.md
└── tactician-archive/SKILL.md
Skills are plain directories — there's no build step. To use one with a given agent/host, link or copy its folder into wherever that host discovers skills (e.g. .claude/skills/, .agents/skills/), preserving the folder name.
ln -s ~/AndroidStudioProjects/skills/skills/tactician-research ~/your-project/.claude/skills/tactician-researchRepeat per skill, per host, as needed.
Skills are versioned individually, not as a whole repo. When a skill gets a breaking rewrite, the new version replaces the active one under skills/, and the superseded version is preserved for reference (not auto-discovered or invocable) rather than deleted outright. See CHANGELOG.md for what changed and when.