reqwise-figma-mcp: Skill for Claude Code

.claude/skills/figma-sequence/SKILL.md

figma-sequence is a skill for Claude Code from hoangpm96/reqwise-figma-mcp. It costs 56 tokens per session (2,347 once invoked), scanned A, original, MIT.

A Figma sequence diagram showing messages exchanged by systems in time order. It makes the participants, requests, responses, alternatives, and repeated exchanges visible.

In plain words
What is it for?
Use it to describe an API call sequence, service integration, authentication exchange, or other conversation between software systems.
Why use it?
It removes ambiguity from integrations and API contracts by showing exactly what is sent, when it is sent, and what comes back, including failure paths.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

This is hoangpm96/reqwise-figma-mcp's own configuration. It tells Claude Code how to work on reqwise-figma-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything reqwise-figma-mcp configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/hoangpm96/reqwise-figma-mcp/main/.claude/skills/figma-sequence/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/hoangpm96/reqwise-figma-mcp

Made for: Claude Code.

Wrote 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.

agentmods badge for figma-sequence

README.md
[![agentmods](https://agentmods.dev/badge/skills/hoangpm96/reqwise-figma-mcp/figma-sequence/github.svg)](https://agentmods.dev/skills/hoangpm96/reqwise-figma-mcp/figma-sequence)
Your own site
<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.

agentmods 80×15 button for figma-sequence

Your own site · 80×15
<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>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,347 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash d4c0222ef341, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-22, from the pricing page.

Security

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.

.claude/skills/figma-sequence/SKILL.md · 182 lines

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 messages IS 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 label that says WHAT is sent, not that something is sent. POST /contracts/{id}/sign-otp and 202 { 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

Read the full file on GitHub · 182 lines

Changes

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.

  1. 4d ago First seen · 182 lines · 56 tokens per session scan A d4c0222ef341

Subscribe to this mod's changes

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.

Related

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.

MemTensor/MemOS · 42 tokens

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…

dstackai/dstack · 80 tokens

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.

chaxus/ran · 87 tokens

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.

excalimate/excalimate · 55 tokens

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.

serac-labs/serac · 70 tokens

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.

YuDefine/nuxt-supabase-starter · 47 tokens