원클릭으로
generate-diagram
Generate Mermaid diagrams from natural language descriptions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate Mermaid diagrams from natural language descriptions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Generate a sprint retrospective with KPI dashboard and action decision records
Generate a risk register PM block with probability, impact, and mitigation strategies
Generate downloadable Markdown or HTML files (reports, summaries, styled docs)
Conversational skill creator — build, test, and refine skills in chat
Generate a lightweight Architecture Decision Record as a Decision block
Creates a structured note from a homepage chat conversation
SOC 직업 분류 기준
| name | generate-diagram |
| description | Generate Mermaid diagrams from natural language descriptions |
| feature_module | docs |
Create Mermaid diagrams from textual descriptions for architecture, flows, and data models.
Use this skill when:
/generate-diagram)Example:
User: "Create a sequence diagram for user login flow"
AI calls insert_block with:
content_markdown="```mermaid
sequenceDiagram
actor User
User->>Frontend: Enter credentials
Frontend->>API: POST /auth/login
API->>Database: Validate credentials
Database-->>API: User record
API-->>Frontend: JWT tokens
Frontend-->>User: Redirect to dashboard
```"
AI responds: "[RECOMMENDED] Inserted sequence diagram showing the login flow."
Parse Description
Extract Entities and Relationships
Generate Mermaid Syntax
Validate Output
After generating the mermaid syntax, call the insert_block MCP tool to insert the diagram into the note:
insert_block(
note_id=<current_note_id>,
content_markdown="```mermaid\n<mermaid_syntax>\n```",
after_block_id=<cursor_block_id or null>
)
Then respond in chat with a confidence tag and any suggestions:
[RECOMMENDED] Inserted sequence diagram showing the login flow.
Suggestions:
- Add error handling paths
- Include retry logic in diagram
Confidence levels: RECOMMENDED (high confidence, clear requirements), SUGGESTED (medium confidence, some ambiguity), EXPERIMENTAL (low confidence, significant assumptions made).
Do NOT output raw JSON with diagram_type/mermaid_code fields. Always use insert_block to place the diagram in the note.
Input:
Create a sequence diagram showing how a user creates an issue:
- User enters issue details in form
- Frontend validates input
- API creates issue in database
- AI context agent analyzes issue
- Frontend shows success message
Action: Call insert_block MCP tool:
insert_block(
note_id="<note_id>",
content_markdown="```mermaid\nsequenceDiagram\n actor User\n participant Frontend\n participant API\n participant Database\n participant AIAgent\n \n User->>Frontend: Enter issue details\n Frontend->>Frontend: Validate input\n Frontend->>API: POST /issues\n API->>Database: INSERT issue\n Database-->>API: issue_id\n API->>AIAgent: Analyze issue context\n AIAgent-->>API: Context data\n API-->>Frontend: Issue created\n Frontend-->>User: Show success message\n```",
after_block_id=null
)
Chat response:
[RECOMMENDED] Inserted sequence diagram showing the issue creation flow with all 5 participants.
Input:
Data model for issues:
- Issue has id, title, description, priority
- Issue belongs to Project
- Issue can have many Comments
- User can be assigned to Issue
Action: Call insert_block MCP tool:
insert_block(
note_id="<note_id>",
content_markdown="```mermaid\nclassDiagram\n class Issue {\n +UUID id\n +String title\n +String description\n +String priority\n +UUID project_id\n +UUID assignee_id\n }\n class Project {\n +UUID id\n +String name\n }\n class Comment {\n +UUID id\n +UUID issue_id\n +String content\n }\n class User {\n +UUID id\n +String email\n +String name\n }\n \n Issue \"*\" --> \"1\" Project : belongs to\n Issue \"1\" --> \"*\" Comment : has many\n Issue \"*\" --> \"0..1\" User : assigned to\n```",
after_block_id=null
)
Chat response:
[RECOMMENDED] Inserted class diagram with 4 entities and their relationships.
Input:
Approval workflow:
- AI suggests action
- If auto-execute, run immediately
- If requires approval, create approval request
- User approves or rejects
- If approved, execute action
- If rejected, notify user
Action: Call insert_block MCP tool:
insert_block(
note_id="<note_id>",
content_markdown="```mermaid\nflowchart TD\n A[AI suggests action] --> B{Action type?}\n B -->|Auto-execute| C[Run immediately]\n B -->|Requires approval| D[Create approval request]\n D --> E{User decision?}\n E -->|Approved| F[Execute action]\n E -->|Rejected| G[Notify user]\n C --> H[Return result]\n F --> H\n G --> H\n```",
after_block_id=null
)
Chat response:
[RECOMMENDED] Inserted flowchart showing the approval workflow with 3 decision paths.
Input:
Database schema:
- Workspace has many Projects
- Project has many Issues
- Issue has many Comments
- User belongs to many Workspaces (workspace_members join table)
Action: Call insert_block MCP tool:
insert_block(
note_id="<note_id>",
content_markdown="```mermaid\nerDiagram\n WORKSPACE ||--o{ PROJECT : contains\n PROJECT ||--o{ ISSUE : contains\n ISSUE ||--o{ COMMENT : has\n WORKSPACE ||--o{ WORKSPACE_MEMBER : has\n USER ||--o{ WORKSPACE_MEMBER : joins\n \n WORKSPACE {\n uuid id PK\n string name\n string slug\n }\n PROJECT {\n uuid id PK\n uuid workspace_id FK\n string name\n }\n ISSUE {\n uuid id PK\n uuid project_id FK\n string title\n string priority\n }\n COMMENT {\n uuid id PK\n uuid issue_id FK\n text content\n }\n```",
after_block_id=null
)
Chat response:
[RECOMMENDED] Inserted ER diagram with 5 entities and join table relationships.
Input:
Project timeline:
- Week 1-2: Database schema design
- Week 2-4: API development (starts after schema)
- Week 3-5: Frontend development (can overlap with API)
- Week 5-6: Integration testing
Action: Call insert_block MCP tool:
insert_block(
note_id="<note_id>",
content_markdown="```mermaid\ngantt\n title Project Timeline\n dateFormat YYYY-MM-DD\n section Backend\n Database schema :done, db, 2024-01-01, 2w\n API development :active, api, after db, 3w\n section Frontend\n Frontend dev :frontend, 2024-01-15, 3w\n section Testing\n Integration tests :testing, after api, 2w\n```",
after_block_id=null
)
Chat response:
[RECOMMENDED] Inserted Gantt chart with 4 tasks across 3 sections spanning 6 weeks.
| Type | Mermaid Syntax | Use Case |
|---|---|---|
| Sequence | sequenceDiagram | API flows, interactions |
| Class | classDiagram | Data models, OOP structure |
| Flowchart | flowchart TD/LR | Decision trees, workflows |
| ER Diagram | erDiagram | Database schemas |
| Gantt | gantt | Project timelines |
| State | stateDiagram-v2 | State machines |
| C4 Context | C4Context | System architecture (C4 model) |
| Pie | pie | Distribution breakdowns |
| Mindmap | mindmap | Brainstorming, topic exploration |
| Git Graph | gitGraph | Git branching strategies |
sequenceDiagram
participant A
participant B
A->>B: Synchronous call
B-->>A: Response
A--)B: Async call
flowchart TD
A[Start] --> B{Decision}
B -->|Yes| C[Action]
B -->|No| D[Alternative]
classDiagram
class ClassName {
+String attribute
+method() void
}
ClassName --|> ParentClass : inherits
/generate-diagram slash commandinsert_block from note_content_server.py — inserts mermaid code block into notecodeBlock nodes with language: 'mermaid' in TipTap JSONbackend/src/pilot_space/ai/agents/diagram_generator_agent.py