@pikiloom/kernel 0.3.7 → 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.
@@ -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.7",
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",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/ws": "^8.18.1",
49
- "typescript": "^5.9.3",
49
+ "typescript": "7.0.2",
50
50
  "vitest": "^4.0.18"
51
51
  },
52
52
  "publishConfig": {