@zalom/plastic 1.0.0-alpha.2 → 1.0.0-alpha.20
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/PLASTIC.md +128 -473
- package/README.md +90 -58
- package/agents/future-intent-researcher.md +1 -1
- package/agents/intent-curator.md +1 -1
- package/bin/plastic.js +57 -0
- package/bin/test +28 -0
- package/deprecations.yml +7 -6
- package/hooks/auto-arm +5 -0
- package/hooks/bash-gate +3 -0
- package/hooks/check-update +12 -8
- package/hooks/code-gate +10 -0
- package/hooks/hooks.json +25 -4
- package/hooks/statusline +50 -10
- package/package.json +2 -2
- package/scripts/dashboard.rb +480 -0
- package/scripts/doctor.rb +950 -0
- package/scripts/hook-auto-arm +52 -0
- package/scripts/hook-bash-gate +53 -0
- package/scripts/hook-code-gate +39 -0
- package/scripts/hook-continue +15 -114
- package/scripts/hook-gate-check +19 -4
- package/scripts/hook-session-start +76 -31
- package/scripts/install.rb +91 -480
- package/scripts/lib/bridge.rb +255 -0
- package/scripts/lib/installer_core.rb +760 -0
- package/scripts/migrate-to-global +1 -1
- package/scripts/select-update-target +93 -0
- package/scripts/uninstall.rb +53 -0
- package/scripts/update.rb +142 -0
- package/scripts/versions.rb +141 -0
- package/skills/_active-intent-gate.md +26 -0
- package/skills/auto/SKILL.md +62 -9
- package/skills/auto/evals/evals.json +92 -0
- package/skills/auto/references/agent-architecture.md +60 -0
- package/skills/brainstorming/SKILL.md +143 -0
- package/skills/brainstorming-grill-me/SKILL.md +5 -5
- package/skills/continuing/SKILL.md +20 -4
- package/skills/continuing/references/context-management.md +32 -0
- package/skills/creating-intent/SKILL.md +16 -1
- package/skills/creating-intent/references/lifecycle.md +74 -0
- package/skills/creating-intent/references/wikilinks.md +8 -0
- package/skills/creating-project/SKILL.md +8 -4
- package/skills/creating-project/references/hubs-projects.md +55 -0
- package/skills/dashboard/SKILL.md +92 -0
- package/skills/doctor/SKILL.md +116 -0
- package/skills/doctor/references/gates-stuck-detection.md +38 -0
- package/skills/doctor/report.md +96 -0
- package/skills/evaluating-skills/SKILL.md +140 -0
- package/skills/evaluating-skills/assets/eval-template.json +12 -0
- package/skills/evaluating-skills/evals/evals.json +75 -0
- package/skills/evaluating-skills/references/convention-checks.md +76 -0
- package/skills/evaluating-skills/references/eval-methodology.md +154 -0
- package/skills/executing-plan/SKILL.md +3 -3
- package/skills/install/SKILL.md +56 -8
- package/skills/intent-curator/SKILL.md +3 -3
- package/skills/linking-intents/SKILL.md +5 -1
- package/skills/linking-intents/references/zettelkasten.md +33 -0
- package/skills/managing-index/SKILL.md +5 -1
- package/skills/releasing/SKILL.md +119 -18
- package/skills/releasing/references/deprecations.md +44 -0
- package/skills/research/SKILL.md +114 -0
- package/skills/savepoint/SKILL.md +46 -37
- package/skills/savepoint/references/context-management.md +32 -0
- package/skills/uninstall/SKILL.md +39 -28
- package/skills/update/SKILL.md +41 -36
- package/skills/versions/SKILL.md +65 -0
- package/skills/writing-instructions/SKILL.md +159 -0
- package/skills/writing-instructions/references/agentskills-spec.md +135 -0
- package/skills/writing-plans/SKILL.md +183 -0
- package/templates/agents.md +16 -0
- package/templates/outcome.md +13 -0
- package/templates/project.yml +5 -0
- package/templates/savepoint.md +14 -13
- package/templates/spec.md +25 -0
- package/bin/install.js +0 -29
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: plastic-doctor
|
|
3
|
+
description: Use when diagnosing Plastic installation health, after updates, or when something seems broken. Runs checks and reports findings with fix options.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Doctor — Plastic Health Check
|
|
7
|
+
|
|
8
|
+
## When to Use
|
|
9
|
+
|
|
10
|
+
- User invokes `/plastic-doctor`
|
|
11
|
+
- After `plastic-update` completes (automatically)
|
|
12
|
+
- When hooks aren't firing, skills aren't loading, or something seems broken
|
|
13
|
+
- When the user says "check plastic", "diagnose", "what's wrong with plastic"
|
|
14
|
+
|
|
15
|
+
## Procedure
|
|
16
|
+
|
|
17
|
+
### Step 1: Run the diagnostic script
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
ruby ~/.plastic/scripts/doctor.rb --agent claude
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Replace `claude` with the current agent type if known (`codex`, `hermes`).
|
|
24
|
+
|
|
25
|
+
Parse the JSON output from stdout. The script is read-only and never modifies
|
|
26
|
+
files. Errors go to stderr.
|
|
27
|
+
|
|
28
|
+
Exit codes indicate check results, not script failure:
|
|
29
|
+
- `0` — all checks passed
|
|
30
|
+
- `1` — warnings found
|
|
31
|
+
- `2` — failures found
|
|
32
|
+
|
|
33
|
+
All three exit codes mean the script ran successfully. Do not treat non-zero
|
|
34
|
+
as an error.
|
|
35
|
+
|
|
36
|
+
### Step 2: Determine overall status
|
|
37
|
+
|
|
38
|
+
Read the `status` field from the JSON root:
|
|
39
|
+
|
|
40
|
+
| Status | Meaning |
|
|
41
|
+
|--------|---------|
|
|
42
|
+
| `pass` | Everything is healthy |
|
|
43
|
+
| `warn` | Warnings found but Plastic works normally |
|
|
44
|
+
| `fail` | Blocking issues that prevent Plastic from operating |
|
|
45
|
+
|
|
46
|
+
### Step 3: Fill the report template
|
|
47
|
+
|
|
48
|
+
Read `report.md` from the same directory as this SKILL.md
|
|
49
|
+
(`~/.plastic/skills/doctor/report.md` at runtime, or the plugin source
|
|
50
|
+
`skills/doctor/report.md` during development).
|
|
51
|
+
|
|
52
|
+
Group checks by category. For each category, list the checks with their
|
|
53
|
+
status icon and message. If a check has `details`, list them as sub-items.
|
|
54
|
+
|
|
55
|
+
Present the filled template to the user.
|
|
56
|
+
|
|
57
|
+
### Step 4: Offer fixes (if applicable)
|
|
58
|
+
|
|
59
|
+
If any checks have `fixable: true` AND status is not `pass`:
|
|
60
|
+
|
|
61
|
+
1. Group fixable items by category
|
|
62
|
+
2. Show what each fix would do (from `fix_hint`)
|
|
63
|
+
3. Ask the user: **"Fix all / Select individually / Skip"**
|
|
64
|
+
|
|
65
|
+
If no fixable issues exist, skip this step.
|
|
66
|
+
|
|
67
|
+
### Step 5: Apply fixes
|
|
68
|
+
|
|
69
|
+
Use the `fix_hint` value to determine the correct action:
|
|
70
|
+
|
|
71
|
+
| Fix hint pattern | Agent action |
|
|
72
|
+
|---|---|
|
|
73
|
+
| "chmod +x on the listed files" | Run `chmod +x` on each file listed in `details` |
|
|
74
|
+
| "Create missing directory" | Run `mkdir -p` on the path |
|
|
75
|
+
| "Create INDEX.md with required sections" | Write INDEX.md with the 5 sections: Active, Future, Clusters, Abandoned, Completed |
|
|
76
|
+
| "Add missing entries to INDEX.md" | Add orphaned intents to the appropriate INDEX.md section |
|
|
77
|
+
| "Remove stale references from INDEX.md" | Edit INDEX.md to remove ghost references |
|
|
78
|
+
| "Re-run installer" | Run `npx @zalom/plastic@latest --agent` |
|
|
79
|
+
|
|
80
|
+
For fixes the agent cannot handle automatically, explain what the user needs
|
|
81
|
+
to do manually.
|
|
82
|
+
|
|
83
|
+
### Step 6: Verify
|
|
84
|
+
|
|
85
|
+
After applying fixes, re-run the diagnostic script:
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
ruby ~/.plastic/scripts/doctor.rb --agent claude
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
Show the updated results.
|
|
92
|
+
|
|
93
|
+
- If all checks pass: announce success.
|
|
94
|
+
- If issues remain: explain what is still wrong and what the user can do.
|
|
95
|
+
|
|
96
|
+
## Post-Update Mode
|
|
97
|
+
|
|
98
|
+
When invoked from `plastic-update` (not directly by the user):
|
|
99
|
+
|
|
100
|
+
1. Run the diagnostic script as in Step 1.
|
|
101
|
+
2. If all checks pass: show a single line — **"Health check: all clear."**
|
|
102
|
+
3. If issues are found: show the full report (Steps 3-6).
|
|
103
|
+
|
|
104
|
+
This keeps the update flow clean when nothing is wrong.
|
|
105
|
+
|
|
106
|
+
## Important Notes
|
|
107
|
+
|
|
108
|
+
- The script is **read-only**. It inspects but never modifies files.
|
|
109
|
+
All fixes are performed by the agent using standard tools.
|
|
110
|
+
- The script outputs JSON to stdout. Any diagnostic errors go to stderr.
|
|
111
|
+
- Non-zero exit codes mean "issues found", not "script crashed".
|
|
112
|
+
Always parse stdout regardless of exit code.
|
|
113
|
+
|
|
114
|
+
## References
|
|
115
|
+
|
|
116
|
+
- Read `references/gates-stuck-detection.md` for the full gate enforcement table, bridge file pattern, and stuck detection thresholds when diagnosing gate failures or stuck agents
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Gate Enforcement and Stuck Detection
|
|
2
|
+
|
|
3
|
+
## Bridge File Pattern
|
|
4
|
+
|
|
5
|
+
`/tmp/plastic-{session}.json` is the hot cache; the filesystem is the authority.
|
|
6
|
+
SessionStart rebuilds the bridge file from the filesystem — the bridge is always disposable.
|
|
7
|
+
|
|
8
|
+
## Gate Taxonomy
|
|
9
|
+
|
|
10
|
+
| Gate type | Purpose |
|
|
11
|
+
|---|---|
|
|
12
|
+
| **Pre-flight** | Prerequisites exist? |
|
|
13
|
+
| **Revision** | New info invalidated prior work? |
|
|
14
|
+
| **Escalation** | Blocked items surface to user |
|
|
15
|
+
| **Abort** | Inconsistent state detected |
|
|
16
|
+
|
|
17
|
+
## Full Gate Enforcement
|
|
18
|
+
|
|
19
|
+
| Gate | Blocked action | Required prerequisite |
|
|
20
|
+
|---|---|---|
|
|
21
|
+
| Pre-flight | Cannot write `plan.md` | `spec.md` must exist |
|
|
22
|
+
| Pre-flight | Cannot create `actions/` | `spec.md` must exist |
|
|
23
|
+
| Pre-flight | Cannot write `outcome.md` | `checklist.md` must exist with all items checked |
|
|
24
|
+
| Revision | Cannot proceed to Exec | Context changed after spec.md — re-derive spec |
|
|
25
|
+
| Abort | Cannot complete intent | `outcome.md` exists but checklist has unchecked items |
|
|
26
|
+
|
|
27
|
+
Hard blocking — hooks exit with code 2 when gates fail.
|
|
28
|
+
|
|
29
|
+
## Stuck Detection
|
|
30
|
+
|
|
31
|
+
| Condition | Threshold | Action |
|
|
32
|
+
|---|---|---|
|
|
33
|
+
| Consecutive gate failures | 3+ | Warning |
|
|
34
|
+
| Consecutive gate failures | 5+ | Force savepoint + escalate |
|
|
35
|
+
| No activity | 5+ min | Warning |
|
|
36
|
+
| No activity | 10+ min | Force savepoint + escalate |
|
|
37
|
+
| Context pressure | 80% | Warning |
|
|
38
|
+
| Context pressure | 90% | Force savepoint |
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
# Plastic Doctor Report
|
|
2
|
+
|
|
3
|
+
<!-- =======================================================================
|
|
4
|
+
AGENT INSTRUCTIONS -- How to fill this template
|
|
5
|
+
=========================================================================
|
|
6
|
+
1. Run the doctor script. It outputs JSON with check results.
|
|
7
|
+
2. Replace every {{placeholder}} below with the corresponding JSON value.
|
|
8
|
+
3. For the category sections: the template shows ONE example section.
|
|
9
|
+
Repeat that pattern for each unique category in the checks array.
|
|
10
|
+
The six known categories and their display names are:
|
|
11
|
+
global_store -> "Global Store"
|
|
12
|
+
conventions -> "Conventions"
|
|
13
|
+
agent_registration -> "Agent Registration"
|
|
14
|
+
core_files -> "Core Files"
|
|
15
|
+
project_stores -> "Project Stores"
|
|
16
|
+
deprecations -> "Deprecations"
|
|
17
|
+
4. For each check within a category, emit one line with the status icon
|
|
18
|
+
and the check message. If the check has non-empty details, list them
|
|
19
|
+
as indented sub-items.
|
|
20
|
+
5. The "Fixable Issues" section should ONLY appear if at least one check
|
|
21
|
+
has fixable=true AND status is not "pass". Omit the entire section
|
|
22
|
+
otherwise.
|
|
23
|
+
6. Status icons (plain text, no emoji):
|
|
24
|
+
pass -> [PASS]
|
|
25
|
+
warn -> [WARN]
|
|
26
|
+
fail -> [FAIL]
|
|
27
|
+
7. The overall status icon in the header uses the same mapping.
|
|
28
|
+
8. After filling, remove all HTML comments -- they are instructions only.
|
|
29
|
+
======================================================================= -->
|
|
30
|
+
|
|
31
|
+
## {{overall_status_icon}} Overall: {{status}} -- Plastic v{{version}}
|
|
32
|
+
|
|
33
|
+
Checked at: {{timestamp}}
|
|
34
|
+
|
|
35
|
+
### Summary
|
|
36
|
+
|
|
37
|
+
{{pass}} passed, {{warn}} warnings, {{fail}} failed -- {{total}} checks total
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
<!-- =====================================================================
|
|
42
|
+
CATEGORY SECTIONS
|
|
43
|
+
======================================================================
|
|
44
|
+
Repeat the block below ONCE PER CATEGORY present in the checks array.
|
|
45
|
+
Group checks by their "category" field. Use the display name mapping
|
|
46
|
+
above for the heading. Within each category, list every check as a
|
|
47
|
+
single line: status icon + message. If a check has non-empty "details",
|
|
48
|
+
list each detail as an indented bullet beneath.
|
|
49
|
+
|
|
50
|
+
Example category section (for agent_registration with two checks):
|
|
51
|
+
===================================================================== -->
|
|
52
|
+
|
|
53
|
+
### Agent Registration
|
|
54
|
+
|
|
55
|
+
- [PASS] Claude Code adapter registered
|
|
56
|
+
- [FAIL] 2 hook scripts not executable
|
|
57
|
+
- ~/.claude/hooks/plastic-session-start
|
|
58
|
+
- ~/.claude/hooks/plastic-gate-check
|
|
59
|
+
|
|
60
|
+
<!-- =====================================================================
|
|
61
|
+
Repeat the above pattern for each category found in the checks array.
|
|
62
|
+
Only include categories that have at least one check.
|
|
63
|
+
Order categories as they appear in the checks array.
|
|
64
|
+
===================================================================== -->
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
<!-- =====================================================================
|
|
69
|
+
FIXABLE ISSUES SECTION
|
|
70
|
+
======================================================================
|
|
71
|
+
Include this section ONLY if one or more checks have fixable=true AND
|
|
72
|
+
status is "warn" or "fail". If no fixable issues exist, omit everything
|
|
73
|
+
from the "Fixable Issues" heading through the end of the horizontal
|
|
74
|
+
rule that follows the table.
|
|
75
|
+
|
|
76
|
+
For each fixable check that is not "pass", emit one table row:
|
|
77
|
+
| status_icon | check_message | fix_hint |
|
|
78
|
+
===================================================================== -->
|
|
79
|
+
|
|
80
|
+
### Fixable Issues
|
|
81
|
+
|
|
82
|
+
| Status | Issue | Fix |
|
|
83
|
+
|--------|-------|-----|
|
|
84
|
+
| [FAIL] | 2 hook scripts not executable | chmod +x on the listed files |
|
|
85
|
+
|
|
86
|
+
<!-- =====================================================================
|
|
87
|
+
Repeat one row per fixable non-pass check.
|
|
88
|
+
===================================================================== -->
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
<!-- =====================================================================
|
|
93
|
+
FOOTER -- always include this line exactly as written.
|
|
94
|
+
===================================================================== -->
|
|
95
|
+
|
|
96
|
+
Run `plastic doctor --fix` to auto-fix all fixable issues, or ask me to fix them now.
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: plastic-evaluating-skills
|
|
3
|
+
description: >
|
|
4
|
+
Evaluate Plastic skills for correctness, convention compliance, and
|
|
5
|
+
progressive disclosure. Use when testing whether a skill produces good
|
|
6
|
+
outputs, verifying convention compliance after changes, running evals
|
|
7
|
+
against skills or instructions, creating evals for a new or updated
|
|
8
|
+
skill, checking if a description triggers correctly, or assessing
|
|
9
|
+
whether a skill is still needed. Also use when the user says "evaluate",
|
|
10
|
+
"test the skill", "run evals", "check conventions", or "write evals".
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# Evaluating Skills
|
|
14
|
+
|
|
15
|
+
Eval methodology for Plastic skills, based on
|
|
16
|
+
[agentskills.io](https://agentskills.io/skill-creation/evaluating-skills)
|
|
17
|
+
and [Anthropic's eval guide](https://www.anthropic.com/engineering/demystifying-evals-for-ai-agents).
|
|
18
|
+
|
|
19
|
+
## Gotchas
|
|
20
|
+
|
|
21
|
+
- Assertions written before observing output are almost always wrong — run
|
|
22
|
+
the eval first, observe actual output, THEN write assertions
|
|
23
|
+
- Near-miss negative test cases are the most valuable — prompts that share
|
|
24
|
+
keywords with should-trigger cases but need a different skill entirely
|
|
25
|
+
- Select the best skill iteration by validation pass rate, not the last one
|
|
26
|
+
- Grade outcomes, not execution paths — if the agent solved the task via an
|
|
27
|
+
unexpected route but produced correct output, that is a pass
|
|
28
|
+
- Same skill can behave differently across agent frameworks — test on each
|
|
29
|
+
target agent (Claude Code, Hermes, OpenClaw, Codex)
|
|
30
|
+
|
|
31
|
+
## Procedure
|
|
32
|
+
|
|
33
|
+
### Step 1: Choose eval scope
|
|
34
|
+
|
|
35
|
+
Determine what you are evaluating:
|
|
36
|
+
|
|
37
|
+
- **Description triggering** — does the agent activate the right skill for
|
|
38
|
+
a given prompt? Tests the description field effectiveness.
|
|
39
|
+
- **Output quality** — does the skill produce correct results when activated?
|
|
40
|
+
Tests the skill body and references.
|
|
41
|
+
- **Convention compliance** — does the output follow Plastic conventions?
|
|
42
|
+
Read `references/convention-checks.md` for the full assertion library.
|
|
43
|
+
|
|
44
|
+
Multiple scopes can apply to the same skill. Start with the scope that
|
|
45
|
+
addresses your immediate concern, add others as needed.
|
|
46
|
+
|
|
47
|
+
### Step 2: Design test cases
|
|
48
|
+
|
|
49
|
+
Create `evals/evals.json` in the skill being evaluated. Copy the starter
|
|
50
|
+
template from `assets/eval-template.json` in this skill.
|
|
51
|
+
|
|
52
|
+
**For description triggering:**
|
|
53
|
+
- Write ~20 queries: 8-10 should-trigger, 8-10 should-not-trigger
|
|
54
|
+
- Split 60/40 into train and validation sets (proportional mix in each)
|
|
55
|
+
- Include near-miss negatives that share keywords but need a different skill
|
|
56
|
+
- In `expected_output`, describe whether the skill should or should not activate
|
|
57
|
+
and why
|
|
58
|
+
|
|
59
|
+
**For output quality:**
|
|
60
|
+
- Start with 2-3 test cases, expand after first results
|
|
61
|
+
- Use realistic user prompts with varied phrasing, detail level, and formality
|
|
62
|
+
- In `expected_output`, describe what correct output looks like — not exact text
|
|
63
|
+
- Use `files` array for any input files the test needs
|
|
64
|
+
|
|
65
|
+
**For convention compliance:**
|
|
66
|
+
- Start with 2-3 test cases targeting specific convention areas
|
|
67
|
+
- In `expected_output`, describe which conventions must be met
|
|
68
|
+
- Read `references/convention-checks.md` for the full assertion library
|
|
69
|
+
|
|
70
|
+
Leave `assertions` arrays empty. They are populated after Step 4.
|
|
71
|
+
|
|
72
|
+
### Step 3: Run paired evals
|
|
73
|
+
|
|
74
|
+
Dispatch a subagent per test case to ensure clean context — no leakage
|
|
75
|
+
between test runs. Run each case twice:
|
|
76
|
+
|
|
77
|
+
1. **With skill** — the skill is available and loaded
|
|
78
|
+
2. **Without skill** — the skill is not available (baseline comparison)
|
|
79
|
+
|
|
80
|
+
The delta between with-skill and without-skill measures what the skill adds.
|
|
81
|
+
If the delta is negligible, the skill may not be adding value for that case.
|
|
82
|
+
|
|
83
|
+
Grade outcomes, not paths. An unexpected tool-call sequence that produces
|
|
84
|
+
correct output is still a pass.
|
|
85
|
+
|
|
86
|
+
### Step 4: Write assertions after observing
|
|
87
|
+
|
|
88
|
+
Review actual outputs from Step 3. Write specific, verifiable assertions
|
|
89
|
+
based on what you observed — not what you expected beforehand.
|
|
90
|
+
|
|
91
|
+
Choose the grader type that fits each assertion:
|
|
92
|
+
- **Code-based** — structure, file existence, format validity, counts
|
|
93
|
+
- **LLM-as-judge** — quality, completeness, tone, semantic correctness
|
|
94
|
+
- **Human** — edge cases, calibration, judgment calls
|
|
95
|
+
|
|
96
|
+
Read `references/eval-methodology.md` for the full grader taxonomy and
|
|
97
|
+
LLM-judge calibration protocol.
|
|
98
|
+
|
|
99
|
+
Good assertions are specific, verifiable, and countable:
|
|
100
|
+
"Output includes at least 3 concrete recommendations."
|
|
101
|
+
|
|
102
|
+
Weak assertions are vague: "Output is good."
|
|
103
|
+
Brittle assertions use exact phrase matching.
|
|
104
|
+
|
|
105
|
+
Require concrete evidence for PASS. No benefit of the doubt.
|
|
106
|
+
|
|
107
|
+
### Step 5: Grade and iterate
|
|
108
|
+
|
|
109
|
+
Compute pass rates per test case and aggregate across the eval suite.
|
|
110
|
+
|
|
111
|
+
Track two metrics separately:
|
|
112
|
+
- **pass@k** — succeeded at least once in k trials (capability)
|
|
113
|
+
- **pass^k** — succeeded every time in k trials (reliability)
|
|
114
|
+
|
|
115
|
+
Read `references/eval-methodology.md` for formulas and interpretation.
|
|
116
|
+
|
|
117
|
+
Three signal sources for skill improvement:
|
|
118
|
+
1. **Failed assertions** — specific gaps in the skill
|
|
119
|
+
2. **Human feedback** — broader quality issues not captured by assertions
|
|
120
|
+
3. **Execution transcripts** — reveals WHY things went wrong
|
|
121
|
+
|
|
122
|
+
Feed all three plus the current SKILL.md to propose targeted changes.
|
|
123
|
+
Iterate on the train set only. Check the validation set for generalization.
|
|
124
|
+
5 iterations is usually enough. If not improving after 5, the test cases
|
|
125
|
+
themselves may be the problem — revisit Step 2.
|
|
126
|
+
|
|
127
|
+
### Step 6: Graduate and monitor
|
|
128
|
+
|
|
129
|
+
Once a skill hits ~100% on capability evals (pass@k = 1.0 for 3+
|
|
130
|
+
consecutive runs):
|
|
131
|
+
|
|
132
|
+
1. **Graduate** capability evals into regression tests — run them on every
|
|
133
|
+
skill change to protect against backsliding
|
|
134
|
+
2. **Monitor** the with/without delta over time — if it shrinks to zero
|
|
135
|
+
across 3+ runs, the model may have internalized the skill
|
|
136
|
+
3. **Retire** cautiously — archive the skill, do not delete. Re-test after
|
|
137
|
+
model updates in case capabilities regress.
|
|
138
|
+
|
|
139
|
+
Read `references/eval-methodology.md` for graduation criteria, retirement
|
|
140
|
+
detection, and the three-layer eval taxonomy.
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skill_name": "evaluating-skills",
|
|
3
|
+
"evals": [
|
|
4
|
+
{
|
|
5
|
+
"id": 1,
|
|
6
|
+
"prompt": "I want to evaluate whether my creating-intent skill follows Plastic conventions",
|
|
7
|
+
"expected_output": "The skill should activate and guide the user through convention compliance evaluation: choose eval scope, design test cases using convention-checks reference, run paired evals, write assertions after observing.",
|
|
8
|
+
"files": [],
|
|
9
|
+
"assertions": []
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"id": 2,
|
|
13
|
+
"prompt": "Run evals on the brainstorming skill to see if the description triggers correctly",
|
|
14
|
+
"expected_output": "The skill should activate and guide through description triggering evaluation: design ~20 queries with should-trigger and near-miss negatives, 60/40 train/validation split, compute trigger rates.",
|
|
15
|
+
"files": [],
|
|
16
|
+
"assertions": []
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"id": 3,
|
|
20
|
+
"prompt": "Create evals for a new skill I just wrote for database migrations",
|
|
21
|
+
"expected_output": "The skill should activate, help create evals/evals.json in the migration skill directory using the template, guide through choosing eval scope (likely output quality), and design initial test cases.",
|
|
22
|
+
"files": [],
|
|
23
|
+
"assertions": []
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"id": 4,
|
|
27
|
+
"prompt": "Check if my SKILL.md is under the token budget and follows progressive disclosure",
|
|
28
|
+
"expected_output": "The skill should activate and guide through convention compliance evaluation focused on progressive disclosure checks: body under 500 lines/5000 tokens, references have conditional triggers, description under 1024 chars.",
|
|
29
|
+
"files": [],
|
|
30
|
+
"assertions": []
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": 5,
|
|
34
|
+
"prompt": "My skill's description isn't triggering on the right prompts, how do I fix it?",
|
|
35
|
+
"expected_output": "The skill should activate and guide through description triggering evaluation: create should-trigger and should-not-trigger queries, run paired evals, measure trigger rate, iterate on description wording.",
|
|
36
|
+
"files": [],
|
|
37
|
+
"assertions": []
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": 6,
|
|
41
|
+
"prompt": "Write unit tests for my Ruby model that validates email addresses",
|
|
42
|
+
"expected_output": "The skill should NOT trigger. This is a code testing task, not a skill evaluation task. Near-miss negative — shares 'test' keyword but needs a different skill.",
|
|
43
|
+
"files": [],
|
|
44
|
+
"assertions": []
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": 7,
|
|
48
|
+
"prompt": "Fix the bug in my login controller where sessions aren't persisting",
|
|
49
|
+
"expected_output": "The skill should NOT trigger. This is a debugging task with no relation to skill evaluation.",
|
|
50
|
+
"files": [],
|
|
51
|
+
"assertions": []
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": 8,
|
|
55
|
+
"prompt": "Review this pull request for code quality issues",
|
|
56
|
+
"expected_output": "The skill should NOT trigger. Code review is different from skill evaluation. Near-miss negative — shares 'review/evaluate' concept.",
|
|
57
|
+
"files": [],
|
|
58
|
+
"assertions": []
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": 9,
|
|
62
|
+
"prompt": "I updated my skill and want to make sure it still works correctly",
|
|
63
|
+
"expected_output": "The skill should activate and guide through regression evaluation: run existing evals against the updated skill, compare pass rates with previous version, check for backsliding.",
|
|
64
|
+
"files": [],
|
|
65
|
+
"assertions": []
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"id": 10,
|
|
69
|
+
"prompt": "How do I know if a skill is still needed or if the model has learned the behavior?",
|
|
70
|
+
"expected_output": "The skill should activate and guide through skill retirement detection: monitor with/without delta over time, if delta approaches zero the model has internalized the skill.",
|
|
71
|
+
"files": [],
|
|
72
|
+
"assertions": []
|
|
73
|
+
}
|
|
74
|
+
]
|
|
75
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Plastic Convention Checks
|
|
2
|
+
|
|
3
|
+
Assertion library for convention compliance evals on Plastic skills.
|
|
4
|
+
Load when running convention compliance evals on a Plastic skill.
|
|
5
|
+
|
|
6
|
+
## Directory Structure
|
|
7
|
+
|
|
8
|
+
| Check | Pass criteria |
|
|
9
|
+
|-------|--------------|
|
|
10
|
+
| SKILL.md exists | File present at skill root |
|
|
11
|
+
| Name matches directory | `name` in frontmatter equals directory name |
|
|
12
|
+
| Standard directories only | Only scripts/, references/, assets/, evals/ at root level (all optional) |
|
|
13
|
+
| References one level deep | No nested directories inside references/ |
|
|
14
|
+
| No orphan files | Every file in the skill dir is referenced from SKILL.md or another skill file |
|
|
15
|
+
| evals/ has evals.json | If evals/ exists, it contains evals.json |
|
|
16
|
+
|
|
17
|
+
## Frontmatter
|
|
18
|
+
|
|
19
|
+
| Check | Pass criteria |
|
|
20
|
+
|-------|--------------|
|
|
21
|
+
| `name` present | Non-empty, 1-64 chars |
|
|
22
|
+
| `name` format | Lowercase alphanumeric + hyphens, no leading/trailing/consecutive hyphens |
|
|
23
|
+
| `name` matches dir | Exact match with skill directory name |
|
|
24
|
+
| `description` present | Non-empty, 1-1024 chars |
|
|
25
|
+
| `description` phrasing | Starts with imperative verb or "Use when" pattern |
|
|
26
|
+
| `description` triggers | Mentions at least one trigger context ("Use when...") |
|
|
27
|
+
| `description` edge cases | Includes at least one indirect trigger (user doesn't name the domain) |
|
|
28
|
+
| No unknown required fields | Only uses fields from agentskills.io spec: name, description, license, compatibility, metadata, allowed-tools |
|
|
29
|
+
|
|
30
|
+
## Progressive Disclosure
|
|
31
|
+
|
|
32
|
+
| Check | Pass criteria |
|
|
33
|
+
|-------|--------------|
|
|
34
|
+
| Body line count | SKILL.md body (excluding frontmatter) under 500 lines |
|
|
35
|
+
| Body token count | SKILL.md body under 5000 tokens (estimate: lines * 10) |
|
|
36
|
+
| Deep detail in references | Content exceeding activation budget lives in references/ |
|
|
37
|
+
| Conditional reference triggers | Every reference file mentioned in SKILL.md has a "when" condition |
|
|
38
|
+
| No generic references | No "see references/ for more" — each reference has specific load trigger |
|
|
39
|
+
| Description token budget | Description stays under ~100 tokens for discovery stage |
|
|
40
|
+
|
|
41
|
+
## Content Quality
|
|
42
|
+
|
|
43
|
+
| Check | Pass criteria |
|
|
44
|
+
|-------|--------------|
|
|
45
|
+
| Gotchas are concrete | Each gotcha is a specific correction, not general advice |
|
|
46
|
+
| Gotchas positioned early | Gotchas section appears before or near the top of procedures |
|
|
47
|
+
| Defaults, not menus | Skill picks one approach; alternatives mentioned briefly if at all |
|
|
48
|
+
| Procedures over declarations | Instructions teach HOW to approach, not WHAT to produce |
|
|
49
|
+
| Reasoning over rigid directives | Uses "Do X because Y" pattern, not "ALWAYS/NEVER" without rationale |
|
|
50
|
+
| No redundant knowledge | Every instruction passes "would the agent get this wrong without it?" |
|
|
51
|
+
| No explaining basics | Does not explain HTTP, JSON, what a migration is, etc. |
|
|
52
|
+
|
|
53
|
+
## Eval Quality (when evals/ exists)
|
|
54
|
+
|
|
55
|
+
| Check | Pass criteria |
|
|
56
|
+
|-------|--------------|
|
|
57
|
+
| Standard format | evals.json follows agentskills.io eval structure |
|
|
58
|
+
| Prompts are realistic | Each prompt reads like a real user message |
|
|
59
|
+
| Varied phrasing | Prompts use different wording, detail levels, formality |
|
|
60
|
+
| Near-miss negatives | At least 2 should-not-trigger cases that share keywords |
|
|
61
|
+
| Expected output descriptive | expected_output describes success, not exact text |
|
|
62
|
+
| Assertions (if populated) | Each assertion is specific, verifiable, and countable |
|
|
63
|
+
|
|
64
|
+
## Intent Structure (when evaluating intent compliance)
|
|
65
|
+
|
|
66
|
+
| Check | Pass criteria |
|
|
67
|
+
|-------|--------------|
|
|
68
|
+
| Intent file exists | `{ID}--{slug}.md` present in intent directory |
|
|
69
|
+
| Frontmatter complete | id, intent, sources, chain, created, author, tags present |
|
|
70
|
+
| ID format correct | Follows Luhmann alternating: digits and letters alternate |
|
|
71
|
+
| Directory name matches | `{ID}--{slug}` format, 3-5 word slug |
|
|
72
|
+
| Lifecycle artifacts | Present artifacts match the intent's lifecycle stage |
|
|
73
|
+
| spec.md gate | plan.md only exists if spec.md exists |
|
|
74
|
+
| plan.md gate | checklist.md only exists if plan.md exists |
|
|
75
|
+
| outcome.md gate | outcome.md only exists if all checklist items checked |
|
|
76
|
+
| Insights append-only | `## Insights` section only grows, never shrinks |
|