waku-agent: Skill for Claude Code

.claude/skills/excalidraw/SKILL.md

excalidraw is a skill for Claude Code from ShenSeanChen/waku-agent. It costs 77 tokens per session (1,308 once invoked), scanned A, original, MIT.

A generator for Excalidraw whiteboards in a specific hand-drawn style. Excalidraw is a diagramming tool for creating rough-looking boards with text, shapes, arrows, and annotations.

In plain words
What is it for?
Use it to create teaching boards, diagrams, charts, or video whiteboards for the docs and gallery. It supports styled text, boxes, headers, ellipses, diamonds, frames, and related board elements.
Why use it?
It keeps generated boards consistent with the project's established fonts, colors, line weights, signatures, and source labels. Using the style engine avoids manually recreating those settings.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

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

About the project

Waku Agent is a local-first personal AI assistant whose readable code implements the agent loop, memory, and evaluation system. It is for people who want an assistant they can run and understand on their own laptop, with memory stored in SQLite and built-in testing. The catalogue add-ons support its agent workflow.

ShenSeanChen/waku-agent · 1,728 stars · on GitHub

Reuse

Borrowing it

Nothing to install: this file belongs to ShenSeanChen/waku-agent. 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/ShenSeanChen/waku-agent/main/.claude/skills/excalidraw/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ShenSeanChen/waku-agent

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 excalidraw

README.md
[![agentmods](https://agentmods.dev/badge/skills/shenseanchen/waku-agent/excalidraw/github.svg)](https://agentmods.dev/skills/shenseanchen/waku-agent/excalidraw)
Your own site
<a href="https://agentmods.dev/skills/shenseanchen/waku-agent/excalidraw"><img src="https://agentmods.dev/badge/skills/shenseanchen/waku-agent/excalidraw/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 excalidraw

Your own site · 80×15
<a href="https://agentmods.dev/skills/shenseanchen/waku-agent/excalidraw"><img src="https://agentmods.dev/badge/skills/shenseanchen/waku-agent/excalidraw.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,308 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00077 $0.01308
Opus 5 $0.00039 $0.00654
Sonnet 5 $0.00015 $0.00262
Haiku 4.5 $0.00008 $0.00131

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

Security

Grade A, and why

excalidraw 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/excalidraw/SKILL.md · 100 lines

How it starts

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

Excalidraw whiteboards, Sean's way

Boards are generated from code so they match the masters in ~/Developer/Excalidraw exactly — Sean films with them directly. Never hand-write .excalidraw JSON; use the style engine, which locks the values that a from-scratch board always gets wrong.

The five things a naive board gets wrong (all fixed by the engine)

  1. fontFamily 5 (Excalifont) — NOT 1 (legacy Virgil). Wrong font = wrong board.
  2. roughness 1 (controlled) — NOT 2 (scratchy).
  3. Stroke-width hierarchy 1 detail / 2 container / 4 emphasis — not flat 2.
  4. Type scale = Excalidraw presets S=16 / M=20 / L=28. Majority is S/M; L (28) reserved for big titles only. Don't inflate past the presets.
  5. Signature green #b2f2bb, frames, socials block, watermark, source labels.

How to build one

from waku.ops.whiteboard import style as S

e = []
e.append(S.text(60, 40, "Title", size=S.FS_TITLE))
e.append(S.underline(64, 120, 800, color=S.PAL["orange"][1]))
e += S.labeled_box(80, 200, 300, 140, "A box\nwith a note", color="green")
e += S.pill_header(80, 400, 600, "SECTION", color="blue")
e += S.ellipse(500, 200, 180, 120, "agent", color="pink")
e += S.diamond(700, 200, 140, 100, "gate?", color="green")
e += S.labeled_arrow(380, 270, 500, 260, "tool calls")
e += S.socials_block(1980, 44)
e.append(S.watermark(80, 1030))
e.append(S.source_label(80, 900, "per <vendor>, <date>"))   # standing rule
e.append(S.red_note(80, 960, "honest red-ink opinion"))     # standing rule

S.validate(e)                       # catches broken bound-text ids
doc = S.document(e)                 # wraps with appState + white bg

Write json.dumps(doc, indent=2) to docs/whiteboards/<name>.excalidraw. See waku/ops/whiteboard/build_k3_tutorial.py for a full two-board example.

Palette (name → fill/stroke), meaning follows Sean's color system

  • green loop / hero / final reply · red harness boundary / cost / honest-ink
  • blue LLM-ops / observability · orange a loop step · pink LLM/agent nodes
  • grey neutral state/config · yellow callout · plain bare container

Read the full file on GitHub · 100 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 · 100 lines · 77 tokens per session scan A 06eb0ca5a31e

Subscribe to this mod's changes

excalidraw is a skill published in the GitHub repository ShenSeanChen/waku-agent (1,728 stars, last pushed today), licensed MIT. It adds 77 tokens to every session and 1,308 once invoked, about $0.0004 per session on Opus 5. 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