Introduction to GigiKit
GigiKit is an AI-powered development toolkit that enhances Claude Code with structured workflows, reusable skills, and multi-agent orchestration.
What is GigiKit?
GigiKit provides a curated set of configurations, skills, and rules that transform Claude Code from a general-purpose AI assistant into a specialized development partner. It includes:
- Agent orchestration β coordinate multiple AI agents for complex tasks
- Skill modules β reusable capabilities like testing, code review, and deployment
- Workflow rules β structured processes for planning, implementing, and shipping code
- Hook system β customize agent behavior at key lifecycle points
Getting Set Up
Install the CLI globally from the private Verdaccio registry, then initialize your project:
# Set registry once (recommended)
npm config set @gpp:registry https://registry-aawp.vnggames.net/
npm install -g @gpp/gigikit-cli
# Initialize in your project
cd /path/to/your-project
gk init --kit engineer
After initialization, your project gets a CLAUDE.md file (markdown) that tells Claude Code how to orchestrate your workflows:
# CLAUDE.md
## Role & Responsibilities
Analyze requirements, delegate to sub-agents, ensure quality delivery.
## Workflows
- Primary workflow: `./.claude/rules/primary-workflow.md`
- Development rules: `./.claude/rules/development-rules.md`
- Orchestration: `./.claude/rules/orchestration-protocol.md`
Key Features
Structured Workflows
Every task follows a clear pipeline: research β plan β implement β test β review β deploy. This ensures consistent quality and prevents common pitfalls.
graph LR A[Research] β> B[Plan] B β> C[Implement] C β> D[Test] D β> E[Review] E β> F[Deploy]
Reusable Skills
Skills are modular capabilities that agents can invoke. From running tests to generating diagrams, skills encapsulate domain expertise into composable building blocks.
Multi-Agent Teams
For complex projects, GigiKit can orchestrate teams of specialized agents working in parallel β each with distinct file ownership and coordination protocols.
Available Kits
| Kit | Description |
|---|---|
engineer | Full-stack development boilerplate with 14 agents, 68+ skills |
marketing | Marketing automation kit with 31 agents, 80+ skills |
Next Steps
Ready to get started? Continue to the Installation & Setup guide to install and configure GigiKit in your project.