con un clic
mermaid-diagrams
Create valid code for generating mermaid diagrams
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Create valid code for generating mermaid diagrams
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Guide for understanding and working with the Oqto platform - a self-hosted AI agent workspace. Use when explaining Oqto architecture, API usage, session management, CLI tools (oqto, oqtoctl, agntz, byt), configuration, or when helping users interact with the platform's features including chat, file browser, terminal, voice mode, and memory system.
Design and implement delightful, scriptable command-line tools: subcommands, composable stdin/stdout/stderr, stable --json/--yaml, great help/errors, safe destructive ops, config precedence (flags>env>config), TTY-aware color/progress, completions, and tests.
This skill should be used to create high quality pdf documents based on predefined templates. When the user asks for a document, you can list all available templates and brands and ask the user for the content to put into the template. You only edit the toml templates, not the .typ files. The toml/typ pair compile into a professional looking pdf via tmpltr.
Fetches official documentation for external libraries and frameworks (React, Next.js, Prisma, FastAPI, Express, Tailwind, MongoDB, etc.) with 60-90% token savings via content-type filtering. Use this skill when implementing features using library APIs, debugging library-specific errors, troubleshooting configuration issues, installing or setting up frameworks, integrating third-party packages, upgrading between library versions, or looking up correct API patterns and best practices. Triggers automatically during coding work - fetch docs before writing library code to get correct patterns, not after guessing wrong.
This skill conducts discovery conversations to understand user intent and agree on approach before taking action. It should be used when the user explicitly calls /interview, asks for recommendations, needs brainstorming, wants to clarify, or when the request could be misunderstood. Prevents building the wrong thing by uncovering WHY behind WHAT.
Toolkit for spreadsheet work—building files with formulas and formatting, analyzing data, modifying existing workbooks while preserving formulas, creating visualizations, and recalculating. Use for .xlsx, .xlsm, .csv, .tsv files and similar formats.
| name | mermaid_diagrams |
| description | Create valid code for generating mermaid diagrams |
| license | MIT |
The user may ask you to generate mermaid diagrams. This is a detailed explanation on how to create these diagrams.
Generate valid Mermaid code only. Use the requested diagram type. Reflect the described structure with correct syntax, labels, and links. Do not include explanations or markdown unless requested.
Description: Simple decision flowchart with start, decision, actions, and end Type: flowchart Mermaid Code:
flowchart TD
A[Start] --> B{Decision?}
B -->|Yes| C[Action 1]
B -->|No| D[Action 2]
C --> E[End]
D --> E
Description: Left-to-right flowchart showing a simple process flow Type: flowchart Mermaid Code:
flowchart LR
A[Input] --> B[Process]
B --> C[Output]
C --> D[Validation]
D -->|Valid| E[Save]
D -->|Invalid| B
Description: User authentication sequence diagram showing interactions between user, frontend, and backend Type: sequence Mermaid Code:
sequenceDiagram
participant U as User
participant F as Frontend
participant B as Backend
U->>F: Enter credentials
F->>B: Login request
B-->>F: Authentication token
F-->>U: Login successful
Description: API call sequence with error handling Type: sequence Mermaid Code:
sequenceDiagram
participant Client
participant API
participant DB
Client->>API: Request data
API->>DB: Query database
alt Success
DB-->>API: Return data
API-->>Client: Response with data
else Error
DB-->>API: Error message
API-->>Client: Error response
end
Description: Object-oriented class diagram showing inheritance and relationships Type: class Mermaid Code:
classDiagram
Animal <|-- Dog
Animal <|-- Cat
Animal : +String name
Animal : +int age
Animal : +makeSound()
class Dog {
+String breed
+bark()
}
class Cat {
+String color
+meow()
}
Description: State machine for a simple order processing system Type: state Mermaid Code:
stateDiagram-v2
[*] --> Pending
Pending --> Processing : payment_received
Processing --> Shipped : items_dispatched
Processing --> Cancelled : payment_failed
Shipped --> Delivered : delivery_confirmed
Delivered --> [*]
Cancelled --> [*]