https://github.com/fxckcode/skills-kit
A collection of agent skills for repository setup, multi-CLI agent workflows, and intelligent context loading.
https://github.com/fxckcode/skills-kit
agent-skills ai-assistants ai-workflows automation claude-code cli-tools gemini-cli git-setup opencode workflow-automation
Last synced: 3 days ago
JSON representation
A collection of agent skills for repository setup, multi-CLI agent workflows, and intelligent context loading.
- Host: GitHub
- URL: https://github.com/fxckcode/skills-kit
- Owner: fxckcode
- License: mit
- Created: 2026-04-18T17:12:28.000Z (about 2 months ago)
- Default Branch: master
- Last Pushed: 2026-04-20T03:51:33.000Z (about 1 month ago)
- Last Synced: 2026-04-20T05:24:56.538Z (about 1 month ago)
- Topics: agent-skills, ai-assistants, ai-workflows, automation, claude-code, cli-tools, gemini-cli, git-setup, opencode, workflow-automation
- Language: Shell
- Homepage: https://github.com/fxckcode/skills-kit#readme
- Size: 161 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Agents: AGENTS.md
Awesome Lists containing this project
README
# skills-kit
A collection of agent skills for repository setup, multi-CLI agent workflows, and intelligent context loading.
## Skills
| Skill | Description |
|-------|-------------|
| [git-setup-skill](skills/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](skills/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](skills/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](skills/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
### Install the complete skills kit
Install all skills with a single command:
```bash
npx skills add fxckcode/skills-kit
```
### Install individual skills (optional)
If you only need a specific skill, you can install it individually:
```bash
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-skill
```
This will automatically download and install the skill to the appropriate agent skills directory.
## Usage
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.
## Repository Layout
```
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.
## License
MIT — see [LICENSE](LICENSE).