pikiloom 0.4.65 → 0.4.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/dist/agent/utils.js
CHANGED
|
@@ -382,6 +382,12 @@ export function summarizeClaudeToolUse(name, input) {
|
|
|
382
382
|
const p = shortValue(input?.description || input?.prompt, 120);
|
|
383
383
|
return p ? `Run task: ${p}` : 'Run task';
|
|
384
384
|
}
|
|
385
|
+
// Skill invocations carry the skill name in `input.skill` (plugin skills as `plugin:skill`);
|
|
386
|
+
// surface it so the row reads "Skill <name>" instead of a bare, indistinguishable "Skill".
|
|
387
|
+
case 'Skill': {
|
|
388
|
+
const s = shortValue(input?.skill || input?.name, 80);
|
|
389
|
+
return s ? `Skill ${s}` : 'Run skill';
|
|
390
|
+
}
|
|
385
391
|
case 'Bash': {
|
|
386
392
|
if (description)
|
|
387
393
|
return `Run shell: ${description}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikiloom",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.68",
|
|
4
4
|
"description": "Put the world's smartest AI agents in your pocket. Command local Claude & Gemini via IM. | 让最好用的 IM 变成你电脑上的顶级 Agent 控制台",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -25,11 +25,13 @@
|
|
|
25
25
|
],
|
|
26
26
|
"author": "xiaotonng",
|
|
27
27
|
"license": "MIT",
|
|
28
|
+
"packageManager": "npm@11.6.2",
|
|
28
29
|
"repository": {
|
|
29
30
|
"type": "git",
|
|
30
31
|
"url": "git+https://github.com/xiaotonng/pikiloom.git"
|
|
31
32
|
},
|
|
32
33
|
"scripts": {
|
|
34
|
+
"verify:toolchain": "node scripts/verify-toolchain.mjs",
|
|
33
35
|
"dev": "bash scripts/dev.sh",
|
|
34
36
|
"command": "set -ae && . ./.env && set +a && tsx src/cli/run.ts",
|
|
35
37
|
"build:dashboard": "vite build --config dashboard/vite.config.ts",
|
|
@@ -45,9 +47,21 @@
|
|
|
45
47
|
"engines": {
|
|
46
48
|
"node": ">=20.0.0"
|
|
47
49
|
},
|
|
50
|
+
"devEngines": {
|
|
51
|
+
"runtime": {
|
|
52
|
+
"name": "node",
|
|
53
|
+
"version": "22.23.1 || ^25.2.0",
|
|
54
|
+
"onFail": "error"
|
|
55
|
+
},
|
|
56
|
+
"packageManager": {
|
|
57
|
+
"name": "npm",
|
|
58
|
+
"version": "11.6.2",
|
|
59
|
+
"onFail": "error"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
48
62
|
"devDependencies": {
|
|
49
63
|
"@tailwindcss/vite": "^4.2.1",
|
|
50
|
-
"@types/node": "
|
|
64
|
+
"@types/node": "22.20.0",
|
|
51
65
|
"@types/qrcode": "^1.5.6",
|
|
52
66
|
"@types/react": "^19.2.14",
|
|
53
67
|
"@types/react-dom": "^19.2.3",
|
|
@@ -61,7 +75,7 @@
|
|
|
61
75
|
"remark-gfm": "^4.0.1",
|
|
62
76
|
"tailwindcss": "^4.2.1",
|
|
63
77
|
"tsx": "^4.21.0",
|
|
64
|
-
"typescript": "
|
|
78
|
+
"typescript": "7.0.2",
|
|
65
79
|
"vitest": "^4.0.18",
|
|
66
80
|
"zustand": "^5.0.12"
|
|
67
81
|
},
|
|
@@ -1133,6 +1133,12 @@ function summarizeToolUse(name, input) {
|
|
|
1133
1133
|
const p = shortToolValue(i.description || i.prompt, 120);
|
|
1134
1134
|
return p ? `Run task: ${p}` : 'Run task';
|
|
1135
1135
|
}
|
|
1136
|
+
// Skill invocations carry the skill name in `input.skill` (plugin skills as `plugin:skill`);
|
|
1137
|
+
// surface it so the row reads "Skill <name>" instead of a bare, indistinguishable "Skill".
|
|
1138
|
+
case 'Skill': {
|
|
1139
|
+
const s = shortToolValue(i.skill || i.name, 80);
|
|
1140
|
+
return s ? `Skill ${s}` : 'Run skill';
|
|
1141
|
+
}
|
|
1136
1142
|
case 'Bash': {
|
|
1137
1143
|
if (description)
|
|
1138
1144
|
return `Run shell: ${description}`;
|