mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 13:43:26 +08:00
docs: add skill-stocktake agent invocation example
This commit is contained in:
committed by
Affaan Mustafa
parent
02d754ba67
commit
0c2954565d
@@ -74,7 +74,24 @@ Scanning:
|
|||||||
|
|
||||||
### Phase 2 — Quality Evaluation
|
### Phase 2 — Quality Evaluation
|
||||||
|
|
||||||
Launch an Agent tool subagent (**general-purpose agent**) with the full inventory and checklist.
|
Launch an Agent tool subagent (**general-purpose agent**) with the full inventory and checklist:
|
||||||
|
|
||||||
|
```text
|
||||||
|
Agent(
|
||||||
|
subagent_type="general-purpose",
|
||||||
|
prompt="
|
||||||
|
Evaluate the following skill inventory against the checklist.
|
||||||
|
|
||||||
|
[INVENTORY]
|
||||||
|
|
||||||
|
[CHECKLIST]
|
||||||
|
|
||||||
|
Return JSON for each skill:
|
||||||
|
{ \"verdict\": \"Keep\"|\"Improve\"|\"Update\"|\"Retire\"|\"Merge into [X]\", \"reason\": \"...\" }
|
||||||
|
"
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
The subagent reads each skill, applies the checklist, and returns per-skill JSON:
|
The subagent reads each skill, applies the checklist, and returns per-skill JSON:
|
||||||
|
|
||||||
`{ "verdict": "Keep"|"Improve"|"Update"|"Retire"|"Merge into [X]", "reason": "..." }`
|
`{ "verdict": "Keep"|"Improve"|"Update"|"Retire"|"Merge into [X]", "reason": "..." }`
|
||||||
|
|||||||
Reference in New Issue
Block a user