Borrowing it
Nothing to install: this file belongs to hoangpm96/reqwise-figma-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/hoangpm96/reqwise-figma-mcp/main/.claude/skills/figma-sequence/SKILL.mdgit clone --depth 1 https://github.com/hoangpm96/reqwise-figma-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/hoangpm96/reqwise-figma-mcp/figma-sequence)<a href="https://agentmods.dev/skills/hoangpm96/reqwise-figma-mcp/figma-sequence"><img src="https://agentmods.dev/badge/skills/hoangpm96/reqwise-figma-mcp/figma-sequence/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/hoangpm96/reqwise-figma-mcp/figma-sequence"><img src="https://agentmods.dev/badge/skills/hoangpm96/reqwise-figma-mcp/figma-sequence.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00056 | $0.02347 |
| Opus 5 | $0.00028 | $0.01174 |
| Sonnet 5 | $0.00011 | $0.00469 |
| Haiku 4.5 | $0.00006 | $0.00235 |
Grade A, and why
figma-sequence scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 182 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/figma-sequence — What is sent, and in what order
Read ../reqwise-diagram-rules.md first — connection gate, the four levels of correct, the
findings loop, frame placement, verification. This file carries only what is specific to a
sequence diagram.
Goal
Pin down an exchange between systems. This is the diagram for the part of an integration spec that is vague until someone draws it: what is sent, in which order, and what comes back — including on the unhappy path.
Output: one Figma frame Sequence · <title>, plus the contract questions the diagram exposed.
Constraints
Hard rules — never violate
- The order of
messagesIS the time order. There is no timestamp field and no sorting. The array is the diagram. Reordering the array reorders the picture. - Every message has an
id— fragments reference them, and findings name them. - Every message has a
labelthat says WHAT is sent, not that something is sent.POST /contracts/{id}/sign-otpand202 { otpSentAt }, not "gọi API" and "trả về". This is the field people argue about six months later; it is why the diagram exists. - Order the participants so the exchange mostly flows one way. Arrows crossing back and forth across five columns is a layout problem you fix by reordering the array, not by fiddling with the drawing.
- Never invent a reply. If the spec does not say what comes back, that is the finding.
Write it in the compact form
text is mermaid-shaped on purpose — that is the sequence notation everyone already knows —
and it drops the two things that were pure overhead in the array form: message ids, and the
messages: ["m3","m4"] list inside each fragment. A block's extent is simply where it is
written.
actor user "User"
participant api "Booking API" / booking-svc
db store "Bookings DB" / postgres
external psp "Payment Gateway"
user ->> api: POST /holds { seatIds } # ->> a call, and it opens an activation bar
api ->> store: INSERT booking_seats
store -->> api: ok # -->> a reply, and it closes the bar
alt seats free
api -->> user: 201 { bookingId }
note: hold lasts 10 minutes
else already booked
api -->> user: 409 seats_unavailable !err # !err colours the failure path
end
api --) psp: capture(bookingId) # --) fire and forget
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 182 lines · 56 tokens per session scan A d4c0222ef341
figma-sequence is a skill published in the GitHub repository hoangpm96/reqwise-figma-mcp (65 stars, last pushed 3d ago), licensed MIT. It adds 56 tokens to every session and 2,347 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-18.
Other skills, from other repositories
browserwing-executor
Control browser automation through HTTP API. Supports page navigation, element interaction (click, type, select), data extraction, accessibility snapshot analysis, screenshot, JavaScript execution, and batch operations.
dstack-prototyping
Use with the dstack skill for model-serving work when the image, serving command, resources, backend/fleet choice, or service behavior is not proven. Guides task-first prototyping on real hardware, choosing fleets/backends that can reuse idle instances and caches, checking vLLM/SGLang sources, and verifying the final…
ranui
Use when building UI with the ranui web-component library (elements like , , , , ) or its fluent DOM builder (ranui/builder — Div/View/Span/signal/createEffect/EventManager). Covers the import map, the full element inventory, conventions, accessibility, and where the authoritative API reference lives.
sequence-diagrams
Create animated sequence diagrams showing interactions between participants using the Excalimate MCP server. Use when asked to visualize API call sequences, message flows, protocol handshakes, request/response patterns, authentication flows, or communication between services, users, and systems.
form-list-layout
Configure what a form and a list look like — sysuiform, sysuisection and sysuielement for forms; sysuilist, sysuilistelement and sysuirelatedlist for lists; sysfilter for saved filters. Views, why a field must exist in the dictionary first, and what snowcreatemenu really writes.
reka-ui
Use when building with Reka UI (headless Vue components) - provides component API, accessibility patterns, composition (asChild), controlled/uncontrolled state, virtualization, and styling integration. Formerly Radix Vue.