@victortomaili/skill-cli 0.6.4 → 0.6.6
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 +22 -0
- package/package.json +1 -1
- package/src/commands/defaults.js +1 -1
- package/src/lib/agents-md.js +14 -11
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,28 @@ 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.6] - 2026-07-08
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- AGENTS.md START GATE: the load/propose/skip decision is now driven by the four
|
|
18
|
+
criteria (correctness / quality / cost / speed), not "propose every ★". A skill
|
|
19
|
+
that affects CORRECTNESS or QUALITY → auto-load; affects COST or SPEED only →
|
|
20
|
+
propose; affects none → skip. Task type still does not filter candidates (a
|
|
21
|
+
cost/style skill is a candidate on every task), and the agent must state each
|
|
22
|
+
decision out loud. `skill active` footer rewritten to match.
|
|
23
|
+
|
|
24
|
+
## [0.6.5] - 2026-07-08
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- AGENTS.md START GATE: **ENFORCEMENT** block — for EVERY active skill the agent
|
|
28
|
+
MUST state a decision out loud (LOAD or PROPOSE); staying silent or "not needed
|
|
29
|
+
for this task" is not valid. A ★ default is NEVER silently skipped: style/cost/
|
|
30
|
+
shortcut skills are candidates for every task type, "the user didn't ask" is not a
|
|
31
|
+
reason to stay quiet, and the only valid silence is the user already declining it
|
|
32
|
+
this session. Proposing is proactive — don't wait to be asked.
|
|
33
|
+
- `skill active` now prints a bold footer: "For EACH ★ skill above: PROPOSE it now.
|
|
34
|
+
Task type is irrelevant; 'not needed' is not a skip reason."
|
|
35
|
+
|
|
14
36
|
## [0.6.4] - 2026-07-08
|
|
15
37
|
|
|
16
38
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@victortomaili/skill-cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6",
|
|
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
|
@@ -40,7 +40,7 @@ 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.
|
|
43
|
+
console.log(c.bold('→ Decide each skill by the criteria:') + c.gray(' affects ') + c.cyan('CORRECTNESS/QUALITY') + c.gray(' → load (') + c.cyan('skill cat <name>') + c.gray('); affects ') + c.cyan('COST/SPEED') + c.gray(' → propose; affects none → skip. Task type is irrelevant; when unsure → propose.'))
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
// `skill default <name>` — mark a skill as a default (active by default in every
|
package/src/lib/agents-md.js
CHANGED
|
@@ -27,17 +27,20 @@ START GATE (mandatory): On the FIRST user message of a session, your VERY FIRST
|
|
|
27
27
|
action — BEFORE ANYTHING ELSE: before you start thinking/reasoning about the task
|
|
28
28
|
and before any tool call — MUST be to run \`skill active\`. It prints the skill
|
|
29
29
|
CATALOG — every ACTIVE skill's name + FULL description (NOT the skill body).
|
|
30
|
-
Read it, then for EACH skill
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
30
|
+
Read it, then for EACH skill judge by ONE question — does it affect the work's
|
|
31
|
+
CORRECTNESS, QUALITY, COST (tokens), or SPEED? Decide from the description:
|
|
32
|
+
- Affects CORRECTNESS or QUALITY → AUTO-LOAD it (\`skill cat <name>\`, silently).
|
|
33
|
+
These are how the job should be done — not optional.
|
|
34
|
+
- Affects COST or SPEED only → PROPOSE it: tell the user what it does and apply
|
|
35
|
+
ONLY after they confirm (\`/X\` = confirm). These are trade-offs the user opts into.
|
|
36
|
+
- Affects NONE of the four → skip it.
|
|
37
|
+
ENFORCEMENT — state each decision OUT LOUD (load / propose / skip). Task type does
|
|
38
|
+
NOT filter candidates: a COST/STYLE skill (e.g. a compression mode) affects cost on
|
|
39
|
+
EVERY task — review, debugging, refactor, anything — so it is a candidate
|
|
40
|
+
everywhere; "the user didn't ask" is NOT a reason to skip one that applies, and
|
|
41
|
+
"not needed for this technical task" is wrong (style/cost are task-independent).
|
|
42
|
+
Do not wait to be asked — propose proactively. When unsure whether a skill applies
|
|
43
|
+
→ PROPOSE.
|
|
41
44
|
PRIORITIES — when trading off how to do the work, rank: CORRECTNESS first, then
|
|
42
45
|
QUALITY, then COST (cheap / token-efficient), then SPEED (fast). Never sacrifice
|
|
43
46
|
correctness or quality for speed or cost.
|