A collection of agent skills for repository setup, multi-CLI agent workflows, and intelligent context loading.
| Skill | Description |
|---|---|
| git-setup-skill | Expert skill for professional Git/GitHub repository setup: .gitignore, .gitattributes, README files, licensing, metadata, tags, releases, and GitHub Actions. |
| swarm-forge-skill | Guided project context setup for multi-CLI agent workflows across Claude Code, Codex, OpenCode, and Gemini CLI using patterns like TDD, BDD, ATDD, and SDD. |
| path-context-skill | Behavioral protocol for registering external project folders as reference context, with a 6-pass discovery heuristic and strict per-turn token budget. |
| api-test-skill | Protocol-first, client-agnostic skill for testing REST APIs end-to-end from the terminal. Detects OS and HTTP client automatically, constructs requests with env var references for secrets, interprets responses, infers auth and Content-Type, diagnoses errors, supports request chaining and response assertions. |
Install all skills with a single command:
npx skills add fxckcode/skills-kitIf you only need a specific skill, you can install it individually:
npx skills add fxckcode/skills-kit/skills/git-setup-skill
npx skills add fxckcode/skills-kit/skills/swarm-forge-skill
npx skills add fxckcode/skills-kit/skills/path-context-skill
npx skills add fxckcode/skills-kit/skills/api-test-skillThis will automatically download and install the skill to the appropriate agent skills directory.
Skills activate automatically when the agent detects relevant trigger phrases. See each skill's README.md or SKILL.md for specific triggers and what they produce.
skills-kit/
├── AGENTS.md
├── CHANGELOG.md
├── CLAUDE.md
├── LICENSE
├── README.md
└── skills/
├── api-test-skill/
├── git-setup-skill/
├── path-context-skill/
└── swarm-forge-skill/
Only the repository root has a .git/ folder. Individual skills do not carry their own git history inside this repo.
MIT — see LICENSE.