@pi-unipi/unipi 2.0.6 → 2.0.7

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/unipi",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "All-in-one extension suite for Pi coding agent",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -24,54 +24,38 @@
24
24
  ],
25
25
  "scripts": {
26
26
  "typecheck": "npx tsc --noEmit --skipLibCheck",
27
- "test": "npm test --workspaces --if-present",
27
+ "test": "node --test tests/*.test.js && npm test --workspaces --if-present",
28
28
  "publish:all": "npm publish --workspaces --access public"
29
29
  },
30
30
  "files": [
31
+ "packages/*/package.json",
31
32
  "packages/*/*.ts",
32
33
  "packages/*/src/**/*.ts",
33
34
  "packages/*/extensions/**/*.ts",
34
35
  "packages/*/platforms/*",
35
36
  "packages/*/tui/*",
37
+ "packages/*/SKILL.md",
36
38
  "packages/*/skills/**/*",
37
39
  "packages/*/README.md"
38
40
  ],
39
41
  "pi": {
40
42
  "extensions": [
41
- "node_modules/@pi-unipi/workflow/index.ts",
42
- "node_modules/@pi-unipi/ralph/index.ts",
43
- "node_modules/@pi-unipi/memory/index.ts",
44
- "node_modules/@pi-unipi/info-screen/index.ts",
45
- "node_modules/@pi-unipi/subagents/src/index.ts",
46
- "node_modules/@pi-unipi/btw/extensions/btw.ts",
47
- "node_modules/@pi-unipi/web-api/src/index.ts",
48
- "node_modules/@pi-unipi/utility/src/index.ts",
49
- "node_modules/@pi-unipi/ask-user/index.ts",
50
- "node_modules/@pi-unipi/mcp/src/index.ts",
51
- "node_modules/@pi-unipi/compactor/src/index.ts",
52
- "node_modules/@pi-unipi/notify/index.ts",
53
- "node_modules/@pi-unipi/milestone/index.ts",
54
- "node_modules/@pi-unipi/kanboard/index.ts",
55
- "node_modules/@pi-unipi/command-enchantment/src/index.ts",
56
- "node_modules/@pi-unipi/footer/src/index.ts",
57
- "node_modules/@pi-unipi/updater/src/index.ts",
58
- "node_modules/@pi-unipi/input-shortcuts/src/index.ts",
59
- "node_modules/@pi-unipi/cocoindex/index.ts"
43
+ "packages/unipi/index.ts"
60
44
  ],
61
45
  "skills": [
62
- "node_modules/@pi-unipi/workflow/skills",
63
- "node_modules/@pi-unipi/ralph/SKILL.md",
64
- "node_modules/@pi-unipi/memory/skills",
65
- "node_modules/@pi-unipi/btw/skills",
66
- "node_modules/@pi-unipi/ask-user/skills",
67
- "node_modules/@pi-unipi/mcp/skills",
68
- "node_modules/@pi-unipi/utility/skills",
69
- "node_modules/@pi-unipi/compactor/skills",
70
- "node_modules/@pi-unipi/notify/skills",
71
- "node_modules/@pi-unipi/milestone/skills",
72
- "node_modules/@pi-unipi/kanboard/skills",
73
- "node_modules/@pi-unipi/updater/skills",
74
- "node_modules/@pi-unipi/cocoindex/skills"
46
+ "packages/workflow/skills",
47
+ "packages/ralph/SKILL.md",
48
+ "packages/memory/skills",
49
+ "packages/btw/skills",
50
+ "packages/ask-user/skills",
51
+ "packages/mcp/skills",
52
+ "packages/utility/skills",
53
+ "packages/compactor/skills",
54
+ "packages/notify/skills",
55
+ "packages/milestone/skills",
56
+ "packages/kanboard/skills",
57
+ "packages/updater/skills",
58
+ "packages/cocoindex/skills"
75
59
  ]
76
60
  },
77
61
  "peerDependencies": {
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@pi-unipi/ask-user",
3
+ "version": "2.0.7",
4
+ "description": "Structured user input tool for Pi coding agent — single-select, multi-select, freeform",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Neuron Mr White",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Neuron-Mr-White/unipi.git",
11
+ "directory": "packages/ask-user"
12
+ },
13
+ "keywords": [
14
+ "pi-package",
15
+ "pi-extension",
16
+ "pi-coding-agent",
17
+ "unipi",
18
+ "ask-user",
19
+ "interactive",
20
+ "user-input"
21
+ ],
22
+ "files": [
23
+ "index.ts",
24
+ "types.ts",
25
+ "tools.ts",
26
+ "handoff.ts",
27
+ "ask-ui.ts",
28
+ "launcher-ui.ts",
29
+ "commands.ts",
30
+ "config.ts",
31
+ "settings-tui.ts",
32
+ "skills/**/*",
33
+ "README.md"
34
+ ],
35
+ "scripts": {
36
+ "test": "node --experimental-strip-types --test tests/**/*.test.ts"
37
+ },
38
+ "pi": {
39
+ "extensions": [
40
+ "index.ts"
41
+ ],
42
+ "skills": [
43
+ "skills"
44
+ ]
45
+ },
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "dependencies": {
50
+ "@pi-unipi/core": "*"
51
+ },
52
+ "peerDependencies": {
53
+ "@mariozechner/pi-coding-agent": "*",
54
+ "@mariozechner/pi-tui": "*",
55
+ "@sinclair/typebox": "*"
56
+ }
57
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@pi-unipi/command-enchantment",
3
+ "version": "2.0.7",
4
+ "description": "Enhanced TUI autocomplete for /unipi:* commands — colored, sorted, and grouped by package",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Neuron Mr White",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Neuron-Mr-White/unipi.git",
11
+ "directory": "packages/autocomplete"
12
+ },
13
+ "homepage": "https://github.com/Neuron-Mr-White/unipi#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/Neuron-Mr-White/unipi/issues"
16
+ },
17
+ "keywords": [
18
+ "pi-package",
19
+ "pi-extension",
20
+ "pi-coding-agent",
21
+ "unipi",
22
+ "autocomplete"
23
+ ],
24
+ "pi": {
25
+ "extensions": [
26
+ "src/index.ts"
27
+ ]
28
+ },
29
+ "files": [
30
+ "src/**/*.ts",
31
+ "README.md"
32
+ ],
33
+ "peerDependencies": {
34
+ "@mariozechner/pi-coding-agent": "*",
35
+ "@mariozechner/pi-tui": "*"
36
+ },
37
+ "scripts": {
38
+ "test": "vitest run"
39
+ },
40
+ "devDependencies": {
41
+ "@types/node": "^25.6.0",
42
+ "vitest": "^4.1.5"
43
+ }
44
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@pi-unipi/btw",
3
+ "version": "2.0.7",
4
+ "description": "A pi extension for parallel side conversations with /unipi:btw — part of the Unipi suite",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Neuron Mr White",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Neuron-Mr-White/unipi.git",
11
+ "directory": "packages/btw"
12
+ },
13
+ "homepage": "https://github.com/Neuron-Mr-White/unipi#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/Neuron-Mr-White/unipi/issues"
16
+ },
17
+ "keywords": [
18
+ "pi-package",
19
+ "pi-extension",
20
+ "pi-coding-agent",
21
+ "unipi",
22
+ "btw",
23
+ "side-conversation"
24
+ ],
25
+ "files": [
26
+ "extensions",
27
+ "skills",
28
+ "README.md"
29
+ ],
30
+ "publishConfig": {
31
+ "access": "public"
32
+ },
33
+ "pi": {
34
+ "extensions": [
35
+ "./extensions/btw.ts"
36
+ ],
37
+ "skills": [
38
+ "./skills"
39
+ ]
40
+ },
41
+ "peerDependencies": {
42
+ "@mariozechner/pi-ai": "*",
43
+ "@mariozechner/pi-coding-agent": "*",
44
+ "@mariozechner/pi-tui": "*"
45
+ },
46
+ "dependencies": {
47
+ "@pi-unipi/core": "*"
48
+ }
49
+ }
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@pi-unipi/cocoindex",
3
+ "version": "2.0.7",
4
+ "description": "CocoIndex integration for Pi — AST-aware content indexing, semantic vector search, and incremental pipeline management",
5
+ "type": "module",
6
+ "main": "index.ts",
7
+ "types": "index.ts",
8
+ "license": "MIT",
9
+ "author": "Neuron Mr White",
10
+ "keywords": [
11
+ "pi-package",
12
+ "pi-extension",
13
+ "pi-coding-agent",
14
+ "cocoindex",
15
+ "content-indexing",
16
+ "vector-search"
17
+ ],
18
+ "scripts": {
19
+ "typecheck": "tsc --noEmit"
20
+ },
21
+ "peerDependencies": {
22
+ "@mariozechner/pi-coding-agent": "*",
23
+ "@mariozechner/pi-ai": "*",
24
+ "@mariozechner/pi-tui": "*",
25
+ "@sinclair/typebox": "*"
26
+ },
27
+ "dependencies": {
28
+ "@pi-unipi/core": "*"
29
+ },
30
+ "optionalDependencies": {
31
+ "@lancedb/lancedb": "^0.21.0"
32
+ },
33
+ "files": [
34
+ "index.ts",
35
+ "bridge.ts",
36
+ "installer.ts",
37
+ "tools.ts",
38
+ "commands.ts",
39
+ "skills/**/*",
40
+ "README.md"
41
+ ]
42
+ }
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@pi-unipi/compactor",
3
+ "version": "2.0.7",
4
+ "description": "Context engine for Pi — zero-LLM compaction, session continuity, sandbox execution, and tool display optimization",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Neuron Mr White",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Neuron-Mr-White/unipi.git",
11
+ "directory": "packages/compactor"
12
+ },
13
+ "keywords": [
14
+ "pi-package",
15
+ "pi-extension",
16
+ "pi-coding-agent",
17
+ "unipi",
18
+ "compactor",
19
+ "context",
20
+ "sandbox",
21
+ "fts5"
22
+ ],
23
+ "scripts": {
24
+ "test": "bun test tests"
25
+ },
26
+ "files": [
27
+ "index.ts",
28
+ "src/**/*.ts",
29
+ "skills/**/*",
30
+ "README.md"
31
+ ],
32
+ "pi": {
33
+ "extensions": [
34
+ "src/index.ts"
35
+ ],
36
+ "skills": [
37
+ "skills"
38
+ ]
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "dependencies": {
44
+ "@pi-unipi/core": "*",
45
+ "@pi-unipi/info-screen": "*"
46
+ },
47
+ "peerDependencies": {
48
+ "@mariozechner/pi-coding-agent": "*",
49
+ "@mariozechner/pi-tui": "*",
50
+ "@sinclair/typebox": "*"
51
+ },
52
+ "devDependencies": {
53
+ "@types/node": "^25.6.0",
54
+ "typescript": "^6.0.0"
55
+ },
56
+ "optionalDependencies": {
57
+ "better-sqlite3": ">=11.0.0"
58
+ }
59
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@pi-unipi/core",
3
+ "version": "2.0.7",
4
+ "description": "Shared utilities, event types, and constants for Unipi extension suite",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Neuron Mr White",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Neuron-Mr-White/unipi.git",
11
+ "directory": "packages/core"
12
+ },
13
+ "keywords": [
14
+ "pi-package",
15
+ "pi-extension",
16
+ "unipi"
17
+ ],
18
+ "files": [
19
+ "*.ts",
20
+ "README.md"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "peerDependencies": {
26
+ "@mariozechner/pi-coding-agent": ">=0.70.0",
27
+ "@sinclair/typebox": ">=0.34.0"
28
+ },
29
+ "devDependencies": {
30
+ "@mariozechner/pi-coding-agent": "^0.70.2",
31
+ "@sinclair/typebox": "^0.34.49",
32
+ "@types/node": "^22.0.0"
33
+ }
34
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@pi-unipi/footer",
3
+ "version": "2.0.7",
4
+ "description": "Persistent status bar for Unipi — subscribes to UNIPI_EVENTS and renders key stats from all unipi packages",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Neuron Mr White",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Neuron-Mr-White/unipi.git",
11
+ "directory": "packages/footer"
12
+ },
13
+ "keywords": [
14
+ "pi-package",
15
+ "pi-extension",
16
+ "pi-coding-agent",
17
+ "unipi",
18
+ "footer",
19
+ "status-bar"
20
+ ],
21
+ "files": [
22
+ "index.ts",
23
+ "src/**/*.ts",
24
+ "skills/**/*",
25
+ "README.md"
26
+ ],
27
+ "pi": {
28
+ "extensions": [
29
+ "src/index.ts"
30
+ ],
31
+ "skills": [
32
+ "skills"
33
+ ]
34
+ },
35
+ "scripts": {
36
+ "test": "node --experimental-strip-types --test tests/**/*.test.ts"
37
+ },
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
41
+ "dependencies": {
42
+ "@pi-unipi/core": "*"
43
+ },
44
+ "peerDependencies": {
45
+ "@mariozechner/pi-coding-agent": "*",
46
+ "@mariozechner/pi-tui": "*"
47
+ },
48
+ "devDependencies": {
49
+ "@types/node": "^25.6.0",
50
+ "typescript": "^6.0.0"
51
+ }
52
+ }
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@pi-unipi/info-screen",
3
+ "version": "2.0.7",
4
+ "description": "Dashboard and module registry for Unipi — configurable info overlay with tabbed groups",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Neuron Mr White",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Neuron-Mr-White/unipi.git",
11
+ "directory": "packages/info-screen"
12
+ },
13
+ "homepage": "https://github.com/Neuron-Mr-White/unipi#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/Neuron-Mr-White/unipi/issues"
16
+ },
17
+ "keywords": [
18
+ "pi-package",
19
+ "pi-extension",
20
+ "pi-coding-agent",
21
+ "unipi",
22
+ "info-screen",
23
+ "dashboard"
24
+ ],
25
+ "pi": {
26
+ "extensions": [
27
+ "index.ts"
28
+ ]
29
+ },
30
+ "files": [
31
+ "*.ts",
32
+ "tui/*.ts",
33
+ "settings/*.ts",
34
+ "README.md"
35
+ ],
36
+ "publishConfig": {
37
+ "access": "public"
38
+ },
39
+ "dependencies": {
40
+ "@pi-unipi/core": "*"
41
+ },
42
+ "peerDependencies": {
43
+ "@mariozechner/pi-coding-agent": "*",
44
+ "@mariozechner/pi-tui": "*",
45
+ "@sinclair/typebox": "*"
46
+ },
47
+ "devDependencies": {
48
+ "@types/node": "^25.6.0"
49
+ }
50
+ }
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@pi-unipi/input-shortcuts",
3
+ "version": "2.0.7",
4
+ "description": "Keyboard shortcuts for stash/restore, undo/redo, clipboard, and thinking toggle — chord-based overlay system",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Neuron Mr White",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Neuron-Mr-White/unipi.git",
11
+ "directory": "packages/input-shortcuts"
12
+ },
13
+ "keywords": [
14
+ "pi-package",
15
+ "pi-extension",
16
+ "pi-coding-agent",
17
+ "unipi",
18
+ "input-shortcuts",
19
+ "stash",
20
+ "undo",
21
+ "clipboard"
22
+ ],
23
+ "files": [
24
+ "index.ts",
25
+ "src/**/*.ts",
26
+ "README.md"
27
+ ],
28
+ "pi": {
29
+ "extensions": [
30
+ "src/index.ts"
31
+ ]
32
+ },
33
+ "scripts": {
34
+ "test": "node --experimental-strip-types --test tests/**/*.test.ts"
35
+ },
36
+ "publishConfig": {
37
+ "access": "public"
38
+ },
39
+ "dependencies": {
40
+ "@pi-unipi/core": "*"
41
+ },
42
+ "peerDependencies": {
43
+ "@mariozechner/pi-coding-agent": "*",
44
+ "@mariozechner/pi-tui": "*"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^25.6.0",
48
+ "typescript": "^6.0.0"
49
+ }
50
+ }
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@pi-unipi/kanboard",
3
+ "version": "2.0.7",
4
+ "description": "Visualization layer for unipi workflow — HTTP server with htmx/Alpine.js UI, modular parsers, TUI overlay, and kanban board",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Neuron Mr White",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Neuron-Mr-White/unipi.git",
11
+ "directory": "packages/kanboard"
12
+ },
13
+ "keywords": [
14
+ "pi-package",
15
+ "pi-extension",
16
+ "pi-coding-agent",
17
+ "unipi",
18
+ "kanboard",
19
+ "kanban",
20
+ "visualization",
21
+ "milestones",
22
+ "workflow"
23
+ ],
24
+ "files": [
25
+ "src/**/*.ts",
26
+ "ui/**/*.ts",
27
+ "ui/**/*.css",
28
+ "ui/**/*.js",
29
+ "skills/**/*",
30
+ "README.md"
31
+ ],
32
+ "pi": {
33
+ "extensions": [
34
+ "index.ts"
35
+ ],
36
+ "skills": [
37
+ "skills"
38
+ ]
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "dependencies": {
44
+ "@pi-unipi/core": "*"
45
+ },
46
+ "peerDependencies": {
47
+ "@mariozechner/pi-coding-agent": "*",
48
+ "@mariozechner/pi-tui": "*"
49
+ },
50
+ "devDependencies": {
51
+ "@types/node": "^25.6.0",
52
+ "typescript": "^6.0.0"
53
+ }
54
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@pi-unipi/mcp",
3
+ "version": "2.0.7",
4
+ "description": "MCP server management extension for Pi coding agent — browse, add, configure, and use MCP servers",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Neuron Mr White",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Neuron-Mr-White/unipi.git",
11
+ "directory": "packages/mcp"
12
+ },
13
+ "keywords": [
14
+ "pi-package",
15
+ "pi-extension",
16
+ "pi-coding-agent",
17
+ "unipi",
18
+ "mcp",
19
+ "model-context-protocol",
20
+ "tools"
21
+ ],
22
+ "pi": {
23
+ "extensions": [
24
+ "src/index.ts"
25
+ ],
26
+ "skills": [
27
+ "skills"
28
+ ]
29
+ },
30
+ "files": [
31
+ "src/**/*.ts",
32
+ "data/**/*",
33
+ "skills/**/*",
34
+ "README.md"
35
+ ],
36
+ "dependencies": {
37
+ "@pi-unipi/core": "*"
38
+ },
39
+ "peerDependencies": {
40
+ "@mariozechner/pi-coding-agent": "*",
41
+ "@mariozechner/pi-tui": "*",
42
+ "@sinclair/typebox": "*"
43
+ },
44
+ "devDependencies": {
45
+ "@types/node": "^25.6.0"
46
+ }
47
+ }