Skip to content
sarr-io edited this page Jun 11, 2026 · 16 revisions

Circuitry 0.6 Shapes

Zinc runs Circuitry 0.6 action-shapes. A shape is a small YAML artifact that says what input is needed, what action should happen, and what output should come back.

circuitry: "0.6"
name: search-web
about: Search the web, read sources, and return a cited answer.

takes:
  query: text

does: |
  Search for the query.
  Open relevant sources.
  Compare results.
  Return a grounded answer.

gives:
  answer: text
  sources: list

Native fields

Circuitry 0.6 owns only:

  • circuitry
  • name
  • about
  • takes
  • does
  • gives

Zinc stores the shape source, resolves takes, presents does as the run guidance, and collects gives when the run finishes.

Clone this wiki locally