@victortomaili/skill-cli 0.6.8 → 0.6.9
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 +10 -0
- package/package.json +1 -1
- package/src/commands/defaults.js +6 -4
- package/src/lib/agents-md.js +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,16 @@ 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.9] - 2026-07-08
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- AGENTS.md + `skill active`: PROPOSE is now NON-BLOCKING. The agent finally
|
|
18
|
+
classified correctly ("caveman is STYLE → I must propose") but then talked itself
|
|
19
|
+
out of asking via "asking would delay the task" / "user has a clear request" /
|
|
20
|
+
"I'll just do the task". The new wording makes asking non-blocking (ask at the top,
|
|
21
|
+
then do the task in the same reply) and explicitly forbids those excuses, plus
|
|
22
|
+
"mentioning/noting/available is NOT asking".
|
|
23
|
+
|
|
14
24
|
## [0.6.8] - 2026-07-08
|
|
15
25
|
|
|
16
26
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@victortomaili/skill-cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.9",
|
|
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>",
|
package/src/commands/defaults.js
CHANGED
|
@@ -42,11 +42,13 @@ export function cmdActive() {
|
|
|
42
42
|
console.log()
|
|
43
43
|
console.log(c.bold('→ For EACH skill above, decide in your reply:'))
|
|
44
44
|
console.log(c.gray(' LOAD moves CORRECTNESS/QUALITY → run ') + c.cyan('skill cat <name>') + c.gray(' now.'))
|
|
45
|
-
console.log(c.gray(' PROPOSE moves COST, STYLE, or SPEED
|
|
46
|
-
console.log(c.gray('
|
|
47
|
-
console.log(c.gray('
|
|
45
|
+
console.log(c.gray(' PROPOSE moves COST, STYLE, or SPEED → ASK "enable <name>?" at the TOP of your reply,'))
|
|
46
|
+
console.log(c.gray(' THEN do the task in the SAME reply. Asking is NON-BLOCKING. A trade-off is the'))
|
|
47
|
+
console.log(c.gray(' USER') + c.gray("'s decision; it moves an axis on EVERY reply, so NEVER skip and NEVER"))
|
|
48
|
+
console.log(c.gray(' say "not relevant here". Mentioning / noting / "available" is NOT asking.'))
|
|
48
49
|
console.log(c.gray(' SKIP moves NONE of the above.'))
|
|
49
|
-
console.log(c.yellow(' ⚠
|
|
50
|
+
console.log(c.yellow(' ⚠ Broken-rule excuses: "not relevant here", "would delay the task",'))
|
|
51
|
+
console.log(c.yellow(' "user has a clear request", "I will just do the task". Each = ask instead.'))
|
|
50
52
|
}
|
|
51
53
|
|
|
52
54
|
// `skill default <name>` — mark a skill as a default (active by default in every
|
package/src/lib/agents-md.js
CHANGED
|
@@ -37,6 +37,11 @@ no discretion and no third option:
|
|
|
37
37
|
"the user didn't request it", and "skip unless needed" are FORBIDDEN — each one
|
|
38
38
|
is you STEALING the user's decision. Deciding a trade-off is not your role;
|
|
39
39
|
surfacing it is. A line in a table is NOT proposing — you must actually ask.
|
|
40
|
+
PROPOSE IS NON-BLOCKING: put the question at the TOP of your reply, then DO the
|
|
41
|
+
task in the SAME reply — asking never delays anything, so "the task is the
|
|
42
|
+
priority", "the user has a clear request", and "asking would block/delay it" are
|
|
43
|
+
FORBIDDEN excuses to skip asking. Mentioning / noting / "available" is NOT asking;
|
|
44
|
+
you must ask a yes/no question (e.g. "Enable <name>?").
|
|
40
45
|
- moves none of the above → skip.
|
|
41
46
|
When unsure if a skill moves an axis → PROPOSE (ask). LOADED \u2260 LISTED: a skill is
|
|
42
47
|
loaded only if you \`cat\`-ed it this session — listing it, its \u2605, or its \`active\`
|