@zalom/plastic 1.0.0-alpha.5 → 1.0.0-alpha.7
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/package.json +1 -1
- package/scripts/doctor.rb +888 -0
- package/scripts/hook-session-start +8 -1
- package/scripts/install.rb +1 -0
- package/skills/_active-intent-gate.md +26 -0
- package/skills/brainstorming/SKILL.md +143 -0
- package/skills/doctor/SKILL.md +112 -0
- package/skills/doctor/report.md +96 -0
- package/skills/research/SKILL.md +114 -0
- package/skills/update/SKILL.md +10 -2
- package/skills/writing-plans/SKILL.md +183 -0
- package/templates/agents.md +16 -0
|
@@ -172,7 +172,14 @@ exit 0 if all_active.empty? && stale.empty? && all_future.empty? && active_depre
|
|
|
172
172
|
parts = []
|
|
173
173
|
|
|
174
174
|
if current_project
|
|
175
|
-
|
|
175
|
+
slug = current_project["slug"]
|
|
176
|
+
banner = "Project: #{slug} | Store: ~/.plastic/projects/#{slug}/store/"
|
|
177
|
+
if project_active.any? && project_active.first =~ /\[([^\]]+)\].*store\/([\w-]+)\//
|
|
178
|
+
intent_name, dir_name = $1, $2
|
|
179
|
+
intent_id = dir_name.split("--").first
|
|
180
|
+
banner += "\nActive: [#{intent_id} — #{intent_name}] | Artifacts → store/#{dir_name}/"
|
|
181
|
+
end
|
|
182
|
+
parts << banner + "\n"
|
|
176
183
|
else
|
|
177
184
|
parts << "PLASTIC — Global store loaded from ~/.plastic/\n"
|
|
178
185
|
end
|
package/scripts/install.rb
CHANGED
|
@@ -153,6 +153,7 @@ def distribute(mode)
|
|
|
153
153
|
"scripts/hook-future-intent-check" => "scripts/hook-future-intent-check",
|
|
154
154
|
"scripts/hook-gate-check" => "scripts/hook-gate-check",
|
|
155
155
|
"scripts/lib/bridge.rb" => "scripts/lib/bridge.rb",
|
|
156
|
+
"scripts/doctor.rb" => "scripts/doctor.rb",
|
|
156
157
|
}
|
|
157
158
|
|
|
158
159
|
core_files.each do |src, dest|
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
## Active Intent Gate
|
|
2
|
+
|
|
3
|
+
Before proceeding, resolve the active intent:
|
|
4
|
+
|
|
5
|
+
1. **Detect store:**
|
|
6
|
+
- Read `~/.plastic/projects.yml`
|
|
7
|
+
- Match CWD against registered project paths
|
|
8
|
+
- If match → project store at `~/.plastic/projects/{slug}/store/`
|
|
9
|
+
- If no match → global store at `~/.plastic/store/`
|
|
10
|
+
|
|
11
|
+
2. **Find active intent:**
|
|
12
|
+
- Read `INDEX.md` from the detected store
|
|
13
|
+
- Look under `## Active` for intent entries
|
|
14
|
+
- If exactly one active intent → use it
|
|
15
|
+
- If multiple active intents → ask user which one
|
|
16
|
+
- If no active intent → refuse: "No active intent. Create one first with /plastic:creating-intent"
|
|
17
|
+
|
|
18
|
+
3. **Resolve paths:**
|
|
19
|
+
- Intent directory: `{store}/store/{id}--{slug}/`
|
|
20
|
+
- Spec: `{intent_dir}/spec.md`
|
|
21
|
+
- Plan: `{intent_dir}/plan.md`
|
|
22
|
+
- Checklist: `{intent_dir}/checklist.md`
|
|
23
|
+
- Resources: `{intent_dir}/resources/`
|
|
24
|
+
- Outcome: `{intent_dir}/outcome.md`
|
|
25
|
+
|
|
26
|
+
All lifecycle artifacts MUST be written to the intent directory. Never write to `docs/superpowers/specs/`, `docs/superpowers/plans/`, or any other external path.
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: plastic:brainstorming
|
|
3
|
+
description: "Explore intent requirements and design before implementation. Produces spec.md in the active intent directory."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Brainstorming Ideas Into Designs
|
|
7
|
+
|
|
8
|
+
Help turn ideas into fully formed designs and specs through natural collaborative dialogue.
|
|
9
|
+
|
|
10
|
+
Announce: "I'm using the brainstorming skill to explore the design for intent {id} — {name}."
|
|
11
|
+
|
|
12
|
+
Start by understanding the current project context, then ask questions one at a time to refine the idea. Once you understand what you're building, present the design and get user approval.
|
|
13
|
+
|
|
14
|
+
<HARD-GATE>
|
|
15
|
+
Do NOT invoke any implementation skill, write any code, scaffold any project, or take any implementation action until you have presented a design and the user has approved it. This applies to EVERY project regardless of perceived simplicity.
|
|
16
|
+
</HARD-GATE>
|
|
17
|
+
|
|
18
|
+
## Active Intent Gate
|
|
19
|
+
|
|
20
|
+
Before proceeding, resolve the active intent:
|
|
21
|
+
|
|
22
|
+
1. **Detect store:** Read `~/.plastic/projects.yml`, match CWD against registered project paths. If match → project store at `~/.plastic/projects/{slug}/store/`. If no match → global store at `~/.plastic/store/`.
|
|
23
|
+
2. **Find active intent:** Read `INDEX.md` from the detected store. Look under `## Active`. If exactly one → use it. If multiple → ask which. If none → refuse: "No active intent. Create one first with /plastic:creating-intent"
|
|
24
|
+
3. **Resolve intent directory:** `{store}/store/{id}--{slug}/`
|
|
25
|
+
|
|
26
|
+
All artifacts go to the intent directory. Never write to external paths.
|
|
27
|
+
|
|
28
|
+
## Anti-Pattern: "This Is Too Simple To Need A Design"
|
|
29
|
+
|
|
30
|
+
Every project goes through this process. A todo list, a single-function utility, a config change — all of them. "Simple" projects are where unexamined assumptions cause the most wasted work. The design can be short (a few sentences for truly simple projects), but you MUST present it and get approval.
|
|
31
|
+
|
|
32
|
+
## Checklist
|
|
33
|
+
|
|
34
|
+
You MUST create a task for each of these items and complete them in order:
|
|
35
|
+
|
|
36
|
+
1. **Explore project context** — check files, docs, recent commits, read active intent
|
|
37
|
+
2. **Ask clarifying questions** — one at a time, understand purpose/constraints/success criteria
|
|
38
|
+
3. **Propose 2-3 approaches** — with trade-offs and your recommendation
|
|
39
|
+
4. **Present design** — in sections scaled to their complexity, get user approval after each section
|
|
40
|
+
5. **Write spec** — save to `{intent_dir}/spec.md` and commit to store repo
|
|
41
|
+
6. **Spec self-review** — placeholder scan, consistency, scope, ambiguity
|
|
42
|
+
7. **User reviews written spec** — ask user to review before proceeding
|
|
43
|
+
8. **Transition to planning** — invoke `plastic:writing-plans`
|
|
44
|
+
|
|
45
|
+
## Process Flow
|
|
46
|
+
|
|
47
|
+
```dot
|
|
48
|
+
digraph brainstorming {
|
|
49
|
+
"Explore project context" [shape=box];
|
|
50
|
+
"Ask clarifying questions" [shape=box];
|
|
51
|
+
"Propose 2-3 approaches" [shape=box];
|
|
52
|
+
"Present design sections" [shape=box];
|
|
53
|
+
"User approves design?" [shape=diamond];
|
|
54
|
+
"Write spec" [shape=box];
|
|
55
|
+
"Spec self-review\n(fix inline)" [shape=box];
|
|
56
|
+
"User reviews spec?" [shape=diamond];
|
|
57
|
+
"Invoke plastic:writing-plans" [shape=doublecircle];
|
|
58
|
+
|
|
59
|
+
"Explore project context" -> "Ask clarifying questions";
|
|
60
|
+
"Ask clarifying questions" -> "Propose 2-3 approaches";
|
|
61
|
+
"Propose 2-3 approaches" -> "Present design sections";
|
|
62
|
+
"Present design sections" -> "User approves design?";
|
|
63
|
+
"User approves design?" -> "Present design sections" [label="no, revise"];
|
|
64
|
+
"User approves design?" -> "Write spec" [label="yes"];
|
|
65
|
+
"Write spec" -> "Spec self-review\n(fix inline)";
|
|
66
|
+
"Spec self-review\n(fix inline)" -> "User reviews spec?";
|
|
67
|
+
"User reviews spec?" -> "Write spec" [label="changes requested"];
|
|
68
|
+
"User reviews spec?" -> "Invoke plastic:writing-plans" [label="approved"];
|
|
69
|
+
}
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
**The terminal state is invoking `plastic:writing-plans`.** Do NOT invoke any other implementation skill. The ONLY skill you invoke after brainstorming is `plastic:writing-plans`.
|
|
73
|
+
|
|
74
|
+
## The Process
|
|
75
|
+
|
|
76
|
+
**Understanding the idea:**
|
|
77
|
+
- Check out the current project state first (files, docs, recent commits)
|
|
78
|
+
- Before asking detailed questions, assess scope: if the request describes multiple independent subsystems (e.g., "build a platform with chat, file storage, billing, and analytics"), flag this immediately. Don't spend questions refining details of a project that needs to be decomposed first.
|
|
79
|
+
- If the project is too large for a single spec, help the user decompose into sub-projects: what are the independent pieces, how do they relate, what order should they be built? Then brainstorm the first sub-project through the normal design flow. Each sub-project gets its own spec → plan → implementation cycle.
|
|
80
|
+
- For appropriately-scoped projects, ask questions one at a time to refine the idea
|
|
81
|
+
- Prefer multiple choice questions when possible, but open-ended is fine too
|
|
82
|
+
- Only one question per message - if a topic needs more exploration, break it into multiple questions
|
|
83
|
+
- Focus on understanding: purpose, constraints, success criteria
|
|
84
|
+
|
|
85
|
+
**Exploring approaches:**
|
|
86
|
+
- Propose 2-3 different approaches with trade-offs
|
|
87
|
+
- Present options conversationally with your recommendation and reasoning
|
|
88
|
+
- Lead with your recommended option and explain why
|
|
89
|
+
|
|
90
|
+
**Presenting the design:**
|
|
91
|
+
- Once you believe you understand what you're building, present the design
|
|
92
|
+
- Scale each section to its complexity: a few sentences if straightforward, up to 200-300 words if nuanced
|
|
93
|
+
- Ask after each section whether it looks right so far
|
|
94
|
+
- Cover: architecture, components, data flow, error handling, testing
|
|
95
|
+
- Be ready to go back and clarify if something doesn't make sense
|
|
96
|
+
|
|
97
|
+
**Design for isolation and clarity:**
|
|
98
|
+
- Break the system into smaller units that each have one clear purpose, communicate through well-defined interfaces, and can be understood and tested independently
|
|
99
|
+
- For each unit, you should be able to answer: what does it do, how do you use it, and what does it depend on?
|
|
100
|
+
- Can someone understand what a unit does without reading its internals? Can you change the internals without breaking consumers? If not, the boundaries need work.
|
|
101
|
+
- Smaller, well-bounded units are also easier for you to work with - you reason better about code you can hold in context at once, and your edits are more reliable when files are focused. When a file grows large, that's often a signal that it's doing too much.
|
|
102
|
+
|
|
103
|
+
**Working in existing codebases:**
|
|
104
|
+
- Explore the current structure before proposing changes. Follow existing patterns.
|
|
105
|
+
- Where existing code has problems that affect the work (e.g., a file that's grown too large, unclear boundaries, tangled responsibilities), include targeted improvements as part of the design - the way a good developer improves code they're working in.
|
|
106
|
+
- Don't propose unrelated refactoring. Stay focused on what serves the current goal.
|
|
107
|
+
|
|
108
|
+
## After the Design
|
|
109
|
+
**Documentation:**
|
|
110
|
+
- Write the validated design (spec) to `{intent_dir}/spec.md`
|
|
111
|
+
- Use elements-of-style:writing-clearly-and-concisely skill if available
|
|
112
|
+
- Commit to the store repo:
|
|
113
|
+
```
|
|
114
|
+
cd {store_root} && git add . && git commit -m "docs: spec for intent {id} — {name}"
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
**Spec Self-Review:**
|
|
118
|
+
After writing the spec document, look at it with fresh eyes:
|
|
119
|
+
1. **Placeholder scan:** Any "TBD", "TODO", incomplete sections, or vague requirements? Fix them.
|
|
120
|
+
2. **Internal consistency:** Do any sections contradict each other? Does the architecture match the feature descriptions?
|
|
121
|
+
3. **Scope check:** Is this focused enough for a single implementation plan, or does it need decomposition?
|
|
122
|
+
4. **Ambiguity check:** Could any requirement be interpreted two different ways? If so, pick one and make it explicit.
|
|
123
|
+
|
|
124
|
+
Fix any issues inline. No need to re-review — just fix and move on.
|
|
125
|
+
|
|
126
|
+
**User Review Gate:**
|
|
127
|
+
After the spec review loop passes, ask the user to review the written spec before proceeding:
|
|
128
|
+
> "Spec written and committed to `{intent_dir}/spec.md`. Please review it and let me know if you want to make any changes before we start writing out the implementation plan."
|
|
129
|
+
|
|
130
|
+
Wait for the user's response. If they request changes, make them and re-run the spec review loop. Only proceed once the user approves.
|
|
131
|
+
|
|
132
|
+
**Implementation:**
|
|
133
|
+
- Invoke `plastic:writing-plans` to create the implementation plan
|
|
134
|
+
- Do NOT invoke any other skill. `plastic:writing-plans` is the next step.
|
|
135
|
+
|
|
136
|
+
## Key Principles
|
|
137
|
+
|
|
138
|
+
- **One question at a time** - Don't overwhelm with multiple questions
|
|
139
|
+
- **Multiple choice preferred** - Easier to answer than open-ended when possible
|
|
140
|
+
- **YAGNI ruthlessly** - Remove unnecessary features from all designs
|
|
141
|
+
- **Explore alternatives** - Always propose 2-3 approaches before settling
|
|
142
|
+
- **Incremental validation** - Present design, get approval before moving on
|
|
143
|
+
- **Be flexible** - Go back and clarify when something doesn't make sense
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 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.
|
|
@@ -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,114 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: plastic:research
|
|
3
|
+
description: "Research a topic for the active intent. Agent decides shallow vs deep based on scope. Produces reports in the intent's resources/ directory."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Research
|
|
7
|
+
|
|
8
|
+
Investigate a topic related to the active intent. Choose the right depth, produce a cited report.
|
|
9
|
+
|
|
10
|
+
**Announce at start:** "I'm researching [topic] for intent {id} — {name}."
|
|
11
|
+
|
|
12
|
+
## Active Intent Gate
|
|
13
|
+
|
|
14
|
+
Before proceeding, resolve the active intent:
|
|
15
|
+
|
|
16
|
+
1. **Detect store:** Read `~/.plastic/projects.yml`, match CWD against registered project paths. If match → project store at `~/.plastic/projects/{slug}/store/`. If no match → global store at `~/.plastic/store/`.
|
|
17
|
+
2. **Find active intent:** Read `INDEX.md` from the detected store. Look under `## Active`. If exactly one → use it. If multiple → ask which. If none → refuse: "No active intent. Create one first with /plastic:creating-intent"
|
|
18
|
+
3. **Resolve intent directory:** `{store}/store/{id}--{slug}/`
|
|
19
|
+
|
|
20
|
+
## Depth Decision
|
|
21
|
+
|
|
22
|
+
Before starting research, assess the question against these criteria:
|
|
23
|
+
|
|
24
|
+
### Shallow Research
|
|
25
|
+
Use when:
|
|
26
|
+
- The question is narrow and factual (e.g., "what's the API for X?", "does library Y support Z?")
|
|
27
|
+
- A single source or quick search is sufficient
|
|
28
|
+
- The answer is likely well-documented
|
|
29
|
+
- Time budget: minutes, not hours
|
|
30
|
+
|
|
31
|
+
**Method:** Direct web search + codebase exploration + single-pass synthesis.
|
|
32
|
+
|
|
33
|
+
### Deep Research
|
|
34
|
+
Use when:
|
|
35
|
+
- The question needs multiple sources and cross-verification
|
|
36
|
+
- It's a landscape survey, competitive analysis, or architectural decision
|
|
37
|
+
- The user explicitly asks for thorough/exhaustive/comprehensive research
|
|
38
|
+
- Conflicting information exists and needs adversarial verification
|
|
39
|
+
- Time budget: significant, user expects depth
|
|
40
|
+
|
|
41
|
+
**Method:** Delegate to the native agent's deep research capability.
|
|
42
|
+
- On Claude Code: invoke the `deep-research` skill via `Skill` tool
|
|
43
|
+
- On other agents: use the agent's equivalent (see intent 7 for cross-agent mapping)
|
|
44
|
+
- If no native deep research exists: fan out multiple web searches manually, cross-reference, synthesize
|
|
45
|
+
|
|
46
|
+
### Decision Heuristic
|
|
47
|
+
|
|
48
|
+
Ask yourself:
|
|
49
|
+
1. Can I answer this with 1-2 searches? → **Shallow**
|
|
50
|
+
2. Do I need to compare 3+ sources? → **Deep**
|
|
51
|
+
3. Is the user asking for a survey or landscape view? → **Deep**
|
|
52
|
+
4. Am I fact-checking a specific claim? → **Shallow**
|
|
53
|
+
5. Could wrong information here cause architectural mistakes? → **Deep**
|
|
54
|
+
|
|
55
|
+
Announce your choice: "This needs [shallow/deep] research because [reason]."
|
|
56
|
+
|
|
57
|
+
## Output
|
|
58
|
+
|
|
59
|
+
### File Location
|
|
60
|
+
`{intent_dir}/resources/{type}--{topic}.md`
|
|
61
|
+
|
|
62
|
+
Create the resources/ directory if it doesn't exist.
|
|
63
|
+
|
|
64
|
+
### Naming Convention
|
|
65
|
+
- `{type}` — one of: `deep-research`, `competitive-analysis`, `technical-spike`, `reference`, `landscape-survey`
|
|
66
|
+
- `{topic}` — kebab-case description of the research subject
|
|
67
|
+
|
|
68
|
+
Examples:
|
|
69
|
+
- `deep-research--installer-patterns.md`
|
|
70
|
+
- `technical-spike--sqlite-vec-performance.md`
|
|
71
|
+
- `reference--claude-code-hooks-api.md`
|
|
72
|
+
- `landscape-survey--ai-agent-ecosystem.md`
|
|
73
|
+
|
|
74
|
+
### Report Structure
|
|
75
|
+
|
|
76
|
+
```markdown
|
|
77
|
+
# {Type}: {Topic}
|
|
78
|
+
|
|
79
|
+
**Intent:** {id} — {name}
|
|
80
|
+
**Depth:** shallow | deep
|
|
81
|
+
**Date:** YYYY-MM-DD
|
|
82
|
+
|
|
83
|
+
## Summary
|
|
84
|
+
[2-3 sentence executive summary]
|
|
85
|
+
|
|
86
|
+
## Findings
|
|
87
|
+
|
|
88
|
+
### [Finding 1 title]
|
|
89
|
+
[Details with inline citations where applicable]
|
|
90
|
+
|
|
91
|
+
### [Finding 2 title]
|
|
92
|
+
...
|
|
93
|
+
|
|
94
|
+
## Sources
|
|
95
|
+
- [Source 1 title](url) — what was learned from this source
|
|
96
|
+
- [Source 2 title](url) — ...
|
|
97
|
+
|
|
98
|
+
## Relevance to Intent
|
|
99
|
+
[How these findings affect the active intent's decisions or design]
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## After Research
|
|
103
|
+
|
|
104
|
+
1. Commit to store repo:
|
|
105
|
+
```
|
|
106
|
+
cd {store_root} && git add . && git commit -m "research: {type} — {topic} (intent {id})"
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
2. Log in intent's `## Insights`:
|
|
110
|
+
```
|
|
111
|
+
- Research: {type} — {topic}. Key finding: [one sentence]. See resources/{filename}.
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
3. Research does NOT chain to any other skill. It's a side quest — the user decides what to do with the findings.
|
package/skills/update/SKILL.md
CHANGED
|
@@ -54,13 +54,21 @@ Key changes in this version:
|
|
|
54
54
|
Recommendation: run /clear for a clean session with all new conventions loaded.
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
### Step 4:
|
|
57
|
+
### Step 4: Run health check
|
|
58
|
+
|
|
59
|
+
Invoke `plastic:doctor` to verify the installation is healthy after the update.
|
|
60
|
+
|
|
61
|
+
If all checks pass, show: **"Health check: all clear."**
|
|
62
|
+
|
|
63
|
+
If issues are found, show the full doctor report and offer to fix any fixable items.
|
|
64
|
+
|
|
65
|
+
### Step 5: Commit
|
|
58
66
|
|
|
59
67
|
```bash
|
|
60
68
|
cd ~/.plastic && git add PLASTIC.md scripts/ AGENTS.md VERSION 2>/dev/null && git commit -m "chore: update Plastic core files" --allow-empty
|
|
61
69
|
```
|
|
62
70
|
|
|
63
|
-
### Step
|
|
71
|
+
### Step 6: Clear update cache
|
|
64
72
|
|
|
65
73
|
```bash
|
|
66
74
|
rm -f ~/.plastic/.cache/update-check.json
|