pikakit
v3.9.7
Published
Enterprise-grade Agent Skill Manager with Antigravity Skills support, Progressive Disclosure detection, and semantic routing validation
Downloads
6,906
Maintainers
Readme
PikaKit
CLI installer for PikaKit - FAANG-grade AI skills, workflows, and agents
⚡ Installation
npx pikakitThat'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
1. Add Skills from GitHub
# Recommended: One command install
npx pikakit
# Or specify a repo:
npx pikakit add <owner>/<repo>
# Examples:
npx pikakit add pikakit/agent-skills # Official skills
npx pikakit add myteam/company-skills # Custom skills2. Interactive Installation
┌───────────────────────────────────────────┐
│ 🛠️ PikaKit Installer │
├───────────────────────────────────────────┤
│ ◆ Select skills to install │
│ ◆ Choose install scope │
│ ◆ Configure AutoLearn (optional) │
│ ◆ Auto-install dependencies │
└───────────────────────────────────────────┘3. Creates Ready-to-Use Structure
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
Install Scope
| Option | Location | Best For |
|--------|----------|----------|
| Project | .agent/ in current project | Single project |
| Global | ~/.gemini/antigravity/ | All projects |
AutoLearn (Optional)
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
kit Command (Always Available)
kit list # List all installed skills
kit validate # Validate skill structure
kit info <skill> # Show skill details
kit doctor # Check system health
kit cache status # View cache usage
kit cache clear # Clear cacheagent Command (Local Only - v2.0+)
# 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
Install Official Skills
npx pikakit add pikakit-agent-skillsInstall to Global Location
npx pikakit add pikakit-agent-skills --globalForce Reinstall
npx pikakit add pikakit-agent-skills --force🗂️ What Gets Installed
Complete Structure
.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/ # PerformanceDependencies Auto-Installed
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 pikakiton Windows, macOS, Linux - ✅ 100% JavaScript - No Python required
🛠️ Development
# 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📄 License
MIT - Free for all projects.
⚡ PikaKit v2.0.0 One command. Complete AI setup. Installer only.
