⏳ This skill is pending AI review.
Scores will appear once the review pipeline completes.
make-trace
Turn any source that describes how a kind of task gets done (a SKILL.md, a chat log, a runbook, plain prose) into a runnable Morph trace. Lift it into a DAG, write a contract per step, place inputs, and drive the full run lifecycle to verify it. Use whenever someone wants to make a trace from a source.
// RATINGS
// README
Flowtrace
Run your agent's work as steps you can follow, check, and reuse, instead of a stream of text that buries you and then disappears.
Works with the agent you already use: Claude Code, Codex, Cursor.
What it does · Get started · Examples · Docs
English · 简体中文
⭐ If Flowtrace looks useful, star it (button's top-right) — it's how we decide what to keep building in the open.
Real work with an agent happens as a stream of text. You run a skill and it does the whole task in one pass, or you go back and forth in a chat that keeps growing. Either way it piles up faster than you can follow, and once it is done you are left with a wall of messages.
For a quick question that is fine. For a buy or sell call, a due diligence memo, a security gate, anything you would actually need to verify or run again, it is a problem:
- It is too much to follow. The thread grows longer than you can hold, and you lose track of what was decided and why.
- You cannot check it. A confident wrong answer looks exactly like a right one.
- You cannot steer it. One bad assumption in the middle means redoing the whole thing and hoping the good parts survive.
- It does not last. Every session is a cold start, and the good ones evaporate into scrollback.
Flowtrace runs that same work as a trace: a flow of steps the agent moves through one at a time, each leaving its output on disk. Here is one, a buy or sell decision that ends in a fixed-format, citable PDF:
What it does
Same skills, same agent. Running that work as a trace is what changes:
Transparent. The work is a flow of steps you take in at a glance, not a thread you scroll. Each step's output is a file you open, so the intermediate work is right there instead of buried in messages.
Grounded. Every result points back to the files it came from, so you verify instead of trust.
Steerable. Fix one step and only what depends on it re-runs. The rest stays put.
Traceable. The whole run is files and git, so it does not vanish when you close the tab. Stop and resume anytime, hand it to a teammate, read the full history.
Reusable. A finished task becomes a trace you run again on new input. The method is reused, not rebuilt.
Evolving. The trace gets better the more it runs. When a step misses its bar, the next version switches to a method that clears it, and the version that passes is the one that sticks.
Structured reading. A trace exposes the work as a graph of files, not a linear transcript. The agent reads it by structure and on demand, loading a step's contract, inputs, and outputs only while working on it and following explicit dependencies rather than carrying the whole history. This bounds working context, reduces drift, and yields a representation people and agents can both inspect and extend.
You do not start from scratch. A skill, a long session, a plan, a finished run: run any of them as a trace and you get the same steps you can follow, check, and run again. Open any one to read it full size.
Not every task needs this. A quick one off, just chat. Flowtrace earns its place when the result matters enough to verify, or when you will run the task again.
Get started
The fast path is to hand the repo to an agent. Point a coding agent (Claude Code, Codex, Cursor) at this folder and say:
"Install Flowtrace and run the tailored-resume example."
It installs the CLI, builds a real trace at ~/traces/tailored-resume/, and opens the web view at http://localhost:3000, where the flow lights up step by step.
Two ways to get a trace:
-
Try a reference. Each example ships as a builder that creates a real trace folder and walks one full run.
bash scripts/examples/tailored-resume/build.sh # → ~/traces/tailored-resume/ flowtrace serve # → http://local
// HOW IT'S BUILT
KEY FILES