@victortomaili/skill-cli 0.6.4 → 0.6.5

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.
package/CHANGELOG.md CHANGED
@@ -11,6 +11,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
  - Cursor adapter (`.cursor/rules` format) for `init -g` bootstrap.
12
12
  - Per-agent hook adapters for automatic `/X` triggering (push model).
13
13
 
14
+ ## [0.6.5] - 2026-07-08
15
+
16
+ ### Changed
17
+ - AGENTS.md START GATE: **ENFORCEMENT** block — for EVERY active skill the agent
18
+ MUST state a decision out loud (LOAD or PROPOSE); staying silent or "not needed
19
+ for this task" is not valid. A ★ default is NEVER silently skipped: style/cost/
20
+ shortcut skills are candidates for every task type, "the user didn't ask" is not a
21
+ reason to stay quiet, and the only valid silence is the user already declining it
22
+ this session. Proposing is proactive — don't wait to be asked.
23
+ - `skill active` now prints a bold footer: "For EACH ★ skill above: PROPOSE it now.
24
+ Task type is irrelevant; 'not needed' is not a skip reason."
25
+
14
26
  ## [0.6.4] - 2026-07-08
15
27
 
16
28
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@victortomaili/skill-cli",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Cross-agent skill manager — one global store, clean agent folders, activation via skill.config",
5
5
  "license": "MIT",
6
6
  "author": "Victor Tomaili <victor@tomaili.com>",
@@ -40,7 +40,8 @@ export function cmdActive() {
40
40
  if (s.description) console.log(c.gray(' ' + String(s.description).replace(/[\r\n]+/g, ' ').trim()))
41
41
  }
42
42
  console.log()
43
- console.log(c.yellow('★') + c.gray(' = default. Load a skill: ') + c.cyan('skill cat <name>'))
43
+ console.log(c.bold(c.yellow('→ For EACH skill above: PROPOSE it now.')) + c.gray(' Task type is irrelevant — \"not needed for this task\" is NOT a reason to skip. The user decides, not you.'))
44
+ console.log(c.gray(' Load a skill: ') + c.cyan('skill cat <name>'))
44
45
  }
45
46
 
46
47
  // `skill default <name>` — mark a skill as a default (active by default in every
@@ -37,7 +37,18 @@ Read it, then for EACH skill decide FROM ITS DESCRIPTION:
37
37
  • response STYLE / tone / format / a persistent mode (e.g. a brevity style);
38
38
  • CONTEXT-COST / token optimization;
39
39
  • an optional ACCELERATOR / shortcut (easier or faster, but not about correctness).
40
- When unsure PROPOSE (proposing is the safe default; loading is silent).
40
+ ENFORCEMENT for EVERY active skill you MUST state a decision OUT LOUD: LOAD it
41
+ or PROPOSE it to the user. Staying silent, or "not needed for this task", is NOT
42
+ a valid decision. In particular:
43
+ - A ★ default is NEVER silently skipped. STYLE / COST / shortcut skills are
44
+ candidates for EVERY task type — review, debugging, refactor, anything; the task
45
+ type does NOT disqualify them, and "the user didn't ask" is NOT a reason to stay
46
+ quiet. If you are not loading a ★ default, you MUST propose it. The ONLY valid
47
+ reason to stay silent about a ★ is: the user already declined it this session.
48
+ - Do NOT wait for the user to ask — proposing happens HERE, proactively, every turn
49
+ until the user decides.
50
+ When unsure whether to load or propose → PROPOSE (proposing is the safe default;
51
+ loading is silent).
41
52
  PRIORITIES — when trading off how to do the work, rank: CORRECTNESS first, then
42
53
  QUALITY, then COST (cheap / token-efficient), then SPEED (fast). Never sacrifice
43
54
  correctness or quality for speed or cost.