Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Flowcharts are composed of **nodes** (geometric shapes) and **edges** (arrows or lines). The Mermaid code defines how nodes and edges are made and accommodates different arrow types, multi-directional arrows, and any linking to and from subgraphs.
.claude/skills/aiskillstore-mermaid-flowchart/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 1721% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 444% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 356% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 131% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 1313% | 0% |
Flowcharts are composed of nodes (geometric shapes) and edges (arrows or lines). The Mermaid code defines how nodes and edges are made and accommodates different arrow types, multi-directional arrows, and any linking to and from subgraphs.
warningIf you are using the word "end" in a Flowchart node, capitalize the entire word or any of the letters (e.g., "End" or "END"), or apply this [workaround](https://github.com/mermaid-js/mermaid/issues/1444#issuecomment-639528897). Typing "end" in all lowercase letters will break the Flowchart.
warningIf you are using the letter "o" or "x" as the first letter in a connecting Flowchart node, add a space before the letter or capitalize the letter (e.g., "dev--- ops", "dev---Ops"). Typing "A---oB" will create a [circle edge](#circle-edge-example). Typing "A---xB" will create a [cross edge](#cross-edge-example).
mermaid-example--- title: Node --- flowchart LR id
noteThe id is what is displayed in the box.
tipInstead of `flowchart` one can also use `graph`.
It is also possible to set text in the box that differs from the id. If this is done several times, it is the last text found for the node that will be used. Also if you define edges for the node later on, you can omit text definitions. The one previously defined will be used when rendering the box.
mermaid-example--- title: Node with text --- flowchart LR id1[This is the text in the box]
Use " to enclose the unicode text.
mermaid-exampleflowchart LR id["This ❤ Unicode"]
Use double quotes and backticks "\ text \" to enclose the markdown text.
mermaid-example--- config: flowchart: htmlLabels: false --- flowchart LR markdown["`This **is** _Markdown_`"] newLines["`Line1 Line 2 Line 3`"] markdown --> newLines
This statement declares the direction of the Flowchart.
This declares the flowchart is oriented from top to bottom (TD or TB).
mermaid-exampleflowchart TD Start --> Stop
This declares the flowchart is oriented from left to right (LR).
mermaid-exampleflowchart LR Start --> Stop
Possible FlowChart orientations are:
mermaid-exampleflowchart LR id1(This is the text in the box)
mermaid-exampleflowchart LR id1([This is the text in the box])
mermaid-exampleflowchart LR id1[[This is the text in the box]]
mermaid-exampleflowchart LR id1[(Database)]
mermaid-exampleflowchart LR id1((This is the text in the circle))
mermaid-exampleflowchart LR id1>This is the text in the box]
Currently only the shape above is possible and not its mirror. _This might change with future releases._
mermaid-exampleflowchart LR id1{This is the text in the box}
mermaid-exampleflowchart LR id1{{This is the text in the box}}
mermaid-exampleflowchart TD id1[/This is the text in the box/]
mermaid-exampleflowchart TD id1[\This is the text in the box\]
mermaid-exampleflowchart TD A[/Christmas\]
mermaid-exampleflowchart TD B[\Go shopping/]
mermaid-exampleflowchart TD id1(((This is the text in the circle)))
Mermaid introduces 30 new shapes to enhance the flexibility and precision of flowchart creation. These new shapes provide more options to represent processes, decisions, events, data storage visually, and other elements within your flowcharts, improving clarity and semantic meaning.
New Syntax for Shape Definition
Mermaid now supports a general syntax for defining shape types to accommodate the growing number of shapes. This syntax allows you to assign specific shapes to nodes using a clear and flexible format:
A@{ shape: rect }This syntax creates a node A as a rectangle. It renders in the same way as A["A"], or A.
Below is a comprehensive list of the newly introduced shapes and their corresponding semantic meanings, short names, and aliases:
<!--@include: virtual:shapesTable -->
Here’s an example flowchart that utilizes some of the newly introduced shapes:
mermaid-exampleflowchart RL A@{ shape: manual-file, label: "File Handling"} B@{ shape: manual-input, label: "User Input"} C@{ shape: docs, label: "Multiple Documents"} D@{ shape: procs, label: "Process Automation"} E@{ shape: paper-tape, label: "Paper Records"}
mermaid-exampleflowchart TD A@{ shape: rect, label: "This is a process" }
mermaid-exampleflowchart TD A@{ shape: rounded, label: "This is an event" }
mermaid-exampleflowchart TD A@{ shape: stadium, label: "Terminal point" }
mermaid-exampleflowchart TD A@{ shape: subproc, label: "This is a subprocess" }
mermaid-exampleflowchart TD A@{ shape: cyl, label: "Database" }
mermaid-exampleflowchart TD A@{ shape: circle, label: "Start" }
mermaid-exampleflowchart TD A@{ shape: odd, label: "Odd shape" }
mermaid-exampleflowchart TD A@{ shape: diamond, label: "Decision" }
mermaid-exampleflowchart TD A@{ shape: hex, label: "Prepare conditional" }
mermaid-exampleflowchart TD A@{ shape: lean-r, label: "Input/Output" }
mermaid-exampleflowchart TD A@{ shape: lean-l, label: "Output/Input" }
mermaid-exampleflowchart TD A@{ shape: trap-b, label: "Priority action" }
mermaid-exampleflowchart TD A@{ shape: trap-t, label: "Manual operation" }
mermaid-exampleflowchart TD A@{ shape: dbl-circ, label: "Stop" }
mermaid-exampleflowchart TD A@{ shape: text, label: "This is a text block" }
mermaid-exampleflowchart TD A@{ shape: notch-rect, label: "Card" }
mermaid-exampleflowchart TD A@{ shape: lin-rect, label: "Lined process" }
mermaid-exampleflowchart TD A@{ shape: sm-circ, label: "Small start" }
mermaid-exampleflowchart TD A@{ shape: framed-circle, label: "Stop" }
mermaid-exampleflowchart TD A@{ shape: fork, label: "Fork or Join" }
mermaid-exampleflowchart TD A@{ shape: hourglass, label: "Collate" }
mermaid-exampleflowchart TD A@{ shape: comment, label: "Comment" }
mermaid-exampleflowchart TD A@{ shape: brace-r, label: "Comment" }
mermaid-exampleflowchart TD A@{ shape: braces, label: "Comment" }
mermaid-exampleflowchart TD A@{ shape: bolt, label: "Communication link" }
mermaid-exampleflowchart TD A@{ shape: doc, label: "Document" }
mermaid-exampleflowchart TD A@{ shape: delay, label: "Delay" }
mermaid-exampleflowchart TD A@{ shape: das, label: "Direct access storage" }
mermaid-exampleflowchart TD A@{ shape: lin-cyl, label: "Disk storage" }
mermaid-exampleflowchart TD A@{ shape: curv-trap, label: "Display" }
mermaid-exampleflowchart TD A@{ shape: div-rect, label: "Divided process" }
mermaid-exampleflowchart TD A@{ shape: tri, label: "Extract" }
mermaid-exampleflowchart TD A@{ shape: win-pane, label: "Internal storage" }
mermaid-exampleflowchart TD A@{ shape: f-circ, label: "Junction" }
mermaid-exampleflowchart TD A@{ shape: lin-doc, label: "Lined document" }
mermaid-exampleflowchart TD A@{ shape: notch-pent, label: "Loop limit" }
mermaid-exampleflowchart TD A@{ shape: flip-tri, label: "Manual file" }
mermaid-exampleflowchart TD A@{ shape: sl-rect, label: "Manual input" }
mermaid-exampleflowchart TD A@{ shape: docs, label: "Multiple documents" }
mermaid-exampleflowchart TD A@{ shape: processes, label: "Multiple processes" }
mermaid-exampleflowchart TD A@{ shape: flag, label: "Paper tape" }
mermaid-exampleflowchart TD A@{ shape: bow-rect, label: "Stored data" }
mermaid-exampleflowchart TD A@{ shape: cross-circ, label: "Summary" }
mermaid-exampleflowchart TD A@{ shape: tag-doc, label: "Tagged document" }
mermaid-exampleflowchart TD A@{ shape: tag-rect, label: "Tagged process" }
Mermaid also introduces 2 special shapes to enhance your flowcharts: icon and image. These shapes allow you to include icons and images directly within your flowcharts, providing more visual context and clarity.
You can use the icon shape to include an icon in your flowchart. To use icons, you need to register the icon pack first. Follow the instructions to add custom icons. The syntax for defining an icon shape is as follows:
mermaid-exampleflowchart TD A@{ icon: "fa:user", form: "square", label: "User Icon", pos: "t", h: 60 }
squarecircleroundedtbYou can use the image shape to include an image in your flowchart. The syntax for defining an image shape is as follows:
flowchart TD
A@{ img: "https://example.com/image.png", label: "Image Label", pos: "t", w: 60, h: 60, constraint: "off" }tbw) accordingly to the height (h). If not defined, this will default to off Possible values are:onoffIf you want to resize an image, but keep the same aspect ratio, set h, and set constraint: on to constrain the aspect ratio. E.g.
mermaidflowchart TD %% My image with a constrained aspect ratio A@{ img: "https://mermaid.js.org/favicon.svg", label: "My example image label", pos: "t", h: 60, constraint: "on" }
Nodes can be connected with links/edges. It is possible to have different types of links or attach a text string to a link.
mermaid-exampleflowchart LR A-->B
mermaid-exampleflowchart LR A --- B
mermaid-exampleflowchart LR A-- This is the text! ---B
or
mermaid-exampleflowchart LR A---|This is the text|B
mermaid-exampleflowchart LR A-->|text|B
or
mermaid-exampleflowchart LR A-- text -->B
mermaid-exampleflowchart LR A-.->B;
mermaid-exampleflowchart LR A-. text .-> B
mermaid-exampleflowchart LR A ==> B
mermaid-exampleflowchart LR A == text ==> B
This can be a useful tool in some instances where you want to alter the default positioning of a node.
mermaid-exampleflowchart LR A ~~~ B
It is possible declare many links in the same line as per below:
mermaid-exampleflowchart LR A -- text --> B -- text2 --> C
It is also possible to declare multiple nodes links in the same line as per below:
mermaid-exampleflowchart LR a --> b & c--> d
You can then describe dependencies in a very expressive way. Like the one-liner below:
mermaid-exampleflowchart TB A & B--> C & D
If you describe the same diagram using the basic syntax, it will take four lines. A word of warning, one could go overboard with this making the flowchart harder to read in markdown form. The Swedish word lagom comes to mind. It means, not too much and not too little. This goes for expressive syntaxes as well.
mermaidflowchart TB A --> C A --> D B --> C B --> D
Mermaid now supports assigning IDs to edges, similar to how IDs and metadata can be attached to nodes. This feature lays the groundwork for more advanced styling, classes, and animation capabilities on edges.
Syntax:
To give an edge an ID, prepend the edge syntax with the ID followed by an @ character. For example:
mermaidflowchart LR A e1@--> B
In this example, e1 is the ID of the edge connecting A to B. You can then use this ID in later definitions or style statements, just like with nodes.
Once you have assigned an ID to an edge, you can turn on animations for that edge by defining the edge’s properties:
mermaidflowchart LR A e1@==> B e1@{ animate: true }
This tells Mermaid that the edge e1 should be animated.
In the initial version, two animation speeds are supported: fast and slow. Selecting a specific animation type is a shorthand for enabling animation and setting the animation speed in one go.
Examples:
mermaidflowchart LR A e1@--> B e1@{ animation: fast }
This is equivalent to { animate: true, animation: fast }.
You can also animate edges by assigning a class to them and then defining animation properties in a classDef statement. For example:
mermaidflowchart LR A e1@--> B classDef animate stroke-dasharray: 9,5,stroke-dashoffset: 900,animation: dash 25s linear infinite; class e1 animate
In this snippet:
e1@--> creates an edge with ID e1.classDef animate defines a class named animate with styling and animation properties.class e1 animate applies the animate class to the edge e1.Note on Escaping Commas: When setting the stroke-dasharray property, remember to escape commas as \, since commas are used as delimiters in Mermaid’s style definitions.
There are new types of arrows supported:
mermaid-exampleflowchart LR A --o B
mermaid-exampleflowchart LR A --x B
There is the possibility to use multidirectional arrows.
mermaid-exampleflowchart LR A o--o B B <--> C C x--x D
Each node in the flowchart is ultimately assigned to a rank in the rendered graph, i.e. to a vertical or horizontal level (depending on the flowchart orientation), based on the nodes to which it is linked. By default, links can span any number of ranks, but you can ask for any link to be longer than the others by adding extra dashes in the link definition.
In the following example, two extra dashes are added in the link from node _B_ to node _E_, so that it spans two more ranks than regular links:
mermaid-exampleflowchart TD A[Start] --> B{Is it?} B -->|Yes| C[OK] C --> D[Rethink] D --> B B ---->|No| E[End]
> Note Links may still be made longer than the requested number of ranks > by the rendering engine to accommodate other requests.
When the link label is written in the middle of the link, the extra dashes must be added on the right side of the link. The following example is equivalent to the previous one:
mermaid-exampleflowchart TD A[Start] --> B{Is it?} B -- Yes --> C[OK] C --> D[Rethink] D --> B B -- No ----> E[End]
For dotted or thick links, the characters to add are equals signs or dots, as summed up in the following table:
| Length | 1 | 2 | 3 | | ----------------- | :----: | :-----: | :------: | | Normal | --- | ---- | ----- | | Normal with arrow | --> | ---> | ----> | | Thick | === | ==== | ===== | | Thick with arrow | ==> | ===> | ====> | | Dotted | -.- | -..- | -...- | | Dotted with arrow | -.-> | -..-> | -...-> |
It is possible to put text within quotes in order to render more troublesome characters. As in the example below:
mermaid-exampleflowchart LR id1["This is the (text) in the box"]
It is possible to escape characters using the syntax exemplified here.
mermaid-exampleflowchart LR A["A double quote:#quot;"] --> B["A dec char:#9829;"]
Numbers given are base 10, so # can be encoded as #35;. It is also supported to use HTML character names.
subgraph title
graph definition
endAn example below:
mermaid-exampleflowchart TB c1-->a2 subgraph one a1-->a2 end subgraph two b1-->b2 end subgraph three c1-->c2 end
You can also set an explicit id for the subgraph.
mermaid-exampleflowchart TB c1-->a2 subgraph ide1 [one] a1-->a2 end
With the graphtype flowchart it is also possible to set edges to and from subgraphs as in the flowchart below.
mermaid-exampleflowchart TB c1-->a2 subgraph one a1-->a2 end subgraph two b1-->b2 end subgraph three c1-->c2 end one --> two three --> two two --> c2
With the graphtype flowcharts you can use the direction statement to set the direction which the subgraph will render like in this example.
mermaid-exampleflowchart LR subgraph TOP direction TB subgraph B1 direction RL i1 -->f1 end subgraph B2 direction BT i2 -->f2 end end A --> TOP --> B B1 --> B2
If any of a subgraph's nodes are linked to the outside, subgraph direction will be ignored. Instead the subgraph will inherit the direction of the parent graph:
mermaid-exampleflowchart LR subgraph subgraph1 direction TB top1[top] --> bottom1[bottom] end subgraph subgraph2 direction TB top2[top] --> bottom2[bottom] end %% ^ These subgraphs are identical, except for the links to them: %% Link *to* subgraph1: subgraph1 direction is maintained outside --> subgraph1 %% Link *within* subgraph2: %% subgraph2 inherits the direction of the top-level graph (LR) outside ---> top2
The "Markdown Strings" feature enhances flowcharts and mind maps by offering a more versatile string type, which supports text formatting options such as bold and italics, and automatically wraps text within labels.
mermaid-example--- config: flowchart: htmlLabels: false --- flowchart LR subgraph "One" a("`The **cat** in the hat`") -- "edge label" --> b{{"`The **dog** in the hog`"}} end subgraph "`**Two**`" c("`The **cat** in the hat`") -- "`Bold **edge label**`" --> d("The dog in the hog") end
Formatting:
**) before and after the text.*) before and after the text.<br> tags for text to wrap in nodes. However, markdown strings automatically wrap text when it becomes too long and allows you to start a new line by simply using a newline character instead of a <br> tag.This feature is applicable to node labels, edge labels, and subgraph labels.
The auto wrapping can be disabled by using
---
config:
markdownAutoWrap: false
---
graph LRIt is possible to bind a click event to a node, the click can lead to either a javascript callback or to a link which will be opened in a new browser tab.
noteThis functionality is disabled when using `securityLevel='strict'` and enabled when using `securityLevel='loose'`.
click nodeId callback
click nodeId call callback()Examples of tooltip usage below:
html<script> window.callback = function () { alert('A callback was triggered'); }; </script>
The tooltip text is surrounded in double quotes. The styles of the tooltip are set by the class .mermaidTooltip.
mermaid-exampleflowchart LR A-->B B-->C C-->D click A callback "Tooltip for a callback" click B "https://www.github.com" "This is a tooltip for a link" click C call callback() "Tooltip for a callback" click D href "https://www.github.com" "This is a tooltip for a link"
> Success The tooltip functionality and the ability to link to urls are available from version 0.5.2.
?> Due to limitations with how Docsify handles JavaScript callback functions, an alternate working demo for the above code can be viewed at this jsfiddle.
Links are opened in the same browser tab/window by default. It is possible to change this by adding a link target to the click definition (_self, _blank, _parent and _top are supported):
mermaid-exampleflowchart LR A-->B B-->C C-->D D-->E click A "https://www.github.com" _blank click B "https://www.github.com" "Open this in a new tab" _blank click C href "https://www.github.com" _blank click D href "https://www.github.com" "Open this in a new tab" _blank
Beginner's tip—a full example using interactive links in a html context:
html<body> <pre class="mermaid"> flowchart LR A-->B B-->C C-->D click A callback "Tooltip" click B "https://www.github.com" "This is a link" click C call callback() "Tooltip" click D href "https://www.github.com" "This is a link" </pre> <script> window.callback = function () { alert('A callback was triggered'); }; const config = { startOnLoad: true, flowchart: { useMaxWidth: true, htmlLabels: true, curve: 'cardinal' }, securityLevel: 'loose', }; mermaid.initialize(config); </script> </body>
Comments can be entered within a flow diagram, which will be ignored by the parser. Comments need to be on their own line, and must be prefaced with %% (double percent signs). Any text after the start of the comment to the next newline will be treated as a comment, including any flow syntax
mermaidflowchart LR %% this is a comment A -- text --> B{node} A -- text --> B -- text2 --> C
It is possible to style links. For instance, you might want to style a link that is going backwards in the flow. As links have no ids in the same way as nodes, some other way of deciding what style the links should be attached to is required. Instead of ids, the order number of when the link was defined in the graph is used, or use default to apply to all links. In the example below the style defined in the linkStyle statement will belong to the fourth link in the graph:
linkStyle 3 stroke:#ff3,stroke-width:4px,color:red;It is also possible to add style to multiple links in a single statement, by separating link numbers with commas:
linkStyle 1,2,7 color:blue;It is possible to style the type of curve used for lines between items, if the default method does not meet your needs. Available curve styles include basis, bumpX, bumpY, cardinal, catmullRom, linear, monotoneX, monotoneY, natural, step, stepAfter, and stepBefore.
For a full list of available curves, including an explanation of custom curves, refer to the Shapes documentation in the d3-shape project.
Line styling can be achieved in two ways:
In this example, a left-to-right graph uses the stepBefore curve style:
---
config:
flowchart:
curve: stepBefore
---
graph LRYou can assign IDs to edges. After assigning an ID you can modify the line style by modifying the edge's curve property using the following syntax:
mermaidflowchart LR A e1@==> B A e2@--> C e1@{ curve: linear } e2@{ curve: natural }
infoAny edge curve style modified at the edge level overrides the diagram level style.
infoIf the same edge is modified multiple times the last modification will be rendered.
It is possible to apply specific styles such as a thicker border or a different background color to a node.
mermaid-exampleflowchart LR id1(Start)-->id2(Stop) style id1 fill:#f9f,stroke:#333,stroke-width:4px style id2 fill:#bbf,stroke:#f66,stroke-width:2px,color:#fff,stroke-dasharray: 5 5
More convenient than defining the style every time is to define a class of styles and attach this class to the nodes that should have a different look.
A class definition looks like the example below:
classDef className fill:#f9f,stroke:#333,stroke-width:4px;Also, it is possible to define style to multiple classes in one statement:
classDef firstClassName,secondClassName font-size:12pt;Attachment of a class to a node is done as per below:
class nodeId1 className;It is also possible to attach a class to a list of nodes in one statement:
class nodeId1,nodeId2 className;A shorter form of adding a class is to attach the classname to the node using the :::operator as per below:
mermaid-exampleflowchart LR A:::someclass --> B classDef someclass fill:#f96
This form can be used when declaring multiple links between nodes:
mermaid-exampleflowchart LR A:::foo & B:::bar --> C:::foobar classDef foo stroke:#f00 classDef bar stroke:#0f0 classDef foobar stroke:#00f
It is also possible to predefine classes in CSS styles that can be applied from the graph definition as in the example below:
Example style
html<style> .cssClass > rect { fill: #ff0000; stroke: #ffff00; stroke-width: 4px; } </style>
Example definition
mermaid-exampleflowchart LR A-->B[AAA<span>BBB</span>] B-->D class A cssClass
If a class is named default it will be assigned to all classes without specific class definitions.
classDef default fill:#f9f,stroke:#333,stroke-width:4px;It is possible to add icons from fontawesome.
The icons are accessed via the syntax fa:#icon class name#.
mermaid-exampleflowchart TD B["fa:fa-twitter for peace"] B-->C[fa:fa-ban forbidden] B-->D(fa:fa-spinner) B-->E(A fa:fa-camera-retro perhaps?)
There are two ways to display these FontAwesome icons:
You can register your own FontAwesome icon pack following the "Registering icon packs" instructions.
Supported prefixes: fa, fab, fas, far, fal, fad.
noteNote that it will fall back to FontAwesome CSS if FontAwesome packs are not registered.
Mermaid supports Font Awesome if the CSS is included on the website. Mermaid does not have any restriction on the version of Font Awesome that can be used.
Please refer the Official Font Awesome Documentation on how to include it in your website.
Adding this snippet in the <head> would add support for Font Awesome v6.5.1
html<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" rel="stylesheet" />
It is possible to use custom icons served from Font Awesome as long as the website imports the corresponding kit.
Note that this is currently a paid feature from Font Awesome.
For custom icons, you need to use the fak prefix.
Example
flowchart TD
B[fa:fa-twitter] %% standard icon
B-->E(fak:fa-custom-icon-name) %% custom iconAnd trying to render it
mermaid-exampleflowchart TD B["fa:fa-twitter for peace"] B-->C["fab:fa-truck-bold a custom icon"]
Below is the new declaration of the graph edges which is also valid along with the old declaration of the graph edges.
mermaid-exampleflowchart LR A[Hard edge] -->|Link text| B(Round edge) B --> C{Decision} C -->|One| D[Result one] C -->|Two| E[Result two]
The layout of the diagram is done with the renderer. The default renderer is dagre.
Starting with Mermaid version 9.4, you can use an alternate renderer named elk. The elk renderer is better for larger and/or more complex diagrams.
The _elk_ renderer is an experimental feature. You can change the renderer to elk by adding this directive:
config:
flowchart:
defaultRenderer: "elk"noteNote that the site needs to use mermaid version 9.4+ for this to work and have this featured enabled in the lazy-loading configuration.
It is possible to adjust the width of the rendered flowchart.
This is done by defining mermaid.flowchartConfig or by the CLI to use a JSON file with the configuration. How to use the CLI is described in the mermaidCLI page. mermaid.flowchartConfig can be set to a JSON string with config parameters or the corresponding object.
javascriptmermaid.flowchartConfig = { width: 100% }
<!--- cspell:ignore lagom --->
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-02 | pass→pass | 2,379 | 3,576 | +50% | 1 | 1 | 0% | 380 | 9,624 | +2433% | 0 | 0 | — |
case-01 | fail→pass | 3,423 | 4,393 | +28% | 1 | 1 | 0% | 540 | 9,834 | +1721% | 0 | 0 | — |
case-03 | fail→pass | 15,991 | 2,804 | -82% | 1 | 1 | 0% | 1,768 | 9,613 | +444% | 0 | 0 | — |
case-04 | pass→pass | 4,568 | 3,098 | -32% | 1 | 1 | 0% | 752 | 9,670 | +1186% | 0 | 0 | — |
case-05 | pass→pass | 2,445 | 2,990 | +22% | 1 | 1 | 0% | 384 | 9,600 | +2400% | 0 | 0 | — |
case-06 | fail→pass | 12,555 | 3,455 | -72% | 1 | 1 | 0% | 2,126 | 9,694 | +356% | 0 | 0 | — |
case-07 | fail→pass | 26,962 | 3,987 | -85% | 1 | 1 | 0% | 4,194 | 9,683 | +131% | 0 | 0 | — |
case-08 | pass→pass | 16,337 | 11,302 | -31% | 1 | 1 | 0% | 2,415 | 10,921 | +352% | 0 | 0 | — |
case-09 | fail→pass | 4,201 | 2,838 | -32% | 1 | 1 | 0% | 679 | 9,592 | +1313% | 0 | 0 | — |
case-10 | pass→pass | 3,293 | 2,963 | -10% | 1 | 1 | 0% | 524 | 9,600 | +1732% | 0 | 0 | — |
case-11 | pass→pass | 5,009 | 6,206 | +24% | 1 | 1 | 0% | 775 | 10,224 | +1219% | 0 | 0 | — |
case-16 | pass→pass | 4,330 | 2,672 | -38% | 1 | 1 | 0% | 750 | 9,547 | +1173% | 0 | 0 | — |
case-12 | pass→pass | 8,653 | 3,168 | -63% | 1 | 1 | 0% | 1,500 | 9,681 | +545% | 0 | 0 | — |
case-13 | pass→pass | 2,999 | 3,016 | +1% | 1 | 1 | 0% | 472 | 9,551 | +1924% | 0 | 0 | — |
case-14 | pass→pass | 2,930 | 2,063 | -30% | 1 | 1 | 0% | 466 | 9,389 | +1915% | 0 | 0 | — |
case-15 | pass→pass | 1,880 | 2,540 | +35% | 1 | 1 | 0% | 249 | 9,493 | +3712% | 0 | 0 | — |
case-17 | fail→pass | 7,622 | 5,552 | -27% | 1 | 1 | 0% | 1,147 | 9,600 | +737% | 0 | 0 | — |
case-18 | pass→pass | 8,105 | 2,718 | -66% | 1 | 1 | 0% | 1,327 | 9,532 | +618% | 0 | 0 | — |
case-19 | pass→pass | 6,868 | 3,442 | -50% | 1 | 1 | 0% | 1,097 | 9,719 | +786% | 0 | 0 | — |
case-20 | pass→pass | 2,188 | 2,640 | +21% | 1 | 1 | 0% | 359 | 9,440 | +2530% | 0 | 0 | — |
case-21 | pass→pass | 3,096 | 3,643 | +18% | 1 | 1 | 0% | 494 | 9,506 | +1824% | 0 | 0 | — |
case-22 | pass→pass | 2,422 | 3,055 | +26% | 1 | 1 | 0% | 385 | 9,620 | +2399% | 0 | 0 | — |
case-23 | pass→pass | 3,518 | 3,610 | +3% | 1 | 1 | 0% | 525 | 9,672 | +1742% | 0 | 0 | — |
case-24 | pass→pass | 3,251 | 3,275 | +1% | 1 | 1 | 0% | 466 | 9,629 | +1966% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 24 cases were attempted. The headline lift of +25 percentage points is the difference between those two pass rates over the 24 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.