@pikiloom/kernel 0.3.9 → 0.3.10
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/drivers/claude.js +6 -0
- package/package.json +1 -1
package/dist/drivers/claude.js
CHANGED
|
@@ -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}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pikiloom/kernel",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
4
4
|
"description": "Heterogeneous coding agents (Claude / Codex / Gemini / ACP) -> an interaction-friendly, accumulating session snapshot + control handle, over pluggable surfaces (IM, Web, tunnel, TUI). The reusable core pikiloom itself is built on.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|