@victortomaili/skill-cli 0.6.1 → 0.6.3
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 +20 -0
- package/README.md +8 -7
- package/package.json +1 -1
- package/src/commands/defaults.js +1 -1
- package/src/lib/agents-md.js +10 -4
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,26 @@ 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.3] - 2026-07-07
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- AGENTS.md START GATE: clarified the load-vs-propose line. The agent now AUTO-LOADS
|
|
18
|
+
(silently) any skill needed to do the task at all, OR that makes the work HIGHER
|
|
19
|
+
QUALITY / more correct (domain knowledge, best-practice, standards, a quality
|
|
20
|
+
methodology). It PROPOSES only optional EXPERIENCE changes — response
|
|
21
|
+
style/format/mode, context-cost/token optimization, and optional shortcuts
|
|
22
|
+
(easier/faster, not about correctness). When unsure, propose.
|
|
23
|
+
|
|
24
|
+
## [0.6.2] - 2026-07-07
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- AGENTS.md START GATE: stricter, broader PROPOSE rule. The agent now auto-loads
|
|
28
|
+
only skills STRICTLY NECESSARY to attempt the task, and PROPOSES (waits for user
|
|
29
|
+
confirmation) everything else — explicitly including: response STYLE/format/mode
|
|
30
|
+
skills, CONTEXT-COST / token optimizers, ACTIVATE-BEFORE-WORK workflows, and any
|
|
31
|
+
facilitator/accelerator that would make the job EASIER or FASTER. When unsure,
|
|
32
|
+
propose (propose is the safe default; loading is silent).
|
|
33
|
+
|
|
14
34
|
## [0.6.1] - 2026-07-07
|
|
15
35
|
|
|
16
36
|
### Changed
|
package/README.md
CHANGED
|
@@ -198,13 +198,14 @@ instruction file (`CLAUDE.md`, `AGENTS.md`, `GEMINI.md`):
|
|
|
198
198
|
|
|
199
199
|
> **START GATE:** on the first user message, your VERY FIRST action — BEFORE
|
|
200
200
|
> ANYTHING ELSE (before thinking, before any tool call) — is `skill active`, the
|
|
201
|
-
> skill **catalog** (every skill's name + full description; never the body).
|
|
202
|
-
> it and decide per skill from its description: **
|
|
203
|
-
>
|
|
204
|
-
>
|
|
205
|
-
>
|
|
206
|
-
>
|
|
207
|
-
>
|
|
201
|
+
> skill **catalog** (every active skill's name + full description; never the body).
|
|
202
|
+
> Read it and decide per skill from its description: **AUTO-LOAD** (silently) anything
|
|
203
|
+
> needed to do the task at all, or that makes the work **higher-quality / more
|
|
204
|
+
> correct** (domain knowledge, best-practice, standards). **PROPOSE** (apply only
|
|
205
|
+
> after the user confirms; `/X` = confirm) anything that's an optional change to the
|
|
206
|
+
> *experience* — response **style/format/mode**, **context-cost** optimization, or an
|
|
207
|
+
> optional **shortcut** (easier/faster, not about correctness). When unsure, propose.
|
|
208
|
+
> **LOADED ≠ LISTED**: a skill is loaded only if you `cat`-ed it this session.
|
|
208
209
|
> `/X` → `skill trigger X`.
|
|
209
210
|
|
|
210
211
|
It's wrapped in `<!-- BEGIN skill-cli --> … <!-- END skill-cli -->` markers, never
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@victortomaili/skill-cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
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
|
@@ -16,7 +16,7 @@ export function cmdActive() {
|
|
|
16
16
|
const eff = computeEffective(installed, globalCfg, projCfg)
|
|
17
17
|
const defs = new Set((globalCfg.defaults || []).map(d => String(d).toLowerCase()))
|
|
18
18
|
|
|
19
|
-
console.log(c.bold('skill active') + c.gray(' — active skills
|
|
19
|
+
console.log(c.bold('skill active') + c.gray(' — active skills (descriptions only). AUTO-LOAD what is necessary or quality-improving; PROPOSE style/cost/shortcut skills and wait for confirmation.'))
|
|
20
20
|
console.log()
|
|
21
21
|
|
|
22
22
|
if (eff.length === 0) {
|
package/src/lib/agents-md.js
CHANGED
|
@@ -28,10 +28,16 @@ action — BEFORE ANYTHING ELSE: before you start thinking/reasoning about the t
|
|
|
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
30
|
Read it, then for EACH skill decide FROM ITS DESCRIPTION:
|
|
31
|
-
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
- AUTO-LOAD it (\`skill cat <name>\`, silently) when it is needed to do the task AT
|
|
32
|
+
ALL, OR when it would make the work HIGHER QUALITY / more correct — domain
|
|
33
|
+
knowledge, best-practice, standards, a quality methodology. These are not
|
|
34
|
+
optional; they are how the job should be done.
|
|
35
|
+
- PROPOSE it (tell the user what it does; apply ONLY after they confirm; \`/X\` =
|
|
36
|
+
confirm) when it is an OPTIONAL change to the EXPERIENCE, not to quality:
|
|
37
|
+
• response STYLE / tone / format / a persistent mode (e.g. a brevity style);
|
|
38
|
+
• CONTEXT-COST / token optimization;
|
|
39
|
+
• an optional ACCELERATOR / shortcut (easier or faster, but not about correctness).
|
|
40
|
+
When unsure → PROPOSE (proposing is the safe default; loading is silent).
|
|
35
41
|
LOADED ≠ LISTED. A skill is loaded ONLY if you have run \`skill cat <name>\` for
|
|
36
42
|
it THIS session. Seeing a skill in \`skill active\` / \`skill list\` does NOT load
|
|
37
43
|
it — you then know only its name + description, nothing more. Never infer a skill
|