How Faebryk's TypeGraph works (GraphView + Zig edges), how to traverse/resolve references, and how FabLL types/traits map onto edge types. Use when working with TypeGraph traversal, edge types, or building type-aware queries.
cd ~/.claude/skills
git clone https://github.com/atopile/atopile.git atopile mkdir -p ~/.claude/skills/faebryk
curl -fsSL https://raw.githubusercontent.com/atopile/atopile/HEAD/.claude/skills/faebryk/SKILL.md \
-o ~/.claude/skills/faebryk/SKILL.md The Faebryk core here is the TypeGraph + edge types implemented in Zig and exposed to Python via faebryk.core.faebrykpy.
Source-of-truth for API + behavior:
src/faebryk/core/faebrykpy.py (Python-facing wrapper + type-safe EdgeTrait.traverse)src/faebryk/core/zig/gen/faebryk/typegraph.pyi (public stubbed API surface)src/faebryk/core/zig/src/faebryk/* (Zig implementation)import faebryk.core.faebrykpy as fbrk
import faebryk.core.graph as graph
g = graph.GraphView.create()
tg = fbrk.TypeGraph.create(g=g)
src/faebryk/core/faebrykpy.py (re-exports + EdgeTraversal + type-safe EdgeTrait.traverse)src/faebryk/core/zig/gen/faebryk/typegraph.pyi (TypeGraph stub)faebrykpy.py):
EdgeComposition (parent/child structure)EdgeTrait / Trait (trait attachment)EdgePointer (references)EdgeInterfaceConnection (interface connections)EdgeOperand (solver operand wiring)EdgeType / EdgeNext (type graph plumbing)Linker (used by compiler/linking stages)src/faebryk/core/node.py (binds Python classes into the TypeGraph; uses composition/trait edges)src/atopile/compiler/* (creates and links TypeGraphs)src/faebryk/core/solver/* (operand edges and instance traversal)src/atopile/build_steps.py (visits type/instance edges for PCB/layout features)TypeGraph is created against a GraphView:
import faebryk.core.graph as graph
import faebryk.core.faebrykpy as fbrk
g = graph.GraphView.create()
tg = fbrk.TypeGraph.create(g=g)
TypeGraph.ensure_child_reference(..., path=[...]) uses EdgeTraversal items to walk references through the type graph.src/faebryk/core/zig/src/faebryk/* (edges, typegraph internals).ato dev compile (imports faebryk.core.zig).src/faebryk/core/faebrykpy.py (example: type-safe EdgeTrait.traverse).ato dev test --llm test/compiler/test_typegraph.py -qato dev test --llm test/compiler/test_runtime.py -qato dev test --llm test/core/zig/test_interface_pathfinder.py -qfaebryk.core.faebrykpy (so callers get Python helpers, not just raw generated types).EdgeTrait.traverse(trait_type=SomeTrait) over stringly-typed trait_type_name=....Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Build, debug, and optimize Claude API / Anthropic SDK apps. Apps built with this skill should include prompt caching. Also handles migrating existing Claude API code between Claude model versions (4.5 → 4.6, 4.6 → 4.7, retired-model replacements). TRIGGER when: code imports `anthropic`/`@anthropic-ai/sdk`; user asks for the Claude API, Anthropic SDK, or Managed Agents; user adds/modifies/tunes a C
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like "make me a GIF of X doing Y for Slack.