From workshop
Build a wall in the chosen construction-site directory. Delegates to the `bricklayer` agent.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workshop:build-wallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill exists to demonstrate the **skill → agent** delegation pattern. The user invokes `/workshop:build-wall`, and this file's only job is to hand the request to the `bricklayer` agent with the right parameters. The skill body does not lay any bricks itself.
This skill exists to demonstrate the skill → agent delegation pattern. The user invokes /workshop:build-wall, and this file's only job is to hand the request to the bricklayer agent with the right parameters. The skill body does not lay any bricks itself.
The reverse pattern (skill body inline, no agent) is shown in /workshop:paint-wall. Compare the two side by side — they are the central teaching contrast of this plugin.
Parse the user's request for:
3m x 2.5m)ladrillo)./construction-site/)Invoke the bricklayer agent with a sub-prompt like:
bricklayer, please build a wall.
site: <site>
location: <location>
dimensions: <w> x <h>
material: <material>
Relay the agent's report back to the user. Do not summarise — pass through the agent's path + spec verbatim so the user can see exactly what was produced.
WALL-*.md yourself. That is the bricklayer's job.plumber or electrician from this skill — they have their own skills (/workshop:install-pipes, /workshop:wire-circuit)./workshop:paint-wall if they want that.Notice this skill is roughly ten lines of real instructions. That is correct — a skill that wraps a single agent should be small. Its purpose is to give the user a stable slash-command entry point and to standardise the parameters passed to the agent. The agent file (agents/bricklayer.md) holds the heavy procedural detail.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub aitorpo/claude-code-plugin-sample --plugin workshop