hivemind: Skill for Claude Code

.claude/skills/mermaid-diagrams/SKILL.md

mermaid-diagrams is a skill for Claude Code from cohen-liel/hivemind. It costs 0 tokens per session (766 once invoked), scanned A, original, Apache-2.0.

A guide for creating Mermaid.js diagrams, which are text-based diagrams for architecture, data flows, sequences, databases, and project plans.

In plain words
What is it for?
Use it to map system architecture, show request sequences, document data movement, model database relationships, or plan projects.
Why use it?
It turns complex system relationships and processes into diagrams that can be rendered from plain text.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is cohen-liel/hivemind's own configuration. It tells Claude Code how to work on hivemind 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 hivemind configures →

Reuse

Borrowing it

Nothing to install: this file belongs to cohen-liel/hivemind. 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/cohen-liel/hivemind/main/.claude/skills/mermaid-diagrams/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/cohen-liel/hivemind

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 mermaid-diagrams

README.md
[![agentmods](https://agentmods.dev/badge/skills/cohen-liel/hivemind/mermaid-diagrams/github.svg)](https://agentmods.dev/skills/cohen-liel/hivemind/mermaid-diagrams)
Your own site
<a href="https://agentmods.dev/skills/cohen-liel/hivemind/mermaid-diagrams"><img src="https://agentmods.dev/badge/skills/cohen-liel/hivemind/mermaid-diagrams/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 mermaid-diagrams

Your own site · 80×15
<a href="https://agentmods.dev/skills/cohen-liel/hivemind/mermaid-diagrams"><img src="https://agentmods.dev/badge/skills/cohen-liel/hivemind/mermaid-diagrams.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 766 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.00000 $0.00766
Opus 5 $0.00000 $0.00383
Sonnet 5 $0.00000 $0.00153
Haiku 4.5 $0.00000 $0.00077

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

Security

Grade A, and why

mermaid-diagrams 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 12d 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/mermaid-diagrams/SKILL.md · 101 lines

How it starts

The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Mermaid Diagrams & Architecture Visualization

Generate Mermaid.js diagrams for system architecture, data flows, sequence diagrams, ERDs, and project planning. Use when the user asks to visualize architecture, create flowcharts, draw sequence diagrams, map data flows, or document system design.

Triggers

  • "draw a diagram", "create a flowchart", "architecture diagram"
  • "sequence diagram", "data flow", "ERD", "entity relationship"
  • "visualize the system", "map the architecture"
  • "Mermaid diagram", "system diagram"
  • When documenting or explaining complex systems

Diagram Types

1. System Architecture (C4-style)

graph TB
    subgraph Frontend
        UI[React App] --> API[API Gateway]
    end
    subgraph Backend
        API --> Auth[Auth Service]
        API --> Core[Core Service]
        Core --> DB[(PostgreSQL)]
        Core --> Cache[(Redis)]
    end

2. Sequence Diagrams

sequenceDiagram
    participant U as User
    participant F as Frontend
    participant A as API
    participant D as Database
    U->>F: Click Submit
    F->>A: POST /api/data
    A->>D: INSERT INTO...
    D-->>A: OK
    A-->>F: 201 Created
    F-->>U: Success Toast

3. Data Flow / Pipeline

flowchart LR
    Input[Raw Data] --> Process[Transform]
    Process --> Validate{Valid?}
    Validate -->|Yes| Store[(Database)]
    Validate -->|No| Error[Error Queue]
    Store --> Notify[Send Notification]

4. Entity Relationship Diagrams

erDiagram
    USER ||--o{ PROJECT : owns
    PROJECT ||--|{ TASK : contains
    USER ||--o{ TASK : assigned_to

5. State Diagrams

stateDiagram-v2
    [*] --> Idle
    Idle --> Running: start
    Running --> Paused: pause
    Paused --> Running: resume
    Running --> Done: complete
    Running --> Error: fail
    Error --> Idle: reset

6. Gantt / Timeline

gantt
    title Project Timeline
    section Phase 1
        Design: 2024-01-01, 2w
        Prototype: 2024-01-15, 1w
    section Phase 2
        Development: 2024-01-22, 4w
        Testing: 2024-02-19, 2w

Read the full file on GitHub · 101 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. 12d ago First seen · 101 lines · 0 tokens per session scan A 5837e77e24ba

Subscribe to this mod's changes

mermaid-diagrams is a skill published in the GitHub repository cohen-liel/hivemind (107 stars, last pushed 4mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 766 tokens. 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-08-30.

Related

Other skills, from other repositories

ring:creating-handoffs

Creating a handoff document that captures session state (completed work, decisions, open items, next steps) and delivering it via Plan Mode so the user gets the native 'clear context and continue implementing' resume option. Use when ending a session, when context grows large, or the user says 'handoff', 'save…

LerianStudio/ring · 93 tokens

wheypoint

Mark the current conversation as a durable handoff so a new agent can resume the work. Use when the user wants to preserve state for a later or parallel session. Triggers include "hand this off", "write a handoff", "drop a wheypoint", "checkpoint this", "compact the conversation", and "/wheypoint". Also use for "wrap…

paulnsorensen/easy-cheese · 116 tokens

incident

Incident response and postmortem generation from git/deploy context. When something breaks in production, this skill builds a timeline, identifies the probable cause, and generates a structured postmortem document. Flags: --since, --service, --sev, --revert, --comms, --dry-run.

greglas75/zuvo · 64 tokens

presentation

Generate PowerPoint (PPTX) presentations from a topic, outline, or content file. Creates professional slides using python-pptx with consistent theming and typography. Modes: [topic] (from scratch), from [file] (from markdown), --slides N, --theme dark|light|corporate, --outline-only, --out [path], --lang [code].

greglas75/zuvo · 80 tokens

pre-landing-review

Pre-landing PR review. Analyzes diff against the base branch for SQL safety, LLM trust boundary violations, conditional side effects, and other structural issues. Use when explicitly asked for the specialized pre-landing workflow. Product /review requests are handled by OpenBitFun's unified Review mechanism instead.…

GCWing/BitFun · 75 tokens

find-simplifications

Use for a periodic repo-wide sweep of qwen-code for accumulated excess surface — dead components and files, orphaned locale keys, exports nothing consumes, added-then-removed scaffolding — filing candidates on a tracking issue and landing only what a maintainer has said yes to. Repo-wide and evidence-first; every…

QwenLM/qwen-code · 103 tokens