From workshop
Walk through a construction-site directory and produce a status report of every WALL.md, PIPES.md, PANEL.md, and PLAN.md artifact found. Read-only, main-thread only — no agent involved.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workshop:inspect-siteThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Same reasoning as `/workshop:paint-wall`: this task is **pure read work**. `Glob` + `Read` from the main thread covers it completely. Spinning up an "inspector" agent would be ceremony without benefit.
Same reasoning as /workshop:paint-wall: this task is pure read work. Glob + Read from the main thread covers it completely. Spinning up an "inspector" agent would be ceremony without benefit.
Lesson: read-only, no-specialist tasks belong on the main thread. Agents earn their cost when they bring focused prompting or a custom tool scope — not when they're just doing a directory walk.
Ask the user which site directory to inspect (default ./construction-site/).
Glob the directory for:
WALL-*.mdPIPES-*.mdPANEL.mdPLAN.mdRead each file and extract the status / key fields from the frontmatter section:
location, material, status, painted_color (if present).location, material, pressure, run_type, status.Report a single table:
## Site report — ./construction-site/
| Artifact | Type | Status | Notes |
|---------------------------|--------|------------|--------------------------------|
| PLAN.md | plan | planned | bathroom, 5 steps |
| WALL-bathroom-north.md | wall | built | ladrillo, painted azul |
| WALL-bathroom-south.md | wall | built | ladrillo, unpainted |
| PIPES-bathroom.md | pipes | installed | PVC, 3 bar, supply |
| PANEL.md | panel | 3 circuits | mains + lighting + sockets |
Unpainted walls: 1
This skill is a good test case for "would I add an agent here?". The answer is no: there is no specialised knowledge, no narrow tool need, no repeated orchestration. A glob and a few reads do everything. When in doubt, start with a main-thread skill like this one and only promote to an agent if it grows.
npx claudepluginhub aitorpo/claude-code-plugin-sample --plugin workshopGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.