@victortomaili/skill-cli 0.7.0 → 0.7.1
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 +11 -0
- package/package.json +1 -1
- package/src/commands/defaults.js +3 -0
- package/src/lib/agents-md.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,17 @@ 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.7.1] - 2026-07-08
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- PARAMETERS (2nd rule, per user direction): when a proposed skill lists activation
|
|
18
|
+
options in its description (a level, language, mode, format, or strictness), the
|
|
19
|
+
agent must ask the user to choose them in the SAME proposal and the gate stays up
|
|
20
|
+
until BOTH the enable decision AND the parameters are given. Don't pick parameters
|
|
21
|
+
for the user; don't start the task until both are settled. Examples are fully
|
|
22
|
+
generic (no skill-specific names). Reflected in the AGENTS.md block and the
|
|
23
|
+
`skill active` footer (new PARAMS row).
|
|
24
|
+
|
|
14
25
|
## [0.7.0] - 2026-07-08
|
|
15
26
|
|
|
16
27
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@victortomaili/skill-cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
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
|
@@ -47,6 +47,9 @@ export function cmdActive() {
|
|
|
47
47
|
console.log(c.gray(' The wait is the POINT — a trade-off is the USER') + c.gray("'s decision; it moves an axis") )
|
|
48
48
|
console.log(c.gray(' on EVERY reply, so NEVER skip and NEVER say "not relevant here".'))
|
|
49
49
|
console.log(c.gray(' Mentioning / noting / "available" is NOT asking.'))
|
|
50
|
+
console.log(c.gray(' PARAMS if a proposed skill lists activation options (level / language / mode /'), )
|
|
51
|
+
console.log(c.gray(' format / strictness), ask the user to choose them in the SAME proposal — do not pick'))
|
|
52
|
+
console.log(c.gray(' for them. Gate stays up until enable decision + parameters are both given.'))
|
|
50
53
|
console.log(c.gray(' SKIP moves NONE of the above.'))
|
|
51
54
|
console.log(c.yellow(' ⚠ Breaking the gate: starting the task before the user answers,'))
|
|
52
55
|
console.log(c.yellow(' "would delay it", "user has a clear request", "I will just do the task",'))
|
package/src/lib/agents-md.js
CHANGED
|
@@ -44,6 +44,12 @@ no discretion and no third option:
|
|
|
44
44
|
"the user has a clear request", "I'll just do the task first", and "I'll mention it
|
|
45
45
|
and proceed" are FORBIDDEN: each is you deciding for the user. Mentioning / noting /
|
|
46
46
|
"available" is NOT asking — you must ASK a yes/no question and then wait.
|
|
47
|
+
PARAMETERS (2nd rule): if the skill's description lists activation options to pick
|
|
48
|
+
from — e.g. a level, a language, a mode, a format, or a strictness — you MUST ask
|
|
49
|
+
the user to choose them in the SAME proposal (do NOT pick for them), and the gate
|
|
50
|
+
stays up until they give BOTH the enable decision AND the parameters. Genericize
|
|
51
|
+
— never assume a particular skill; read its description to see which options (if
|
|
52
|
+
any) it exposes, and ask for those.
|
|
47
53
|
- moves none of the above → skip.
|
|
48
54
|
When unsure if a skill moves an axis → PROPOSE (ask). LOADED \u2260 LISTED: a skill is
|
|
49
55
|
loaded only if you \`cat\`-ed it this session — listing it, its \u2605, or its \`active\`
|