From 1d9c25a4c6987330e1e63880107cb2c0d941d1d4 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Tue, 17 Feb 2026 10:32:35 -0800 Subject: [PATCH] docs(skills): update installers type comment to current behavior --- docs/plans/state.json | 11 +++++++++++ src/skills/types.ts | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/plans/state.json b/docs/plans/state.json index 0d7f868..e5309fe 100644 --- a/docs/plans/state.json +++ b/docs/plans/state.json @@ -3622,6 +3622,17 @@ "docs/plans/state.json" ], "test_status": "pnpm test:run src/channels/matrix/adapter.test.ts src/channels/signal/adapter.test.ts src/channels/mattermost/adapter.test.ts + pnpm typecheck passing" + }, + "skills-installer-comment-clarification": { + "status": "completed", + "date": "2026-02-17", + "updated": "2026-02-17", + "summary": "Updated `SkillManifest.installers` type comment to reflect current behavior (installer planning/execution) instead of future-tense wording.", + "files_modified": [ + "src/skills/types.ts", + "docs/plans/state.json" + ], + "test_status": "pnpm typecheck passing" } }, "overall_progress": { diff --git a/src/skills/types.ts b/src/skills/types.ts index 1263364..1cfd255 100644 --- a/src/skills/types.ts +++ b/src/skills/types.ts @@ -101,7 +101,7 @@ export interface SkillManifest { tools?: string[]; /** npm/system dependencies needed. */ dependencies?: string[]; - /** Optional dependency installers for future automated setup. */ + /** Optional dependency installers used by installer planning/execution. */ installers?: SkillInstallerSpec[]; /** Optional capability declarations. Used for runtime policy enforcement. */ permissions?: SkillPermissions;