@victortomaili/skill-cli 0.6.2 → 0.6.4
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 +17 -0
- package/README.md +9 -7
- package/package.json +1 -1
- package/src/commands/defaults.js +1 -1
- package/src/lib/agents-md.js +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,23 @@ 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.4] - 2026-07-08
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- AGENTS.md START GATE: a PRIORITIES line — when trading off how to do the work,
|
|
18
|
+
rank CORRECTNESS first, then QUALITY, then COST (cheap / token-efficient), then
|
|
19
|
+
SPEED (fast); never sacrifice correctness or quality for speed or cost.
|
|
20
|
+
|
|
21
|
+
## [0.6.3] - 2026-07-07
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- AGENTS.md START GATE: clarified the load-vs-propose line. The agent now AUTO-LOADS
|
|
25
|
+
(silently) any skill needed to do the task at all, OR that makes the work HIGHER
|
|
26
|
+
QUALITY / more correct (domain knowledge, best-practice, standards, a quality
|
|
27
|
+
methodology). It PROPOSES only optional EXPERIENCE changes — response
|
|
28
|
+
style/format/mode, context-cost/token optimization, and optional shortcuts
|
|
29
|
+
(easier/faster, not about correctness). When unsure, propose.
|
|
30
|
+
|
|
14
31
|
## [0.6.2] - 2026-07-07
|
|
15
32
|
|
|
16
33
|
### Changed
|
package/README.md
CHANGED
|
@@ -199,13 +199,15 @@ instruction file (`CLAUDE.md`, `AGENTS.md`, `GEMINI.md`):
|
|
|
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
201
|
> skill **catalog** (every active skill's name + full description; never the body).
|
|
202
|
-
> Read it and decide per skill from its description: **
|
|
203
|
-
>
|
|
204
|
-
>
|
|
205
|
-
>
|
|
206
|
-
>
|
|
207
|
-
>
|
|
208
|
-
>
|
|
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.
|
|
209
|
+
> **PRIORITIES**: correctness > quality > cost (cheap) > speed — never sacrifice
|
|
210
|
+
> correctness/quality for speed or cost.
|
|
209
211
|
> `/X` → `skill trigger X`.
|
|
210
212
|
|
|
211
213
|
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.4",
|
|
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 (descriptions only).
|
|
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,19 +28,19 @@ 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
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
•
|
|
39
|
-
•
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
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).
|
|
41
|
+
PRIORITIES — when trading off how to do the work, rank: CORRECTNESS first, then
|
|
42
|
+
QUALITY, then COST (cheap / token-efficient), then SPEED (fast). Never sacrifice
|
|
43
|
+
correctness or quality for speed or cost.
|
|
44
44
|
LOADED ≠ LISTED. A skill is loaded ONLY if you have run \`skill cat <name>\` for
|
|
45
45
|
it THIS session. Seeing a skill in \`skill active\` / \`skill list\` does NOT load
|
|
46
46
|
it — you then know only its name + description, nothing more. Never infer a skill
|