Enterprise-grade Agent Skill Manager with Antigravity Skills support, Progressive Disclosure detection, and semantic routing validation
npm install pikakitbash
npx pikakit
`
That's it! One command installs everything:
| Component | Count | Description |
|-----------|-------|-------------|
| Skills | 50 | FAANG-grade coding skills |
| Workflows | 25 | /think, /build, /autopilot, etc. |
| Agents | 25 | Specialist AI agents |
| Rules | GEMINI.md | AI behavior configuration |
| Scripts | 25 | JavaScript automation scripts |
| Commands | kit | CLI management tool |
---
šÆ What This CLI Does
$3
`bash
Recommended: One command install
npx pikakit
Or specify a repo:
npx pikakit add /
Examples:
npx pikakit add pikakit/agent-skills # Official skills
npx pikakit add myteam/company-skills # Custom skills
`
$3
`
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā š ļø PikaKit Installer ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā¤
ā ā Select skills to install ā
ā ā Choose install scope ā
ā ā Configure AutoLearn (optional) ā
ā ā Auto-install dependencies ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
`
$3
`
your-project/
āāā .agent/
ā āāā GEMINI.md # AI Rules
ā āāā skills/ # 50 Skills
ā āāā workflows/ # 25 Workflows
ā āāā agents/ # 25 Agents
ā āāā knowledge/ # Learning memory
ā āāā config/ # Configuration
ā āāā scripts-js/ # Automation
ā āāā metrics/ # Tracking
ā
āāā kit.cmd / kit # CLI wrapper
āāā .agent/lib/agent-cli/ # Agent CLI (run locally)
`
---
š§ CLI Options
$3
| Option | Location | Best For |
|--------|----------|----------|
| Project | .agent/ in current project | Single project |
| Global | ~/.gemini/antigravity/ | All projects |
$3
When prompted "Install AutoLearn?":
| Choice | Effect |
|--------|--------|
| Yes | Installs agent command for interactive learning |
| No | Core functionality works perfectly, just no agent CLI |
> Note: Choosing "No" does NOT affect workflows, skills, or agents.
---
š¦ Commands After Installation
$3
`bash
kit list # List all installed skills
kit validate # Validate skill structure
kit info # Show skill details
kit doctor # Check system health
kit cache status # View cache usage
kit cache clear # Clear cache
`
$3
`bash
Run from project root:
node .agent/lib/agent-cli/bin/agent.js
Or add to package.json:
"scripts": { "agent": "node .agent/lib/agent-cli/bin/agent.js" }
npm run agent
`
---
š Usage Examples
$3
`bash
npx pikakit add pikakit-agent-skills
`
$3
`bash
npx pikakit add pikakit-agent-skills --global
`
$3
`bash
npx pikakit add pikakit-agent-skills --force
`
---
šļø What Gets Installed
$3
`
.agent/
āāā GEMINI.md # Supreme AI Rules
āāā ARCHITECTURE.md # System Overview
āāā CONTINUOUS_EXECUTION_POLICY.md # Autopilot Rules
āāā WORKFLOW_CHAINS.md # Workflow Patterns
ā
āāā skills/ # 50 Skills
ā āāā skill-generator/
ā āāā react-architect/
ā āāā typescript-expert/
ā āāā debug-pro/
ā āāā studio/
ā āāā ... (45 more)
ā
āāā workflows/ # 25 Workflows
ā āāā think.md
ā āāā build.md
ā āāā autopilot.md
ā āāā ... (22 more)
ā
āāā agents/ # 25 Agents
ā āāā frontend-specialist.md
ā āāā backend-specialist.md
ā āāā ... (23 more)
ā
āāā knowledge/ # Learning Memory
ā āāā lessons-learned.yaml
ā
āāā config/ # Configuration
āāā scripts-js/ # 25 JS Scripts
āāā metrics/ # Performance
`
$3
`bash
npm install # Node.js dependencies
`
---
š Related Packages
| Package | Purpose |
|---------|---------|
| pikakit-agent-skills | Main skills repository |
| pikakit | This CLI installer |
---
š Version History
v2.0.0 (Current)
- ā ļø BREAKING: Agent CLI removed from npm package
- ā
Agent CLI now runs locally from .agent/lib/agent-cli/
- ā
Package size reduced 75%
- ā
Clearer separation: pikakit = installer only
v1.0.0
- ā
Renamed to PikaKit for cross-platform npx support
- ā
Works with npx pikakit on Windows, macOS, Linux
- ā
100% JavaScript - No Python required
---
š ļø Development
`bash
Clone
git clone https://github.com/pikakit/pikakit.git
cd pikakit
Install dependencies
npm install
Run locally
node bin/cli.mjs add pikakit-agent-skills
``