From 7d0a13651507f4107545e8d77d669a6a4d2e6c22 Mon Sep 17 00:00:00 2001 From: "Benjamin D. Smith" Date: Sat, 18 Jul 2026 14:18:04 +0000 Subject: [PATCH] perf(build): mark 36 slash-only skills disable-model-invocation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 📝 Summary: • add `disable-model-invocation: true` to the frontmatter of every gstack skill that is only ever user-invoked, so their descriptions drop out of Claude Code's always-loaded prompt (~1,050 tokens per request on this machine) • flag lives in each `SKILL.md.tmpl`; generated `SKILL.md` files regenerated via `bun run gen:skill-docs` (claude host is denylist frontmatter mode, so the key passes through untouched) 🔧 Technical Improvements: • flagged (36): benchmark, benchmark-models, canary, careful, codex, cso, design-html, design-shotgun, devex-review, diagram, document-generate, document-release, freeze, gstack-upgrade, guard, health, ios-clean, ios-design-review, ios-fix, ios-qa, ios-sync, landing-report, make-pdf, open-gstack-browser (covers the connect-chrome alias), pair-agent, plan-devex-review, plan-tune, pr-prep, retro, scrape, setup-browser-cookies, setup-deploy, setup-gbrain, skillify, spec, unfreeze • kept model-invocable on purpose — every skill named in the CLAUDE.md skill-routing tables (here and in consumer repos): autoplan, browse, context-restore/save, design-consultation, design-review, investigate, land-and-deploy, learn, office-hours, plan-ceo/design/eng-review, qa, qa-only, review, ship, sync-gbrain, plus the `_gstack-command` router • verified: `bun test` tier-1 suites green (733 pass, 0 fail); `browse/test/sidebar-ux.test.ts` failures reproduce with this change stashed (73/176 fail on the base tree — pre-existing, needs a live browse daemon) 📊 Code Changes: 72 insertions, 0 deletions (net +72) 📦 Files Modified: • 36 × `/SKILL.md.tmpl` (minor updates — one frontmatter line) • 36 × `/SKILL.md` (minor updates — regenerated) --- benchmark-models/SKILL.md | 1 + benchmark-models/SKILL.md.tmpl | 1 + benchmark/SKILL.md | 1 + benchmark/SKILL.md.tmpl | 1 + canary/SKILL.md | 1 + canary/SKILL.md.tmpl | 1 + careful/SKILL.md | 1 + careful/SKILL.md.tmpl | 1 + codex/SKILL.md | 1 + codex/SKILL.md.tmpl | 1 + cso/SKILL.md | 1 + cso/SKILL.md.tmpl | 1 + design-html/SKILL.md | 1 + design-html/SKILL.md.tmpl | 1 + design-shotgun/SKILL.md | 1 + design-shotgun/SKILL.md.tmpl | 1 + devex-review/SKILL.md | 1 + devex-review/SKILL.md.tmpl | 1 + diagram/SKILL.md | 1 + diagram/SKILL.md.tmpl | 1 + document-generate/SKILL.md | 1 + document-generate/SKILL.md.tmpl | 1 + document-release/SKILL.md | 1 + document-release/SKILL.md.tmpl | 1 + freeze/SKILL.md | 1 + freeze/SKILL.md.tmpl | 1 + gstack-upgrade/SKILL.md | 1 + gstack-upgrade/SKILL.md.tmpl | 1 + guard/SKILL.md | 1 + guard/SKILL.md.tmpl | 1 + health/SKILL.md | 1 + health/SKILL.md.tmpl | 1 + ios-clean/SKILL.md | 1 + ios-clean/SKILL.md.tmpl | 1 + ios-design-review/SKILL.md | 1 + ios-design-review/SKILL.md.tmpl | 1 + ios-fix/SKILL.md | 1 + ios-fix/SKILL.md.tmpl | 1 + ios-qa/SKILL.md | 1 + ios-qa/SKILL.md.tmpl | 1 + ios-sync/SKILL.md | 1 + ios-sync/SKILL.md.tmpl | 1 + landing-report/SKILL.md | 1 + landing-report/SKILL.md.tmpl | 1 + make-pdf/SKILL.md | 1 + make-pdf/SKILL.md.tmpl | 1 + open-gstack-browser/SKILL.md | 1 + open-gstack-browser/SKILL.md.tmpl | 1 + pair-agent/SKILL.md | 1 + pair-agent/SKILL.md.tmpl | 1 + plan-devex-review/SKILL.md | 1 + plan-devex-review/SKILL.md.tmpl | 1 + plan-tune/SKILL.md | 1 + plan-tune/SKILL.md.tmpl | 1 + pr-prep/SKILL.md | 1 + pr-prep/SKILL.md.tmpl | 1 + retro/SKILL.md | 1 + retro/SKILL.md.tmpl | 1 + scrape/SKILL.md | 1 + scrape/SKILL.md.tmpl | 1 + setup-browser-cookies/SKILL.md | 1 + setup-browser-cookies/SKILL.md.tmpl | 1 + setup-deploy/SKILL.md | 1 + setup-deploy/SKILL.md.tmpl | 1 + setup-gbrain/SKILL.md | 1 + setup-gbrain/SKILL.md.tmpl | 1 + skillify/SKILL.md | 1 + skillify/SKILL.md.tmpl | 1 + spec/SKILL.md | 1 + spec/SKILL.md.tmpl | 1 + unfreeze/SKILL.md | 1 + unfreeze/SKILL.md.tmpl | 1 + 72 files changed, 72 insertions(+) diff --git a/benchmark-models/SKILL.md b/benchmark-models/SKILL.md index 6a9d62616..0b11d8cae 100644 --- a/benchmark-models/SKILL.md +++ b/benchmark-models/SKILL.md @@ -12,6 +12,7 @@ allowed-tools: - Bash - Read - AskUserQuestion +disable-model-invocation: true --- diff --git a/benchmark-models/SKILL.md.tmpl b/benchmark-models/SKILL.md.tmpl index 034cda182..1060f3bf8 100644 --- a/benchmark-models/SKILL.md.tmpl +++ b/benchmark-models/SKILL.md.tmpl @@ -22,6 +22,7 @@ allowed-tools: - Bash - Read - AskUserQuestion +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/benchmark/SKILL.md b/benchmark/SKILL.md index 9451d2d4f..c9273988d 100644 --- a/benchmark/SKILL.md +++ b/benchmark/SKILL.md @@ -13,6 +13,7 @@ allowed-tools: - Write - Glob - AskUserQuestion +disable-model-invocation: true --- diff --git a/benchmark/SKILL.md.tmpl b/benchmark/SKILL.md.tmpl index 038f16f5f..1e028e191 100644 --- a/benchmark/SKILL.md.tmpl +++ b/benchmark/SKILL.md.tmpl @@ -21,6 +21,7 @@ allowed-tools: - Write - Glob - AskUserQuestion +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/canary/SKILL.md b/canary/SKILL.md index 1922a0723..ff79e0309 100644 --- a/canary/SKILL.md +++ b/canary/SKILL.md @@ -13,6 +13,7 @@ triggers: - monitor after deploy - canary check - watch for errors post-deploy +disable-model-invocation: true --- diff --git a/canary/SKILL.md.tmpl b/canary/SKILL.md.tmpl index d1eb2950a..e7f2a779c 100644 --- a/canary/SKILL.md.tmpl +++ b/canary/SKILL.md.tmpl @@ -18,6 +18,7 @@ triggers: - monitor after deploy - canary check - watch for errors post-deploy +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/careful/SKILL.md b/careful/SKILL.md index c646c8b60..f1b46651a 100644 --- a/careful/SKILL.md +++ b/careful/SKILL.md @@ -16,6 +16,7 @@ hooks: - type: command command: "bash $HOME/.claude/skills/gstack/careful/bin/check-careful.sh" statusMessage: "Checking for destructive commands..." +disable-model-invocation: true --- diff --git a/careful/SKILL.md.tmpl b/careful/SKILL.md.tmpl index 5c128a00e..b45f42639 100644 --- a/careful/SKILL.md.tmpl +++ b/careful/SKILL.md.tmpl @@ -22,6 +22,7 @@ hooks: command: "bash $HOME/.claude/skills/gstack/careful/bin/check-careful.sh" statusMessage: "Checking for destructive commands..." sensitive: true +disable-model-invocation: true --- # /careful — Destructive Command Guardrails diff --git a/codex/SKILL.md b/codex/SKILL.md index 02c9daefd..8db868546 100644 --- a/codex/SKILL.md +++ b/codex/SKILL.md @@ -14,6 +14,7 @@ allowed-tools: - Glob - Grep - AskUserQuestion +disable-model-invocation: true --- diff --git a/codex/SKILL.md.tmpl b/codex/SKILL.md.tmpl index 333de7d8d..535b4bb39 100644 --- a/codex/SKILL.md.tmpl +++ b/codex/SKILL.md.tmpl @@ -23,6 +23,7 @@ allowed-tools: - Glob - Grep - AskUserQuestion +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/cso/SKILL.md b/cso/SKILL.md index 4b6049111..5e3638087 100644 --- a/cso/SKILL.md +++ b/cso/SKILL.md @@ -16,6 +16,7 @@ triggers: - security audit - check for vulnerabilities - owasp review +disable-model-invocation: true --- diff --git a/cso/SKILL.md.tmpl b/cso/SKILL.md.tmpl index 413fb0995..73b9db410 100644 --- a/cso/SKILL.md.tmpl +++ b/cso/SKILL.md.tmpl @@ -29,6 +29,7 @@ triggers: - security audit - check for vulnerabilities - owasp review +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/design-html/SKILL.md b/design-html/SKILL.md index bd6a07cc1..5b8944d2c 100644 --- a/design-html/SKILL.md +++ b/design-html/SKILL.md @@ -16,6 +16,7 @@ allowed-tools: - Grep - Agent - AskUserQuestion +disable-model-invocation: true --- diff --git a/design-html/SKILL.md.tmpl b/design-html/SKILL.md.tmpl index 3cdec9a14..c2eb022db 100644 --- a/design-html/SKILL.md.tmpl +++ b/design-html/SKILL.md.tmpl @@ -28,6 +28,7 @@ allowed-tools: - Grep - Agent - AskUserQuestion +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/design-shotgun/SKILL.md b/design-shotgun/SKILL.md index cdb598de8..50ecbd92d 100644 --- a/design-shotgun/SKILL.md +++ b/design-shotgun/SKILL.md @@ -34,6 +34,7 @@ gbrain: sort: mtime_desc limit: 3 render_as: "## Recent design docs" +disable-model-invocation: true --- diff --git a/design-shotgun/SKILL.md.tmpl b/design-shotgun/SKILL.md.tmpl index 230dbc292..17ab20348 100644 --- a/design-shotgun/SKILL.md.tmpl +++ b/design-shotgun/SKILL.md.tmpl @@ -40,6 +40,7 @@ gbrain: sort: mtime_desc limit: 3 render_as: "## Recent design docs" +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/devex-review/SKILL.md b/devex-review/SKILL.md index 70b6c16a4..813223eb3 100644 --- a/devex-review/SKILL.md +++ b/devex-review/SKILL.md @@ -15,6 +15,7 @@ allowed-tools: - Bash - AskUserQuestion - WebSearch +disable-model-invocation: true --- diff --git a/devex-review/SKILL.md.tmpl b/devex-review/SKILL.md.tmpl index 081d4f35b..1a2482b8c 100644 --- a/devex-review/SKILL.md.tmpl +++ b/devex-review/SKILL.md.tmpl @@ -27,6 +27,7 @@ allowed-tools: - Bash - AskUserQuestion - WebSearch +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/diagram/SKILL.md b/diagram/SKILL.md index bf57f3937..abd64af2b 100644 --- a/diagram/SKILL.md +++ b/diagram/SKILL.md @@ -14,6 +14,7 @@ triggers: - diagram this - visualize this flow - architecture diagram +disable-model-invocation: true --- diff --git a/diagram/SKILL.md.tmpl b/diagram/SKILL.md.tmpl index 9e19a52c6..fd8ac0a4c 100644 --- a/diagram/SKILL.md.tmpl +++ b/diagram/SKILL.md.tmpl @@ -20,6 +20,7 @@ triggers: - diagram this - visualize this flow - architecture diagram +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/document-generate/SKILL.md b/document-generate/SKILL.md index 09f3646cc..24576aa76 100644 --- a/document-generate/SKILL.md +++ b/document-generate/SKILL.md @@ -19,6 +19,7 @@ triggers: - write a how-to - explain this module - docs for this project +disable-model-invocation: true --- diff --git a/document-generate/SKILL.md.tmpl b/document-generate/SKILL.md.tmpl index d3ef0cbc3..046103514 100644 --- a/document-generate/SKILL.md.tmpl +++ b/document-generate/SKILL.md.tmpl @@ -25,6 +25,7 @@ triggers: - write a how-to - explain this module - docs for this project +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/document-release/SKILL.md b/document-release/SKILL.md index 2debd544f..c302ed149 100644 --- a/document-release/SKILL.md +++ b/document-release/SKILL.md @@ -15,6 +15,7 @@ triggers: - update docs after ship - document what changed - post-ship docs +disable-model-invocation: true --- diff --git a/document-release/SKILL.md.tmpl b/document-release/SKILL.md.tmpl index 7621cb312..12977565c 100644 --- a/document-release/SKILL.md.tmpl +++ b/document-release/SKILL.md.tmpl @@ -22,6 +22,7 @@ triggers: - update docs after ship - document what changed - post-ship docs +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/freeze/SKILL.md b/freeze/SKILL.md index d6ba29b24..0e13d2a91 100644 --- a/freeze/SKILL.md +++ b/freeze/SKILL.md @@ -22,6 +22,7 @@ hooks: - type: command command: "bash $HOME/.claude/skills/gstack/freeze/bin/check-freeze.sh" statusMessage: "Checking freeze boundary..." +disable-model-invocation: true --- diff --git a/freeze/SKILL.md.tmpl b/freeze/SKILL.md.tmpl index c0b31aa7f..e7b02e726 100644 --- a/freeze/SKILL.md.tmpl +++ b/freeze/SKILL.md.tmpl @@ -28,6 +28,7 @@ hooks: command: "bash $HOME/.claude/skills/gstack/freeze/bin/check-freeze.sh" statusMessage: "Checking freeze boundary..." sensitive: true +disable-model-invocation: true --- # /freeze — Restrict Edits to a Directory diff --git a/gstack-upgrade/SKILL.md b/gstack-upgrade/SKILL.md index 9f0f2f7ea..6fb64d5e7 100644 --- a/gstack-upgrade/SKILL.md +++ b/gstack-upgrade/SKILL.md @@ -11,6 +11,7 @@ allowed-tools: - Read - Write - AskUserQuestion +disable-model-invocation: true --- diff --git a/gstack-upgrade/SKILL.md.tmpl b/gstack-upgrade/SKILL.md.tmpl index 5402a1da3..0fb5ed6d5 100644 --- a/gstack-upgrade/SKILL.md.tmpl +++ b/gstack-upgrade/SKILL.md.tmpl @@ -19,6 +19,7 @@ allowed-tools: - Read - Write - AskUserQuestion +disable-model-invocation: true --- # /gstack-upgrade diff --git a/guard/SKILL.md b/guard/SKILL.md index d9ae63de8..1b9e3d1a7 100644 --- a/guard/SKILL.md +++ b/guard/SKILL.md @@ -27,6 +27,7 @@ hooks: - type: command command: "bash $HOME/.claude/skills/gstack/freeze/bin/check-freeze.sh" statusMessage: "Checking freeze boundary..." +disable-model-invocation: true --- diff --git a/guard/SKILL.md.tmpl b/guard/SKILL.md.tmpl index 3d34ee0c1..a88478c48 100644 --- a/guard/SKILL.md.tmpl +++ b/guard/SKILL.md.tmpl @@ -33,6 +33,7 @@ hooks: command: "bash $HOME/.claude/skills/gstack/freeze/bin/check-freeze.sh" statusMessage: "Checking freeze boundary..." sensitive: true +disable-model-invocation: true --- # /guard — Full Safety Mode diff --git a/health/SKILL.md b/health/SKILL.md index 50f03ce57..cc15dd069 100644 --- a/health/SKILL.md +++ b/health/SKILL.md @@ -15,6 +15,7 @@ allowed-tools: - Glob - Grep - AskUserQuestion +disable-model-invocation: true --- diff --git a/health/SKILL.md.tmpl b/health/SKILL.md.tmpl index f92eb7347..4ee7e197d 100644 --- a/health/SKILL.md.tmpl +++ b/health/SKILL.md.tmpl @@ -20,6 +20,7 @@ allowed-tools: - Glob - Grep - AskUserQuestion +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/ios-clean/SKILL.md b/ios-clean/SKILL.md index 085239309..356f1f30e 100644 --- a/ios-clean/SKILL.md +++ b/ios-clean/SKILL.md @@ -14,6 +14,7 @@ triggers: - clean the ios debug bridge - remove debugbridge - strip the gstack ios instrumentation +disable-model-invocation: true --- diff --git a/ios-clean/SKILL.md.tmpl b/ios-clean/SKILL.md.tmpl index 3a64481a9..d9309e633 100644 --- a/ios-clean/SKILL.md.tmpl +++ b/ios-clean/SKILL.md.tmpl @@ -25,6 +25,7 @@ triggers: - clean the ios debug bridge - remove debugbridge - strip the gstack ios instrumentation +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/ios-design-review/SKILL.md b/ios-design-review/SKILL.md index 3b9f24833..adfccd514 100644 --- a/ios-design-review/SKILL.md +++ b/ios-design-review/SKILL.md @@ -13,6 +13,7 @@ triggers: - review the ios design - audit the iphone app visuals - design qa the ios app +disable-model-invocation: true --- diff --git a/ios-design-review/SKILL.md.tmpl b/ios-design-review/SKILL.md.tmpl index dd9e2518f..302ea7259 100644 --- a/ios-design-review/SKILL.md.tmpl +++ b/ios-design-review/SKILL.md.tmpl @@ -26,6 +26,7 @@ triggers: - review the ios design - audit the iphone app visuals - design qa the ios app +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/ios-fix/SKILL.md b/ios-fix/SKILL.md index 92db5f4d6..e983b89a5 100644 --- a/ios-fix/SKILL.md +++ b/ios-fix/SKILL.md @@ -15,6 +15,7 @@ triggers: - fix this ios bug - patch the iphone app - auto-fix the ios issue +disable-model-invocation: true --- diff --git a/ios-fix/SKILL.md.tmpl b/ios-fix/SKILL.md.tmpl index 94655e282..f8376a46d 100644 --- a/ios-fix/SKILL.md.tmpl +++ b/ios-fix/SKILL.md.tmpl @@ -27,6 +27,7 @@ triggers: - fix this ios bug - patch the iphone app - auto-fix the ios issue +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/ios-qa/SKILL.md b/ios-qa/SKILL.md index 518cec0bc..d806a2c56 100644 --- a/ios-qa/SKILL.md +++ b/ios-qa/SKILL.md @@ -17,6 +17,7 @@ triggers: - test my ios app - find bugs on the device - qa the ios app +disable-model-invocation: true --- diff --git a/ios-qa/SKILL.md.tmpl b/ios-qa/SKILL.md.tmpl index e93d2831a..5dd96b389 100644 --- a/ios-qa/SKILL.md.tmpl +++ b/ios-qa/SKILL.md.tmpl @@ -30,6 +30,7 @@ triggers: - test my ios app - find bugs on the device - qa the ios app +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/ios-sync/SKILL.md b/ios-sync/SKILL.md index 3ee94b72e..16c96b3e2 100644 --- a/ios-sync/SKILL.md +++ b/ios-sync/SKILL.md @@ -15,6 +15,7 @@ triggers: - resync the ios debug bridge - regenerate ios accessors - update the gstack ios instrumentation +disable-model-invocation: true --- diff --git a/ios-sync/SKILL.md.tmpl b/ios-sync/SKILL.md.tmpl index 156a33c4c..ddc1d0e09 100644 --- a/ios-sync/SKILL.md.tmpl +++ b/ios-sync/SKILL.md.tmpl @@ -25,6 +25,7 @@ triggers: - resync the ios debug bridge - regenerate ios accessors - update the gstack ios instrumentation +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/landing-report/SKILL.md b/landing-report/SKILL.md index 3289f8a41..c1fa184f6 100644 --- a/landing-report/SKILL.md +++ b/landing-report/SKILL.md @@ -11,6 +11,7 @@ triggers: allowed-tools: - Bash - Read +disable-model-invocation: true --- diff --git a/landing-report/SKILL.md.tmpl b/landing-report/SKILL.md.tmpl index 32a8cc1ab..a437a54f1 100644 --- a/landing-report/SKILL.md.tmpl +++ b/landing-report/SKILL.md.tmpl @@ -17,6 +17,7 @@ allowed-tools: - Bash - Read sensitive: false +disable-model-invocation: true --- # /landing-report — Version Queue Dashboard diff --git a/make-pdf/SKILL.md b/make-pdf/SKILL.md index 600eb47ca..045a710fd 100644 --- a/make-pdf/SKILL.md +++ b/make-pdf/SKILL.md @@ -12,6 +12,7 @@ allowed-tools: - Bash - Read - AskUserQuestion +disable-model-invocation: true --- diff --git a/make-pdf/SKILL.md.tmpl b/make-pdf/SKILL.md.tmpl index 9133a711d..e2aee6466 100644 --- a/make-pdf/SKILL.md.tmpl +++ b/make-pdf/SKILL.md.tmpl @@ -26,6 +26,7 @@ allowed-tools: - Bash - Read - AskUserQuestion +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/open-gstack-browser/SKILL.md b/open-gstack-browser/SKILL.md index 7fa816132..aa53e538f 100644 --- a/open-gstack-browser/SKILL.md +++ b/open-gstack-browser/SKILL.md @@ -11,6 +11,7 @@ allowed-tools: - Read - AskUserQuestion +disable-model-invocation: true --- diff --git a/open-gstack-browser/SKILL.md.tmpl b/open-gstack-browser/SKILL.md.tmpl index ef91a5278..aebc8b3e7 100644 --- a/open-gstack-browser/SKILL.md.tmpl +++ b/open-gstack-browser/SKILL.md.tmpl @@ -18,6 +18,7 @@ allowed-tools: - Read - AskUserQuestion +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/pair-agent/SKILL.md b/pair-agent/SKILL.md index e024744f6..e3493d776 100644 --- a/pair-agent/SKILL.md +++ b/pair-agent/SKILL.md @@ -11,6 +11,7 @@ allowed-tools: - Read - AskUserQuestion +disable-model-invocation: true --- diff --git a/pair-agent/SKILL.md.tmpl b/pair-agent/SKILL.md.tmpl index 75ed42d59..5619fcda5 100644 --- a/pair-agent/SKILL.md.tmpl +++ b/pair-agent/SKILL.md.tmpl @@ -22,6 +22,7 @@ allowed-tools: - Read - AskUserQuestion +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/plan-devex-review/SKILL.md b/plan-devex-review/SKILL.md index 951969691..f889634c4 100644 --- a/plan-devex-review/SKILL.md +++ b/plan-devex-review/SKILL.md @@ -17,6 +17,7 @@ triggers: - developer experience review - dx plan review - check developer onboarding +disable-model-invocation: true --- diff --git a/plan-devex-review/SKILL.md.tmpl b/plan-devex-review/SKILL.md.tmpl index 1ef723c10..8d0266334 100644 --- a/plan-devex-review/SKILL.md.tmpl +++ b/plan-devex-review/SKILL.md.tmpl @@ -32,6 +32,7 @@ triggers: - developer experience review - dx plan review - check developer onboarding +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/plan-tune/SKILL.md b/plan-tune/SKILL.md index ccdc0fca6..2e1c0e660 100644 --- a/plan-tune/SKILL.md +++ b/plan-tune/SKILL.md @@ -19,6 +19,7 @@ allowed-tools: - AskUserQuestion - Glob - Grep +disable-model-invocation: true --- diff --git a/plan-tune/SKILL.md.tmpl b/plan-tune/SKILL.md.tmpl index dc1214d4c..d4f1bd5da 100644 --- a/plan-tune/SKILL.md.tmpl +++ b/plan-tune/SKILL.md.tmpl @@ -31,6 +31,7 @@ allowed-tools: - AskUserQuestion - Glob - Grep +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/pr-prep/SKILL.md b/pr-prep/SKILL.md index a10ae9476..2daf768e5 100644 --- a/pr-prep/SKILL.md +++ b/pr-prep/SKILL.md @@ -17,6 +17,7 @@ triggers: - pre-PR audit - is this already filed - dup PR check +disable-model-invocation: true --- diff --git a/pr-prep/SKILL.md.tmpl b/pr-prep/SKILL.md.tmpl index 31a999021..209eaa22d 100644 --- a/pr-prep/SKILL.md.tmpl +++ b/pr-prep/SKILL.md.tmpl @@ -27,6 +27,7 @@ triggers: - pre-PR audit - is this already filed - dup PR check +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/retro/SKILL.md b/retro/SKILL.md index b02228f3b..213bb037c 100644 --- a/retro/SKILL.md +++ b/retro/SKILL.md @@ -32,6 +32,7 @@ gbrain: glob: "~/.gstack/projects/{repo_slug}/learnings.jsonl" tail: 10 render_as: "## Recent learnings" +disable-model-invocation: true --- diff --git a/retro/SKILL.md.tmpl b/retro/SKILL.md.tmpl index b0819c8a6..4abdfbae2 100644 --- a/retro/SKILL.md.tmpl +++ b/retro/SKILL.md.tmpl @@ -37,6 +37,7 @@ gbrain: glob: "~/.gstack/projects/{repo_slug}/learnings.jsonl" tail: 10 render_as: "## Recent learnings" +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/scrape/SKILL.md b/scrape/SKILL.md index ef0e2a0eb..30d4813f9 100644 --- a/scrape/SKILL.md +++ b/scrape/SKILL.md @@ -12,6 +12,7 @@ triggers: - pull from - extract from - what is on +disable-model-invocation: true --- diff --git a/scrape/SKILL.md.tmpl b/scrape/SKILL.md.tmpl index 4cb4f17c0..c81df6e50 100644 --- a/scrape/SKILL.md.tmpl +++ b/scrape/SKILL.md.tmpl @@ -18,6 +18,7 @@ triggers: - pull from - extract from - what is on +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/setup-browser-cookies/SKILL.md b/setup-browser-cookies/SKILL.md index 77df27da2..2e620494b 100644 --- a/setup-browser-cookies/SKILL.md +++ b/setup-browser-cookies/SKILL.md @@ -11,6 +11,7 @@ allowed-tools: - Bash - Read - AskUserQuestion +disable-model-invocation: true --- diff --git a/setup-browser-cookies/SKILL.md.tmpl b/setup-browser-cookies/SKILL.md.tmpl index f812d9f56..d1e76b04c 100644 --- a/setup-browser-cookies/SKILL.md.tmpl +++ b/setup-browser-cookies/SKILL.md.tmpl @@ -15,6 +15,7 @@ allowed-tools: - Bash - Read - AskUserQuestion +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/setup-deploy/SKILL.md b/setup-deploy/SKILL.md index 1f43cc400..2a1aad8d4 100644 --- a/setup-deploy/SKILL.md +++ b/setup-deploy/SKILL.md @@ -15,6 +15,7 @@ allowed-tools: - Glob - Grep - AskUserQuestion +disable-model-invocation: true --- diff --git a/setup-deploy/SKILL.md.tmpl b/setup-deploy/SKILL.md.tmpl index 587a993c0..43bae2014 100644 --- a/setup-deploy/SKILL.md.tmpl +++ b/setup-deploy/SKILL.md.tmpl @@ -21,6 +21,7 @@ allowed-tools: - Glob - Grep - AskUserQuestion +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/setup-gbrain/SKILL.md b/setup-gbrain/SKILL.md index b88d9ba27..f79ebd2f2 100644 --- a/setup-gbrain/SKILL.md +++ b/setup-gbrain/SKILL.md @@ -17,6 +17,7 @@ allowed-tools: - Glob - Grep - AskUserQuestion +disable-model-invocation: true --- diff --git a/setup-gbrain/SKILL.md.tmpl b/setup-gbrain/SKILL.md.tmpl index f48581543..93e2679d0 100644 --- a/setup-gbrain/SKILL.md.tmpl +++ b/setup-gbrain/SKILL.md.tmpl @@ -22,6 +22,7 @@ allowed-tools: - Glob - Grep - AskUserQuestion +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/skillify/SKILL.md b/skillify/SKILL.md index 748b12def..6857f60a9 100644 --- a/skillify/SKILL.md +++ b/skillify/SKILL.md @@ -12,6 +12,7 @@ triggers: - codify this scrape - save this scrape - make this permanent +disable-model-invocation: true --- diff --git a/skillify/SKILL.md.tmpl b/skillify/SKILL.md.tmpl index 21fb2f503..7213a982f 100644 --- a/skillify/SKILL.md.tmpl +++ b/skillify/SKILL.md.tmpl @@ -19,6 +19,7 @@ triggers: - codify this scrape - save this scrape - make this permanent +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/spec/SKILL.md b/spec/SKILL.md index ec9f91980..33cec524f 100644 --- a/spec/SKILL.md +++ b/spec/SKILL.md @@ -15,6 +15,7 @@ triggers: - turn this into an issue - make this a github issue - turn this into a backlog item +disable-model-invocation: true --- diff --git a/spec/SKILL.md.tmpl b/spec/SKILL.md.tmpl index 6c0c14e1b..5ba00f5c0 100644 --- a/spec/SKILL.md.tmpl +++ b/spec/SKILL.md.tmpl @@ -20,6 +20,7 @@ triggers: - turn this into an issue - make this a github issue - turn this into a backlog item +disable-model-invocation: true --- {{PREAMBLE}} diff --git a/unfreeze/SKILL.md b/unfreeze/SKILL.md index a07f1cf5f..703f5591d 100644 --- a/unfreeze/SKILL.md +++ b/unfreeze/SKILL.md @@ -9,6 +9,7 @@ triggers: allowed-tools: - Bash - Read +disable-model-invocation: true --- diff --git a/unfreeze/SKILL.md.tmpl b/unfreeze/SKILL.md.tmpl index 88e413fe5..7676e7fe3 100644 --- a/unfreeze/SKILL.md.tmpl +++ b/unfreeze/SKILL.md.tmpl @@ -14,6 +14,7 @@ allowed-tools: - Bash - Read sensitive: true +disable-model-invocation: true --- # /unfreeze — Clear Freeze Boundary