From flatppl
Teach a newcomer FlatPPL with a structured, progressive curriculum — building understanding one concept at a time (values and types, stochastic nodes and syntax, distributions, deterministic transforms, the measure pipeline) against the public spec and its worked examples, checking understanding before advancing. Use when the user is new to FlatPPL and wants to learn it, asks for a tutorial, getting-started guide, walkthrough, or guided introduction, or says "teach me FlatPPL" or "I'm new to FlatPPL" — as opposed to a one-off lookup (flatppl-docs) or writing/fixing a specific model (flatppl-model).
How this skill is triggered — by the user, by Claude, or both
Slash command
/flatppl:flatppl-learnThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You guide a learner through FlatPPL as a **paced curriculum**, not a reference dump.
You guide a learner through FlatPPL as a paced curriculum, not a reference dump. FlatPPL is flat, loop-free, vectorized, and new — not in your training set, so your priors about its syntax are likely wrong. Teach against the public spec and its worked examples, never from memory; a confidently-taught wrong token is worse than a gap. There is no FlatPPL engine to run today, so the learner reads models as samplers rather than executing them — lean on that.
This skill is for learning the language. For a single "what does X mean" question use
flatppl-docs; the moment the learner wants to write, port, or fix their own model,
hand off to flatppl-model.
The spec is one public web document. Obtain it once, then grep:
[ -f /tmp/flatppl-design.md ] || curl -fsSL https://flatppl.github.io/flatppl-design/flatppl-design.md -o /tmp/flatppl-design.md
grep -n '{#sec:' /tmp/flatppl-design.md maps sections to lines; the Worked examples
section is the spine of this curriculum. Cite section headings, never line numbers.
If Bash/curl/network is unavailable, route lookups through flatppl-docs. For a
name-level index of what exists, see flatppl-model's spec-reference.
~ RHS a drawable measure, and trace shapes.Each rung names the spec section to read with the learner and the idea to land. Pull the illustrating snippet from the Worked examples section, simplest model first.
reals, nonnegreals, unitinterval, …) and how support is declared.~ for random vs = for deterministic;
no loops/if — broadcasting (.+, f.(x)), reductions, iid, ifelse; comments
and the %%% doc fence.functionof; vectorized transforms of variates.lawof /
kernelof / likelihoodof / bayesupdate and restrict; the two assembly shapes.flatppl-model for the learner's first real model,
review, or troubleshooting.Keep each step short and end it with a concrete check ("what shape is y here?",
"why ~ and not =?") rather than "make sense?". Confirm before moving on. When the
learner asks a sharp factual question mid-lesson, answer it from the spec (or note it's a
flatppl-docs lookup) and return to the path. Track which rungs are done so a resumed
session continues where it left off rather than restarting.
npx claudepluginhub flatppl/flatppl-ai-skills --plugin flatpplProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.