From TIA Portal Automation Harness
Turn a VALIDATED TIA project-spec into the ordered, named sequence of offline build operations WITHOUT mutating anything (a dry plan). Use after spec.validate passes and before tia.scaffold — when the user asks to "plan / preview / dry-run the build", or wants to see exactly what scaffolding a spec would do and in what order. Class R: runs tia_spec_validate then tia_spec_plan, both PURE (no serve, no TIA Portal). Output: the ordered M-off steps + assumptions + warnings; nothing is applied and no gate is crossed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tia-harness:spec.planThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Transform a structured **project-spec** (the project-spec model, §13.2) into the
Transform a structured project-spec (the project-spec model, §13.2) into the
ordered sequence of offline operations that tia.scaffold would execute — without
touching the project. This is the bridge between spec.validate (is the spec legal?) and
tia.scaffold (build it): it shows the plan so a human can review it first.
It is class R. Both tools it uses — tia_spec_validate and tia_spec_plan — are
pure: they run deterministically on the spec text and never call the serve API or
open TIA. So this never mutates and never crosses a gate.
spec.validate is green and before tia.scaffold, to preview the build.tia_spec_validate.status — plan_ok or invalid (with the validation violations if invalid).steps[] — the ordered operations, each { op, method, path, body, summary }
(subnets → devices → modules → network → tag tables → tags → blocks → compile).assumptions[] — e.g. "tag/block target CLP = the first role:cpu device".warnings[] — non-blocking spec warnings.connect,
download) are intentionally not in the plan.tia_spec_validate (or run the spec.validate skill). If it
reports any error, STOP and return the violations — do not plan an invalid spec.tia_spec_plan with the spec. It returns the ordered steps +
assumptions + warnings. (It is pure — no serve.)summary, surface the
assumptions explicitly (especially the target CLP), and list any warnings. State that
tia.scaffold (with a project open) is what actually applies this, and that a bare CPU
will need the protection recipe to compile clean (see tia.scaffold/RECIPES.md).tia_spec_validate and tia_spec_plan are pure;
this skill must not call any M-off/gated tool.project.create/connect (G1) and download (G3) are never in
the plan — they require a human. The plan is offline build steps only.npx claudepluginhub renanlido/tia-harness --plugin tia-harnessGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.