Agent skill
continue-diagram
Continue working on an existing diagram. Load, review, and modify persistent diagrams across sessions.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/continue-diagram-designnotdrum-brain-jar
SKILL.md
Continue a Diagram
Continue working on diagrams from previous sessions.
Finding Diagrams
List recent diagrams:
list_diagrams()
Filter by scope:
list_diagrams(scope: "project:my-app")
Search by content:
search_diagrams(query: "notification architecture")
Loading a Diagram
By ID (exact):
get_diagram(id: "abc-123")
By title (fuzzy match):
get_diagram(title: "notification flow")
With version history:
get_diagram(id: "abc-123", include_history: true)
Updating Diagrams
When you modify a diagram, the previous version is automatically saved to history.
Update content:
update_diagram(
id: "abc-123",
mermaid: "flowchart TD\n A --> B --> C",
note: "Simplified the flow"
)
Update metadata:
update_diagram(
id: "abc-123",
title: "New Title",
context: "Updated context explaining changes",
tags: ["architecture", "v2"]
)
Version History
Diagrams track their evolution. Each update creates a version snapshot.
To see history:
get_diagram(id: "abc-123", include_history: true)
History shows:
- Previous Mermaid content
- Timestamp of each version
- Notes explaining what changed
Exporting
As Mermaid file:
export_diagram(id: "abc-123", format: "mermaid")
As SVG (via Mermaid CLI):
export_diagram(id: "abc-123", format: "svg")
For draw.io:
export_diagram(id: "abc-123", format: "drawio")
Cleanup
Delete a diagram:
delete_diagram(id: "abc-123")
Workflow Tips
- Start each session by checking for relevant existing diagrams
- Update, don't recreate — build on existing work
- Use notes — explain what changed when updating
- Export for sharing — generate files others can view
Related Skills
- capture — Create new diagrams during brainstorming
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?