From bf519333588d1295a0dd8b4b514ee6334ff930c6 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 17 May 2026 10:56:22 +0100 Subject: [PATCH] docs(skills): use neutral skill wording --- skills/node-inspect-debugger/SKILL.md | 2 +- skills/spike/SKILL.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/skills/node-inspect-debugger/SKILL.md b/skills/node-inspect-debugger/SKILL.md index 86215e21f3fe..39238796ed0a 100644 --- a/skills/node-inspect-debugger/SKILL.md +++ b/skills/node-inspect-debugger/SKILL.md @@ -6,7 +6,7 @@ metadata: { "openclaw": { "emoji": "🪲", "requires": { "bins": ["node"] } } } # Node Inspect Debugger -Use when logs are too weak for a Node.js bug: hidden locals, async hangs, flaky tests, child processes, startup races, memory growth, or CPU hot paths. +Use for Node.js debugging that needs inspector access: hidden locals, async hangs, flaky tests, child processes, startup races, memory growth, or CPU hot paths. Default to `node inspect` first. Use Chrome DevTools Protocol only when you need scripted breakpoints, automated state capture, heap snapshots, or CPU profiles. diff --git a/skills/spike/SKILL.md b/skills/spike/SKILL.md index 1616ad48a4ad..afff75f0d867 100644 --- a/skills/spike/SKILL.md +++ b/skills/spike/SKILL.md @@ -14,7 +14,7 @@ Loop 1. Question: state the concrete feasibility question. 2. Research: read enough docs/source to choose credible approach. -3. Build: create the smallest runnable artifact that proves or kills the idea. +3. Build: create the smallest runnable artifact that validates or invalidates the idea. 4. Stress: try one edge case or failure mode. 5. Verdict: `VALIDATED`, `PARTIAL`, or `INVALIDATED`. @@ -46,6 +46,6 @@ Recommendation: ship / adjust / avoid, with the next production step. Rules -- A failed spike is useful when it kills a bad path with evidence. +- An invalidated spike is useful when it rules out a path with evidence. - Do not merge spike code into production without rewriting it normally. - If external dependencies are evaluated, check health: recent release/commit, docs, license, install friction.