pikakit 3.9.128 → 3.9.130
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/package.json
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
# PikaKit Engine - VS Code Extension
|
|
2
2
|
|
|
3
|
-
> 🤖 Real-time
|
|
3
|
+
> 🤖 FAANG-Grade AI Operating System. Real-time Knowledge Compilation from IDE diagnostics → Generate skills automatically
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
7
|
- **Real-time Diagnostics** - Listen to TypeScript, ESLint errors in real-time
|
|
8
|
-
- **
|
|
9
|
-
- **
|
|
10
|
-
- **
|
|
8
|
+
- **Knowledge Ingestion** - Extract raw signals from IDE fixes and corrections into `.agent/knowledge/raw/`
|
|
9
|
+
- **Knowledge Compilation** - Cluster signals into cross-linked concept articles (`concepts/`), decisions (`decisions/`), and patterns (`patterns/`)
|
|
10
|
+
- **Knowledge Base** - Maintain a centralized project index (`_index.md` & `_graph.md`)
|
|
11
|
+
- **Skill Generation** - Produce agent `SKILL.md` from mature patterns
|
|
11
12
|
- **Autopilot** - Automatically accept edits + run proposed terminal commands (dangerous commands blocked)
|
|
12
13
|
- **CDP** - Auto-click "Allow file access?" permission dialogs via Chrome DevTools Protocol
|
|
13
|
-
- **Status Bar** - Display
|
|
14
|
+
- **Status Bar** - Display Knowledge Engine status + Autopilot/CDP toggles
|
|
14
15
|
|
|
15
16
|
## Keyboard Shortcuts
|
|
16
17
|
|
|
@@ -36,7 +37,7 @@ The extension is installed automatically during skill installation.
|
|
|
36
37
|
cd packages/pikakit-extension
|
|
37
38
|
npm install && npm run compile
|
|
38
39
|
npx @vscode/vsce package --allow-missing-repository
|
|
39
|
-
code --install-extension pikakit-engine-3.9.
|
|
40
|
+
code --install-extension pikakit-engine-3.9.130.vsix
|
|
40
41
|
```
|
|
41
42
|
|
|
42
43
|
### Local Development
|
|
@@ -54,11 +55,11 @@ Press `Ctrl+Shift+P` → type "PikaKit":
|
|
|
54
55
|
|
|
55
56
|
| Command | Description |
|
|
56
57
|
|---------|-------------|
|
|
57
|
-
| `PikaKit: Start Learning` | Start
|
|
58
|
-
| `PikaKit: Stop Learning` | Stop
|
|
59
|
-
| `PikaKit: Generate Skill` | Manually generate from patterns |
|
|
60
|
-
| `PikaKit: View
|
|
61
|
-
| `PikaKit: Clear Lessons` | Clear all
|
|
58
|
+
| `PikaKit: Start Learning` | Start compiling knowledge from diagnostics |
|
|
59
|
+
| `PikaKit: Stop Learning` | Stop compiling knowledge |
|
|
60
|
+
| `PikaKit: Generate Skill` | Manually generate skill from patterns |
|
|
61
|
+
| `PikaKit: View Knowledge Wiki` | View the compiled Knowledge Wiki |
|
|
62
|
+
| `PikaKit: Clear Lessons` | Clear all saved patterns |
|
|
62
63
|
| `PikaKit: Toggle Autopilot` | Toggle autopilot (Ctrl+Shift+Enter) |
|
|
63
64
|
| `PikaKit: Toggle CDP` | Toggle CDP file access auto-click |
|
|
64
65
|
| `PikaKit: CDP Setup Guide` | Show CDP setup instructions |
|
|
@@ -67,14 +68,41 @@ Press `Ctrl+Shift+P` → type "PikaKit":
|
|
|
67
68
|
|
|
68
69
|
| Setting | Default | Description |
|
|
69
70
|
|---------|---------|-------------|
|
|
70
|
-
| `pikakit.autoStart` | `true` | Auto-start
|
|
71
|
+
| `pikakit.autoStart` | `true` | Auto-start knowledge compiler on VS Code startup |
|
|
71
72
|
| `pikakit.threshold` | `3` | Error count before generating a skill |
|
|
72
|
-
| `pikakit.lessonsPath` | `.agent/lessons.json` | Path to
|
|
73
|
+
| `pikakit.lessonsPath` | `.agent/lessons.json` | Path to pattern/lesson storage |
|
|
73
74
|
| `pikakit.autopilotEnabled` | `false` | Enable Autopilot on startup |
|
|
74
75
|
|
|
75
76
|
## Architecture
|
|
76
77
|
|
|
78
|
+
### 1. Knowledge Engine
|
|
79
|
+
|
|
80
|
+
```text
|
|
81
|
+
┌─────────────────────────────────────────────────┐
|
|
82
|
+
│ PikaKit Knowledge Engine │
|
|
83
|
+
│ │
|
|
84
|
+
│ ┌──────────────────────────────┐ │
|
|
85
|
+
│ │ 📥 1. Ingestion │ ← Phase 1 │
|
|
86
|
+
│ │ Extract signals from IDE │ raw/ │
|
|
87
|
+
│ └──────────────┬───────────────┘ │
|
|
88
|
+
│ │ │
|
|
89
|
+
│ ┌──────────────┴───────────────┐ │
|
|
90
|
+
│ │ 📚 2. Compilation │ ← Phase 2 │
|
|
91
|
+
│ │ Cluster into Concept Wiki │ concepts/ │
|
|
92
|
+
│ └──────────────┬───────────────┘ │
|
|
93
|
+
│ │ │
|
|
94
|
+
│ ┌──────────────┴───────────────┐ │
|
|
95
|
+
│ │ ⚙️ 3. Generation │ ← Phase 3 │
|
|
96
|
+
│ │ Produce agent SKILL.md │ skills/ │
|
|
97
|
+
│ └──────────────────────────────┘ │
|
|
98
|
+
└─────────────────────────────────────────────────┘
|
|
77
99
|
```
|
|
100
|
+
|
|
101
|
+
**Ingest** captures raw IDE errors. **Compile** structures them into cross-linked concept articles. **Generate** converts mature patterns into executable `SKILL.md` files.
|
|
102
|
+
|
|
103
|
+
### 2. Autonomous Mode
|
|
104
|
+
|
|
105
|
+
```text
|
|
78
106
|
┌─────────────────────────────────────────────────┐
|
|
79
107
|
│ PikaKit Autonomous Mode │
|
|
80
108
|
│ │
|
|
@@ -121,4 +149,4 @@ Autopilot includes dangerous command blocking for:
|
|
|
121
149
|
|
|
122
150
|
---
|
|
123
151
|
|
|
124
|
-
⚡ PikaKit Engine v3.9.
|
|
152
|
+
⚡ PikaKit Engine v3.9.130
|
|
Binary file
|