Diagramming

Diagrams that live next to your notes.

StillPoint ships with AI-powered PlantUML and Mermaid workflows so you can sketch systems, workflows, and architecture without leaving the vault.

Diagram workspace in StillPoint Mermaid editor in StillPoint
PlantUML + Mermaid built in

Stay in flow while you map the system.

PlantUML and Mermaid diagrams live beside your notes, tasks, and decisions. That means your architecture drawings evolve with the actual work, not in a separate tool you forget to update.

Text-based and durable

Both formats are plain text, so they diff cleanly and stay future-proof.

Linked to context

Connect a diagram to the page, meeting, or decision that created it.

Fast revisions

Update the diagram when the work changes, not weeks later.

Template library included

Prebuilt templates for every supported diagram type keep you in flow instead of hunting for syntax docs.

AI powered

Describe it once, refine it quickly.

The AI assistant can draft PlantUML from a quick prompt, then you iterate with edits and notes. You stay in the same workspace, keeping diagrams and writing aligned.

You can also chat with the AI to adjust a diagram and get a clean diff of exactly what changed before applying it.

Draw the idea, then capture the reasoning right next to it.

Prompt Outcome
"Sequence for client onboarding" Generates a clean sequence diagram scaffold.
"Architecture for event pipeline" Creates a component diagram with the main services.
"Flow for support escalation" Outputs a workflow diagram you can refine.
Example snippet

Readable by humans, renderable by StillPoint.

@startuml
actor Client
participant "Project Lead" as Lead
participant "Ops Team" as Ops

Client -> Lead: Kickoff request
Lead -> Ops: Create workspace
Ops --> Lead: Workspace ready
Lead --> Client: Share onboarding plan
@enduml
sequenceDiagram
  participant Client
  participant Lead as Project Lead
  participant Ops as Ops Team

  Client->>Lead: Kickoff request
  Lead->>Ops: Create workspace
  Ops-->>Lead: Workspace ready
  Lead-->>Client: Share onboarding plan
Rendered PlantUML diagram
Rendered Mermaid diagram