@vincemakes/kiso-skills-ext 0.14.0 → 0.15.0

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.
@@ -136,7 +136,7 @@ function readSkillTool(index, broken) {
136
136
  return {
137
137
  name: "read_skill",
138
138
  description: "load a skill's SKILL.md (the available-skills list is in the system prompt)",
139
- parameters: { type: "object", properties: { name: { type: "string", minLength: 1 } }, required: ["name"] },
139
+ parameters: { type: "object", properties: { name: { type: "string", minLength: 1 } }, required: ["name"], additionalProperties: false },
140
140
  execute: async (input) => {
141
141
  const name = String((input ?? {}).name ?? "");
142
142
  const skill = index.find((s) => s.name === name);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vincemakes/kiso-skills-ext",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "kiso official skills extension — two-tier progressive skills, kernel untouched",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -23,7 +23,7 @@
23
23
  "test": "vitest run"
24
24
  },
25
25
  "devDependencies": {
26
- "@vincemakes/kiso-core": "0.14.0",
26
+ "@vincemakes/kiso-core": "0.15.0",
27
27
  "@types/node": "^26.1.2",
28
28
  "typescript": "^5.7.2",
29
29
  "vitest": "^3.0.0"