Sequence
Quiet, editorial chart PNGs for technical blog posts. 15 primitives, six themes, one CLI.
npx -y skills add shuakami/paperchart --skill sequenceAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Render a sequence diagram (Mermaid `sequenceDiagram` equivalent). Actor boxes along the top, dashed lifelines descending, messages drawn as horizontal arrows in time order. Supports notes spanning one or more actors, reply arrows (dashed + open head), async arrows (open head, solid line), self-calls (right-hand loop), and an accent color for a single emphasized message.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.2 KB, as published. Nobody here has run it
paperchart — sequence
Classic request-flow sequence diagram. Actors across the top, time flowing downward. Good for HTTP request flows, RPC traces, event interchanges.
When to use
- API request / response flows across services.
- RPC traces with returns.
- Explaining ordering guarantees between concurrent actors.
Input shape
{
"data": {
"actors": [
{ "id": "client", "label": "browser", "caption": "web app" },
{ "id": "edge", "label": "edge", "caption": "CDN + runtime" },
{ "id": "origin", "label": "origin", "caption": "API server" }
],
"steps": [
{ "kind": "msg", "from": "client", "to": "edge", "label": "GET /api/search" },
{ "kind": "note", "over": "edge", "text": "parse and normalize query" },
{ "kind": "msg", "from": "edge", "to": "origin", "label": "lookup(q)", "accent": true },
{ "kind": "msg", "from": "origin", "to": "edge", "label": "18 hits", "reply": true },
{ "kind": "msg", "from": "edge", "to": "client", "label": "200 OK", "reply": true }
]
}
}
Step kinds
{ "kind": "msg", "from", "to", "label?", "reply?", "async?", "accent?" }— horizontal arrow.reply: truedraws a dashed line with open arrowhead;async: truedraws a solid line with open arrowhead;accent: trueuses the theme accent color.{ "kind": "note", "over": "actorId" | [idA, idB], "text": "..." }— a note box over one actor, or spanning two.
Self-calls
from === to draws a short loop to the right of the actor's lifeline, useful
for "validate" / "score" / "retry internally" steps.
CLI
paperchart sequence -i data.json -o seq.png
paperchart sequence --defaults -o seq.png