pikakit 3.9.66 → 3.9.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +353 -166
- package/package.json +4 -2
- package/packages/pikakit-extension/pikakit.vsix +0 -0
package/README.md
CHANGED
|
@@ -1,247 +1,434 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
# ⚡ PikaKit
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
[](https://www.npmjs.com/package/pikakit)
|
|
7
|
-
[](https://github.com/pikakit/pikakit)
|
|
8
|
-
[](LICENSE)
|
|
5
|
+
### Transform your AI Agent into a FAANG-level engineering team
|
|
9
6
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
[](https://www.npmjs.com/package/pikakit)
|
|
8
|
+
[](https://github.com/pikakit/agent-skills)
|
|
9
|
+
[](https://github.com/pikakit/agent-skills)
|
|
10
|
+
[](https://github.com/pikakit/agent-skills)
|
|
11
|
+
[](https://github.com/pikakit/agent-skills)
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
npx pikakit
|
|
16
|
-
```
|
|
13
|
+
**Composable Skills · Coordinated Agents · Intelligent Execution**
|
|
17
14
|
|
|
18
|
-
|
|
15
|
+
[Install](#-quick-install) · [Skills](#-skills-catalog-67) · [Workflows](#-workflows-26) · [Agents](#-multi-agent-coordination-26) · [Docs](#-links)
|
|
19
16
|
|
|
20
|
-
|
|
21
|
-
|-----------|-------|-------------|
|
|
22
|
-
| **Skills** | 50 | FAANG-grade coding skills |
|
|
23
|
-
| **Workflows** | 25 | `/think`, `/build`, `/autopilot`, etc. |
|
|
24
|
-
| **Agents** | 25 | Specialist AI agents |
|
|
25
|
-
| **Rules** | GEMINI.md | AI behavior configuration |
|
|
26
|
-
| **Scripts** | 25 | JavaScript automation scripts |
|
|
27
|
-
| **Commands** | `kit` | CLI management tool |
|
|
17
|
+
</div>
|
|
28
18
|
|
|
29
19
|
---
|
|
30
20
|
|
|
31
|
-
##
|
|
32
|
-
|
|
33
|
-
### 1. Add Skills from GitHub
|
|
21
|
+
## 🚀 Quick Install
|
|
34
22
|
|
|
35
23
|
```bash
|
|
36
|
-
# Recommended: One command install
|
|
37
24
|
npx pikakit
|
|
38
|
-
|
|
39
|
-
# Or specify a repo:
|
|
40
|
-
npx pikakit add <owner>/<repo>
|
|
41
|
-
|
|
42
|
-
# Examples:
|
|
43
|
-
npx pikakit add pikakit/agent-skills # Official skills
|
|
44
|
-
npx pikakit add myteam/company-skills # Custom skills
|
|
45
25
|
```
|
|
46
26
|
|
|
47
|
-
|
|
27
|
+
> One command installs **67 skills**, **26 workflows**, **26 agents**, and a complete AI operating system into your project.
|
|
48
28
|
|
|
49
|
-
|
|
50
|
-
┌───────────────────────────────────────────┐
|
|
51
|
-
│ 🛠️ PikaKit Installer │
|
|
52
|
-
├───────────────────────────────────────────┤
|
|
53
|
-
│ ◆ Select skills to install │
|
|
54
|
-
│ ◆ Choose install scope │
|
|
55
|
-
│ ◆ Configure AutoLearn (optional) │
|
|
56
|
-
│ ◆ Auto-install dependencies │
|
|
57
|
-
└───────────────────────────────────────────┘
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
### 3. Creates Ready-to-Use Structure
|
|
29
|
+
### What You Get
|
|
61
30
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
│ ├── config/ # Configuration
|
|
71
|
-
│ ├── scripts-js/ # Automation
|
|
72
|
-
│ └── metrics/ # Tracking
|
|
73
|
-
│
|
|
74
|
-
├── kit.cmd / kit # CLI wrapper
|
|
75
|
-
└── .agent/lib/agent-cli/ # Agent CLI (run locally)
|
|
76
|
-
```
|
|
31
|
+
| Component | Count | Highlights |
|
|
32
|
+
|-----------|:-----:|------------|
|
|
33
|
+
| **Skills** | 67 | Architecture, Frontend, Backend, Security, DevOps, AI, Mobile, Testing |
|
|
34
|
+
| **Workflows** | 26 | `/think` · `/build` · `/autopilot` · `/studio` · `/validate` · and more |
|
|
35
|
+
| **Agents** | 26 | 21 domain specialists + 5 meta-agents for coordination |
|
|
36
|
+
| **Rules** | `GEMINI.md` | AI behavior configuration — the Supreme Law |
|
|
37
|
+
| **Scripts** | 6 | Checklist, verify, preview, session management |
|
|
38
|
+
| **CLI** | `kit` | Skill management · `agent` (optional interactive dashboard) |
|
|
77
39
|
|
|
78
40
|
---
|
|
79
41
|
|
|
80
|
-
##
|
|
42
|
+
## 🎯 Why PikaKit
|
|
43
|
+
|
|
44
|
+
<table>
|
|
45
|
+
<tr>
|
|
46
|
+
<td width="33%" align="center">
|
|
81
47
|
|
|
82
|
-
###
|
|
48
|
+
### 🤖 Auto-Accept
|
|
49
|
+
Approve plan **once** → agent runs to completion with **zero interruptions**
|
|
83
50
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
| **Project** | `.agent/` in current project | Single project |
|
|
87
|
-
| **Global** | `~/.gemini/antigravity/` | All projects |
|
|
51
|
+
</td>
|
|
52
|
+
<td width="33%" align="center">
|
|
88
53
|
|
|
89
|
-
###
|
|
54
|
+
### 🧠 Self-Learning
|
|
55
|
+
AI **remembers mistakes** from `lessons-learned.yaml` and never repeats them
|
|
90
56
|
|
|
91
|
-
|
|
57
|
+
</td>
|
|
58
|
+
<td width="33%" align="center">
|
|
92
59
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
| **Yes** | Installs `agent` command for interactive learning |
|
|
96
|
-
| **No** | Core functionality works perfectly, just no `agent` CLI |
|
|
60
|
+
### 🛠️ Custom Skills
|
|
61
|
+
Create **project-specific skills** that teach AI your conventions
|
|
97
62
|
|
|
98
|
-
>
|
|
63
|
+
</td>
|
|
64
|
+
</tr>
|
|
65
|
+
</table>
|
|
66
|
+
|
|
67
|
+
| | PikaKit | Generic AI | Other Tools |
|
|
68
|
+
|---|:---:|:---:|:---:|
|
|
69
|
+
| **Auto-Accept Workflow** | ✅ | ❌ | ❌ |
|
|
70
|
+
| **Multi-Agent Coordination** | 26 specialists | 1 generic | 1–3 |
|
|
71
|
+
| **Self-Learning Memory** | ✅ | ❌ | ❌ |
|
|
72
|
+
| **100% JavaScript** | ✅ | Mixed | Python |
|
|
73
|
+
| **Safety Protocol** | TIER -1 | ❌ | ❌ |
|
|
74
|
+
| **Token Efficiency** | ~80% reduction | Baseline | ~30% |
|
|
99
75
|
|
|
100
76
|
---
|
|
101
77
|
|
|
102
|
-
##
|
|
78
|
+
## ⚡ Quick Start
|
|
103
79
|
|
|
104
|
-
###
|
|
80
|
+
### 1. Install
|
|
105
81
|
|
|
106
82
|
```bash
|
|
107
|
-
|
|
108
|
-
kit validate # Validate skill structure
|
|
109
|
-
kit info <skill> # Show skill details
|
|
110
|
-
kit doctor # Check system health
|
|
111
|
-
kit cache status # View cache usage
|
|
112
|
-
kit cache clear # Clear cache
|
|
83
|
+
npx pikakit
|
|
113
84
|
```
|
|
114
85
|
|
|
115
|
-
|
|
86
|
+
Choose **Project** (`.agent/`) or **Global** (`~/.gemini/`) scope. Optionally install AutoLearn CLI.
|
|
87
|
+
|
|
88
|
+
### 2. Manage Skills
|
|
116
89
|
|
|
117
90
|
```bash
|
|
118
|
-
#
|
|
119
|
-
|
|
91
|
+
kit list # List all skills
|
|
92
|
+
kit info <skill-name> # Show skill details
|
|
93
|
+
kit validate # Validate skill structure
|
|
94
|
+
kit doctor # System health check
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
### 3. Run Workflows
|
|
120
98
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
99
|
+
```bash
|
|
100
|
+
/think auth system # Brainstorm 3+ approaches
|
|
101
|
+
/plan # Generate detailed plan
|
|
102
|
+
/build # Multi-agent implementation
|
|
103
|
+
/autopilot # Full autonomous execution
|
|
104
|
+
/validate # Run test suite
|
|
105
|
+
/studio # UI design with 50+ styles
|
|
124
106
|
```
|
|
125
107
|
|
|
126
108
|
---
|
|
127
109
|
|
|
128
|
-
##
|
|
110
|
+
## 🧩 Skills Catalog (67)
|
|
111
|
+
|
|
112
|
+
### 🏗️ Architecture & Planning
|
|
113
|
+
|
|
114
|
+
| Skill | Description |
|
|
115
|
+
|-------|-------------|
|
|
116
|
+
| `app-scaffold` | Full-stack app scaffolding from natural language |
|
|
117
|
+
| `project-planner` | Task planning with dependency graph |
|
|
118
|
+
| `idea-storm` | Socratic questioning & brainstorming |
|
|
119
|
+
| `lifecycle-orchestrator` | End-to-end task lifecycle management |
|
|
120
|
+
| `system-design` | Architecture decisions & ADR |
|
|
121
|
+
| `context-engineering` | Token optimization & agent architecture |
|
|
122
|
+
|
|
123
|
+
### 🎨 Frontend & Design
|
|
124
|
+
|
|
125
|
+
| Skill | Description |
|
|
126
|
+
|-------|-------------|
|
|
127
|
+
| `react-architect` | Modern React patterns, hooks, composition |
|
|
128
|
+
| `nextjs-pro` | App Router, RSC, 60+ optimization rules |
|
|
129
|
+
| `frontend-design` | Anti-AI-slop production-grade interfaces |
|
|
130
|
+
| `frontend-development` | React + TypeScript + TanStack Query + MUI |
|
|
131
|
+
| `design-system` | Color theory, typography, UX psychology |
|
|
132
|
+
| `studio` | 50+ styles, 97 palettes, 57 font pairings |
|
|
133
|
+
| `tailwind-kit` | Tailwind CSS v4 patterns |
|
|
134
|
+
| `web-design-guidelines` | WCAG, semantic HTML, accessibility |
|
|
135
|
+
|
|
136
|
+
### ⚙️ Backend & API
|
|
137
|
+
|
|
138
|
+
| Skill | Description |
|
|
139
|
+
|-------|-------------|
|
|
140
|
+
| `api-architect` | REST, GraphQL, tRPC design |
|
|
141
|
+
| `nodejs-pro` | Hono/Fastify/Express/NestJS patterns |
|
|
142
|
+
| `python-pro` | FastAPI, Django, Flask |
|
|
143
|
+
| `data-modeler` | Schema design, Prisma/Drizzle |
|
|
144
|
+
| `auth-patterns` | OAuth2, JWT, RBAC/ABAC, MFA, Passkeys |
|
|
145
|
+
| `payment-patterns` | SePay, Polar, subscription lifecycle |
|
|
146
|
+
| `caching-strategy` | Redis, CDN, service workers, SWR |
|
|
147
|
+
| `event-driven` | Kafka, RabbitMQ, CQRS, saga patterns |
|
|
148
|
+
|
|
149
|
+
### 🔐 Security
|
|
150
|
+
|
|
151
|
+
| Skill | Description |
|
|
152
|
+
|-------|-------------|
|
|
153
|
+
| `security-scanner` | OWASP 2025, supply chain security |
|
|
154
|
+
| `offensive-sec` | Red team tactics, MITRE ATT&CK |
|
|
155
|
+
| `code-constitution` | Constitutional governance (Supreme Law) |
|
|
156
|
+
| `mobile-security-coder` | Mobile-specific security patterns |
|
|
157
|
+
|
|
158
|
+
### 🧪 Testing & Quality
|
|
159
|
+
|
|
160
|
+
| Skill | Description |
|
|
161
|
+
|-------|-------------|
|
|
162
|
+
| `test-architect` | Unit, integration, E2E strategies |
|
|
163
|
+
| `test-driven-dev` | RED-GREEN-REFACTOR cycle |
|
|
164
|
+
| `e2e-automation` | Playwright, visual testing, deep audit |
|
|
165
|
+
| `code-craft` | Clean code, SRP, DRY, KISS |
|
|
166
|
+
| `code-review` | Linting, static analysis, PR review |
|
|
167
|
+
| `problem-checker` | IDE problem detection & auto-fix |
|
|
168
|
+
|
|
169
|
+
### 🐛 Debugging
|
|
170
|
+
|
|
171
|
+
| Skill | Description |
|
|
172
|
+
|-------|-------------|
|
|
173
|
+
| `debug-pro` | 4-phase methodology + defense-in-depth |
|
|
174
|
+
| `chrome-devtools` | Puppeteer CLI, screenshots, Core Web Vitals |
|
|
175
|
+
| `knowledge-graph` | AST parsing, find-usages, impact analysis |
|
|
176
|
+
|
|
177
|
+
### 🤖 AI & Agents
|
|
178
|
+
|
|
179
|
+
| Skill | Description |
|
|
180
|
+
|-------|-------------|
|
|
181
|
+
| `google-adk-python` | Google Agent Development Kit |
|
|
182
|
+
| `skill-generator` | Auto-generate skills from patterns |
|
|
183
|
+
| `auto-learned` | Hierarchical auto-learned patterns |
|
|
184
|
+
| `execution-reporter` | Agent routing transparency |
|
|
185
|
+
| `mcp-builder` | Build MCP servers for AI agents |
|
|
186
|
+
| `mcp-management` | Discover & execute MCP tools |
|
|
187
|
+
| `ai-artist` | Prompt engineering for LLM & image AI |
|
|
188
|
+
| `scout` | Fast parallel codebase exploration |
|
|
189
|
+
|
|
190
|
+
### ☁️ DevOps & Infrastructure
|
|
191
|
+
|
|
192
|
+
| Skill | Description |
|
|
193
|
+
|-------|-------------|
|
|
194
|
+
| `cicd-pipeline` | Safe deployments, rollback strategies |
|
|
195
|
+
| `gitops` | ArgoCD/Flux GitOps workflows |
|
|
196
|
+
| `git-workflow` | Conventional commits, secret detection |
|
|
197
|
+
| `server-ops` | Process management, scaling |
|
|
198
|
+
| `vercel-deploy` | 1-click Vercel deployment |
|
|
199
|
+
| `observability` | OpenTelemetry, unified logs/metrics/traces |
|
|
200
|
+
| `perf-optimizer` | Core Web Vitals, bundle analysis |
|
|
201
|
+
|
|
202
|
+
### 📱 Mobile & Specialized
|
|
203
|
+
|
|
204
|
+
| Skill | Description |
|
|
205
|
+
|-------|-------------|
|
|
206
|
+
| `mobile-developer` | React Native, Flutter, native |
|
|
207
|
+
| `mobile-design` | Mobile-first UI/UX patterns |
|
|
208
|
+
| `mobile-first` | Mobile routing & publishing |
|
|
209
|
+
| `game-development` | Game logic & mechanics |
|
|
210
|
+
| `remotion` | Programmatic video creation in React |
|
|
211
|
+
| `shader` | GLSL fragment shaders |
|
|
212
|
+
| `typescript-expert` | Type-level programming, monorepo |
|
|
213
|
+
| `shell-script` | Bash/Linux terminal patterns |
|
|
214
|
+
|
|
215
|
+
### 📝 Documentation & Content
|
|
216
|
+
|
|
217
|
+
| Skill | Description |
|
|
218
|
+
|-------|-------------|
|
|
219
|
+
| `doc-templates` | README, API docs, ADR templates |
|
|
220
|
+
| `copywriting` | AIDA, PAS, conversion formulas |
|
|
221
|
+
| `seo-optimizer` | SEO, E-E-A-T, Core Web Vitals |
|
|
222
|
+
| `geo-spatial` | GEO for AI search engines |
|
|
223
|
+
| `markdown-novel-viewer` | Markdown preview server |
|
|
224
|
+
| `mermaid-editor` | Live Mermaid diagram editor |
|
|
225
|
+
| `plans-kanban` | Visual Kanban dashboard |
|
|
226
|
+
| `media-processing` | FFmpeg, ImageMagick, RMBG |
|
|
227
|
+
| `agent-browser` | AI-optimized browser automation |
|
|
129
228
|
|
|
130
|
-
|
|
229
|
+
---
|
|
131
230
|
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
231
|
+
## 📜 Workflows (26)
|
|
232
|
+
|
|
233
|
+
| Command | Purpose | Agents |
|
|
234
|
+
|---------|---------|:------:|
|
|
235
|
+
| `/think` | Brainstorm 3+ approaches | planner |
|
|
236
|
+
| `/plan` | Generate detailed `PLAN.md` | planner, explorer |
|
|
237
|
+
| `/build` | Full-stack implementation | 3–7 |
|
|
238
|
+
| `/autopilot` | Multi-agent autonomous execution | 3+ |
|
|
239
|
+
| `/cook` | Direct implementation from instructions | code-craft |
|
|
240
|
+
| `/fix` | Quick error remediation | debug-pro |
|
|
241
|
+
| `/validate` | Test suite with coverage | qa |
|
|
242
|
+
| `/diagnose` | Root cause debugging | debug |
|
|
243
|
+
| `/inspect` | Defense-in-depth code review | security |
|
|
244
|
+
| `/studio` | UI design (50+ styles, 97 palettes) | frontend |
|
|
245
|
+
| `/api` | API development with OpenAPI docs | backend |
|
|
246
|
+
| `/mobile` | Mobile app development | mobile |
|
|
247
|
+
| `/game` | Game development | gamedev |
|
|
248
|
+
| `/chronicle` | Auto-documentation | docs |
|
|
249
|
+
| `/diagram` | Auto-generate architecture diagrams | — |
|
|
250
|
+
| `/launch` | Zero-downtime deployment | devops |
|
|
251
|
+
| `/stage` | Dev sandbox & Docker Compose | devops |
|
|
252
|
+
| `/monitor` | Observability setup | — |
|
|
253
|
+
| `/optimize` | Performance optimization | perf |
|
|
254
|
+
| `/benchmark` | Load testing (k6/Artillery) | — |
|
|
255
|
+
| `/flags` | Feature flag management | — |
|
|
256
|
+
| `/alert` | Alert rules & incident response | — |
|
|
257
|
+
| `/boost` | Enhance existing code | varies |
|
|
258
|
+
| `/pulse` | Project health dashboard | — |
|
|
259
|
+
| `/auto-accept-process` | Full autonomous workflow | all |
|
|
260
|
+
| `/think` | Ideation with alternatives | planner |
|
|
135
261
|
|
|
136
|
-
|
|
262
|
+
---
|
|
137
263
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
264
|
+
## 🤝 Multi-Agent Coordination (26)
|
|
265
|
+
|
|
266
|
+
> **21 domain specialists + 5 meta-agents** working together like a FAANG engineering team.
|
|
267
|
+
|
|
268
|
+
### Meta-Agents (Runtime Control)
|
|
269
|
+
|
|
270
|
+
| Agent | Role |
|
|
271
|
+
|-------|------|
|
|
272
|
+
| `orchestrator` | Strategic coordination & execution order |
|
|
273
|
+
| `assessor` | Risk evaluation before risky operations |
|
|
274
|
+
| `recovery` | State management & checkpoint/restore |
|
|
275
|
+
| `critic` | Conflict resolution between agents |
|
|
276
|
+
| `learner` | Continuous improvement from outcomes |
|
|
277
|
+
|
|
278
|
+
### Domain Agents (21)
|
|
279
|
+
|
|
280
|
+
| Domain | Agent | Key Skills |
|
|
281
|
+
|--------|-------|------------|
|
|
282
|
+
| Frontend | `frontend` | react-architect, tailwind-kit, studio |
|
|
283
|
+
| Backend | `backend` / `api` | api-architect, nodejs-pro |
|
|
284
|
+
| Database | `database` | data-modeler |
|
|
285
|
+
| Security | `security` / `pentest` | security-scanner, offensive-sec |
|
|
286
|
+
| Testing | `testing` / `qa` | test-architect, e2e-automation |
|
|
287
|
+
| DevOps | `devops` | cicd-pipeline, server-ops |
|
|
288
|
+
| Mobile | `mobile` | mobile-developer, mobile-design |
|
|
289
|
+
| Debug | `debug` | debug-pro |
|
|
290
|
+
| Performance | `perf` | perf-optimizer |
|
|
291
|
+
| Planning | `planner` / `lead` | project-planner, idea-storm |
|
|
292
|
+
| Documentation | `docs` | doc-templates, chronicle |
|
|
293
|
+
| SEO | `seo` | seo-optimizer |
|
|
294
|
+
| Game Dev | `gamedev` | game-development |
|
|
295
|
+
| Exploration | `explorer` / `scout` | scout, knowledge-graph |
|
|
296
|
+
| Legacy | `legacy` | migration patterns |
|
|
297
|
+
| Product | `po` / `pm` | requirements, UX |
|
|
298
|
+
|
|
299
|
+
---
|
|
141
300
|
|
|
142
|
-
|
|
301
|
+
## 🛡️ Safety Protocol (TIER -1)
|
|
143
302
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
303
|
+
> **Safety > Recoverability > Correctness > Cleanliness > Convenience**
|
|
304
|
+
|
|
305
|
+
| Rule | Description |
|
|
306
|
+
|------|-------------|
|
|
307
|
+
| 🚫 **No Delete** | Never delete files without explicit user confirmation |
|
|
308
|
+
| ✍️ **Safe Modify** | Read/Create/Modify allowed; Delete/Overwrite forbidden |
|
|
309
|
+
| 🗂️ **Git Versioning** | All risky changes get `git stash` or checkpoint commit |
|
|
310
|
+
| 🔁 **Rollback Guarantee** | Previous version always recoverable via Git |
|
|
311
|
+
| ⛔ **Human Checkpoint** | Core logic, auth, config, architecture require explicit approval |
|
|
312
|
+
| 🛠️ **Failure Recovery** | 6-level auto-recovery before escalating to user |
|
|
147
313
|
|
|
148
314
|
---
|
|
149
315
|
|
|
150
|
-
##
|
|
316
|
+
## 🧠 Self-Learning System
|
|
151
317
|
|
|
152
|
-
|
|
318
|
+
> AI learns from every mistake and **never repeats it**.
|
|
153
319
|
|
|
154
320
|
```
|
|
155
|
-
.
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
├── CONTINUOUS_EXECUTION_POLICY.md # Autopilot Rules
|
|
159
|
-
├── WORKFLOW_CHAINS.md # Workflow Patterns
|
|
160
|
-
│
|
|
161
|
-
├── skills/ # 50 Skills
|
|
162
|
-
│ ├── skill-generator/
|
|
163
|
-
│ ├── react-architect/
|
|
164
|
-
│ ├── typescript-expert/
|
|
165
|
-
│ ├── debug-pro/
|
|
166
|
-
│ ├── studio/
|
|
167
|
-
│ └── ... (45 more)
|
|
168
|
-
│
|
|
169
|
-
├── workflows/ # 25 Workflows
|
|
170
|
-
│ ├── think.md
|
|
171
|
-
│ ├── build.md
|
|
172
|
-
│ ├── autopilot.md
|
|
173
|
-
│ └── ... (22 more)
|
|
174
|
-
│
|
|
175
|
-
├── agents/ # 25 Agents
|
|
176
|
-
│ ├── frontend-specialist.md
|
|
177
|
-
│ ├── backend-specialist.md
|
|
178
|
-
│ └── ... (23 more)
|
|
179
|
-
│
|
|
180
|
-
├── knowledge/ # Learning Memory
|
|
181
|
-
│ └── lessons-learned.yaml
|
|
182
|
-
│
|
|
183
|
-
├── config/ # Configuration
|
|
184
|
-
├── scripts-js/ # 25 JS Scripts
|
|
185
|
-
└── metrics/ # Performance
|
|
321
|
+
Error Detected → Root Cause Analysis → Lesson Extracted → lessons-learned.yaml
|
|
322
|
+
↓
|
|
323
|
+
Future Prevention ← Pattern Matching ← Auto-Learned Patterns ←─┘
|
|
186
324
|
```
|
|
187
325
|
|
|
188
|
-
|
|
326
|
+
**Teach the AI from your feedback:**
|
|
327
|
+
|
|
328
|
+
```
|
|
329
|
+
User: "This is a bug — you created a new file instead of renaming"
|
|
330
|
+
AI: 📚 Learned: [LEARN-003] - Use rename, don't create new simplified files
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
**View learned lessons:**
|
|
189
334
|
|
|
190
335
|
```bash
|
|
191
|
-
|
|
336
|
+
agent # Launch interactive dashboard
|
|
337
|
+
agent learn # Teach new patterns
|
|
338
|
+
agent recall # Scan for violations
|
|
339
|
+
agent stats # View statistics
|
|
192
340
|
```
|
|
193
341
|
|
|
194
342
|
---
|
|
195
343
|
|
|
196
|
-
##
|
|
344
|
+
## 📦 Project Structure
|
|
197
345
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
346
|
+
```
|
|
347
|
+
your-project/
|
|
348
|
+
├── .agent/
|
|
349
|
+
│ ├── GEMINI.md # AI Rules (Supreme Law)
|
|
350
|
+
│ ├── ARCHITECTURE.md # System Architecture
|
|
351
|
+
│ │
|
|
352
|
+
│ ├── skills/ # 67 Skills
|
|
353
|
+
│ │ ├── react-architect/
|
|
354
|
+
│ │ ├── debug-pro/
|
|
355
|
+
│ │ ├── studio/
|
|
356
|
+
│ │ └── ...
|
|
357
|
+
│ │
|
|
358
|
+
│ ├── workflows/ # 26 Workflows
|
|
359
|
+
│ │ ├── think.md
|
|
360
|
+
│ │ ├── build.md
|
|
361
|
+
│ │ ├── autopilot.md
|
|
362
|
+
│ │ └── ...
|
|
363
|
+
│ │
|
|
364
|
+
│ ├── agents/ # 26 Specialist Agents
|
|
365
|
+
│ │ ├── frontend.md
|
|
366
|
+
│ │ ├── backend.md
|
|
367
|
+
│ │ ├── security.md
|
|
368
|
+
│ │ └── ...
|
|
369
|
+
│ │
|
|
370
|
+
│ ├── knowledge/ # Self-Learning Memory
|
|
371
|
+
│ │ └── lessons-learned.yaml
|
|
372
|
+
│ │
|
|
373
|
+
│ ├── scripts-js/ # Automation Scripts
|
|
374
|
+
│ ├── config/ # Configuration
|
|
375
|
+
│ └── metrics/ # Performance Tracking
|
|
376
|
+
│
|
|
377
|
+
├── kit.cmd / kit # CLI wrapper
|
|
378
|
+
└── agent.cmd / agent # AutoLearn wrapper (optional)
|
|
379
|
+
```
|
|
202
380
|
|
|
203
381
|
---
|
|
204
382
|
|
|
205
|
-
##
|
|
206
|
-
|
|
207
|
-
**v2.0.0 (Current)**
|
|
208
|
-
- ⚠️ BREAKING: Agent CLI removed from npm package
|
|
209
|
-
- ✅ Agent CLI now runs locally from `.agent/lib/agent-cli/`
|
|
210
|
-
- ✅ Package size reduced 75%
|
|
211
|
-
- ✅ Clearer separation: pikakit = installer only
|
|
383
|
+
## 🗂️ CLI Reference
|
|
212
384
|
|
|
213
|
-
|
|
214
|
-
- ✅ Renamed to PikaKit for cross-platform npx support
|
|
215
|
-
- ✅ Works with `npx pikakit` on Windows, macOS, Linux
|
|
216
|
-
- ✅ 100% JavaScript - No Python required
|
|
385
|
+
### `kit` (Always Installed)
|
|
217
386
|
|
|
218
|
-
|
|
387
|
+
```bash
|
|
388
|
+
kit list # List all installed skills
|
|
389
|
+
kit info <skill-name> # Show skill details
|
|
390
|
+
kit validate # Validate skill structure
|
|
391
|
+
kit doctor # Check system health
|
|
392
|
+
kit cache status # View cache usage
|
|
393
|
+
```
|
|
219
394
|
|
|
220
|
-
|
|
395
|
+
### `agent` (Optional — AutoLearn Dashboard)
|
|
221
396
|
|
|
222
397
|
```bash
|
|
223
|
-
#
|
|
224
|
-
|
|
225
|
-
|
|
398
|
+
agent # Launch interactive dashboard
|
|
399
|
+
agent learn # Teach new patterns
|
|
400
|
+
agent recall # Scan for violations
|
|
401
|
+
agent stats # View statistics
|
|
402
|
+
agent watch # Real-time monitoring
|
|
403
|
+
```
|
|
226
404
|
|
|
227
|
-
|
|
228
|
-
npm install
|
|
405
|
+
> **Note:** Not installing AutoLearn does **not** affect workflows, skills, or agents.
|
|
229
406
|
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
407
|
+
---
|
|
408
|
+
|
|
409
|
+
## 🔗 Links
|
|
410
|
+
|
|
411
|
+
| | |
|
|
412
|
+
|---|---|
|
|
413
|
+
| 📦 **npm** | [npmjs.com/package/pikakit](https://www.npmjs.com/package/pikakit) |
|
|
414
|
+
| 🐙 **GitHub (Skills)** | [github.com/pikakit/agent-skills](https://github.com/pikakit/agent-skills) |
|
|
415
|
+
| 🐙 **GitHub (CLI)** | [github.com/pikakit/pikakit](https://github.com/pikakit/pikakit) |
|
|
416
|
+
| 🐛 **Issues** | [github.com/pikakit/agent-skills/issues](https://github.com/pikakit/agent-skills/issues) |
|
|
233
417
|
|
|
234
418
|
---
|
|
235
419
|
|
|
236
420
|
## 📄 License
|
|
237
421
|
|
|
238
|
-
|
|
422
|
+
UNLICENSED — See [LICENSE](LICENSE) for details.
|
|
239
423
|
|
|
240
424
|
---
|
|
241
425
|
|
|
242
|
-
|
|
243
|
-
*One command. Complete AI setup. Installer only.*
|
|
426
|
+
<div align="center">
|
|
244
427
|
|
|
245
|
-
|
|
428
|
+
**⚡ PikaKit v3.9.67**
|
|
429
|
+
|
|
430
|
+
*Composable Skills · Coordinated Agents · Intelligent Execution*
|
|
431
|
+
|
|
432
|
+
**[⭐ Star](https://github.com/pikakit/agent-skills) · [Install Now](#-quick-install) · Build Something Great**
|
|
246
433
|
|
|
247
|
-
|
|
434
|
+
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.68",
|
|
4
4
|
"description": "Enterprise-grade Agent Skill Manager with Antigravity Skills support, Progressive Disclosure detection, and semantic routing validation",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "pikakit <pikakit@gmail.com>",
|
|
@@ -45,7 +45,9 @@
|
|
|
45
45
|
"test:watch": "vitest",
|
|
46
46
|
"ci": "npm run lint && npm test && node bin/kit.js verify --strict && node bin/kit.js doctor --strict",
|
|
47
47
|
"agent": "agent",
|
|
48
|
-
"kit": "kit"
|
|
48
|
+
"kit": "kit",
|
|
49
|
+
"build:ext": "cd packages/pikakit-extension && npm install && npm run compile && npx vsce package --allow-missing-repository -o pikakit.vsix",
|
|
50
|
+
"prepack": "npm run build:ext"
|
|
49
51
|
},
|
|
50
52
|
"publishConfig": {
|
|
51
53
|
"access": "public"
|
|
Binary file
|