hermes-agent/tests/skills/test_tldraw_offline_skill.py
teknium1 e321b83392 feat(skills): add tldraw-offline agent scripting skill
Optional skill for driving the tldraw offline desktop app via its local
HTTP control API (the same curl-based path the app's own agent skills use
for Codex/Claude Code/Cursor/Gemini) — read the canvas, make live edits,
and write embedded document scripts.

Grounded in the app's bundled script-context.d.ts and agent playbook, and
in the real tldraw SDK v5 shape schema:
- document-script contract: export default function ({ editor, helpers, signal })
- HTTP API: /api/search, /api/doc/:id/exec, /api/doc/:id/script-workspace,
  /api/doc/:id/script-status (bearer token from server.json, re-read per call)
- shape schema table validated against @tldraw/tlschema (scripts/validate_shapes.mjs, 3/3)
- interactive-UI example (scripts/counter.js) + diagram-generation (scripts/main.js)
- honest verification boundary: click->state logic verified via /exec dispatch
  (0->1->2->1->0), with documented host caveats (inotify watcher, Electron
  background-click rejection)

Tests: tests/skills/test_tldraw_offline_skill.py (15 passing).
2026-07-23 08:07:00 -07:00

168 lines
6.3 KiB
Python

"""Tests for the tldraw-offline optional skill.
Structural + internal-consistency checks only (stdlib + pytest, no network).
The skill's runtime claims were validated live against the real tldraw offline
app (headless) and its bundled script-context.d.ts; scripts/validate_shapes.mjs
re-checks the shape schema against the tldraw SDK.
"""
import re
from pathlib import Path
import pytest
SKILL_DIR = (
Path(__file__).resolve().parents[2]
/ "optional-skills"
/ "creative"
/ "tldraw-offline"
)
SKILL_MD = SKILL_DIR / "SKILL.md"
MAIN_JS = SKILL_DIR / "scripts" / "main.js"
@pytest.fixture(scope="module")
def skill_text() -> str:
return SKILL_MD.read_text(encoding="utf-8")
@pytest.fixture(scope="module")
def main_js() -> str:
return MAIN_JS.read_text(encoding="utf-8")
def test_skill_file_exists():
assert SKILL_MD.is_file(), f"missing {SKILL_MD}"
def test_frontmatter_present(skill_text: str):
assert skill_text.startswith("---\n"), "SKILL.md must open with YAML frontmatter"
assert skill_text.count("---") >= 2, "frontmatter must be delimited by two '---'"
def test_description_under_sixty_chars(skill_text: str):
m = re.search(r"^description: (.*)$", skill_text, re.MULTILINE)
assert m, "no description field"
desc = m.group(1).strip()
assert len(desc) <= 60, f"description is {len(desc)} chars (>60): {desc!r}"
assert desc.endswith("."), "description should end with a period"
def test_required_sections_present(skill_text: str):
for heading in (
"## When to Use",
"## Prerequisites",
"## How to Run",
"## Quick Reference",
"## Procedure",
"## Pitfalls",
"## Verification",
):
assert heading in skill_text, f"missing section: {heading}"
def test_supporting_scripts_present():
assert MAIN_JS.is_file()
assert (SKILL_DIR / "scripts" / "validate_shapes.mjs").is_file()
assert (SKILL_DIR / "scripts" / "counter.js").is_file()
def test_counter_example_is_interactive_and_safe():
"""The counter.js example must show the verified interactive-UI pattern:
ctx contract, pointer_down handling, and REQUIRED signal-based cleanup
(whose absence causes the double-fire bug found live)."""
counter = (SKILL_DIR / "scripts" / "counter.js").read_text(encoding="utf-8")
assert "export default function ({ editor, helpers, signal })" in counter
assert "pointer_down" in counter
assert "editor.on('event'" in counter
# the cleanup that prevents the click-doubling leak
assert "signal.addEventListener('abort'" in counter
assert "editor.off('event'" in counter
# state kept in meta, rendered as label
assert "meta" in counter and "count" in counter
def test_skill_documents_interactive_ui(skill_text: str):
assert "## Interactive UI" in skill_text
assert "counter.js" in skill_text
# the double-fire pitfall must be documented
assert "twice" in skill_text.lower() or "double" in skill_text.lower()
def test_documents_the_ctx_contract(skill_text: str):
# The single biggest correctness fact learned from running the real app:
# a document script is `export default function ({ editor, helpers, signal })`,
# NOT a top-level bare-`editor`-global script.
assert "export default function" in skill_text
assert "{ editor, helpers, signal }" in skill_text
assert "AbortSignal" in skill_text or "signal" in skill_text
def test_documents_http_control_api(skill_text: str):
# Agents drive/verify the canvas through the local HTTP API.
for token in ("/api/doc/", "/exec", "script-status", "script-workspace",
"server.json", "Authorization: Bearer"):
assert token in skill_text, f"HTTP API detail missing: {token}"
def test_documents_tick_timing_pitfall(skill_text: str):
# Verified live: store.listen fires the tick AFTER a commit, not synchronously.
assert "store.listen" in skill_text
assert "tick" in skill_text.lower()
def test_uses_richtext_not_bare_string(skill_text: str):
assert "toRichText" in skill_text
assert "richText" in skill_text
def test_shape_prop_table_matches_validator(skill_text: str):
validator = (SKILL_DIR / "scripts" / "validate_shapes.mjs").read_text(encoding="utf-8")
assert "createTLSchema" in validator # validates against the real schema
expected = {
"note": {
"richText", "color", "labelColor", "size", "font", "align",
"verticalAlign", "growY", "fontSizeAdjustment", "url", "scale",
"textLastEditedBy",
},
"text": {"richText", "color", "size", "font", "textAlign", "w", "scale", "autoSize"},
"frame": {"w", "h", "name", "color"},
}
table_region = skill_text.split("## Shape props")[1].split("## Pitfalls")[0]
for shape, props in expected.items():
for prop in props:
assert re.search(rf"`{re.escape(prop)}`", table_region), (
f"{shape} prop `{prop}` in validator but missing from SKILL.md table"
)
def test_main_js_matches_verified_contract(main_js: str):
# main.js must use the real contract learned from the running app.
assert "export default function ({ editor, helpers, signal })" in main_js
# primitives imported from tldraw, not used as globals
assert "from 'tldraw'" in main_js
assert "createShapeId" in main_js and "toRichText" in main_js
# idempotent furniture
assert "createShapeIfMissing" in main_js
# batched writes
assert "editor.run(" in main_js
# reactive + REQUIRED signal cleanup
assert "editor.store.listen" in main_js
assert "signal.addEventListener('abort'" in main_js
# script-owned writes kept out of undo
assert "history: 'ignore'" in main_js
def test_main_js_is_not_bare_global_style(main_js: str):
# Guard against regressing to the old (wrong) top-level-global form.
# A bare-global script would call editor.* at module top level with no ctx.
assert "export default function" in main_js, (
"main.js must be a default-export ctx function, not a top-level script"
)
def test_platforms_declared(skill_text: str):
m = re.search(r"^platforms: (.*)$", skill_text, re.MULTILINE)
assert m, "platforms field required (cross-platform desktop app)"
for os_name in ("linux", "macos", "windows"):
assert os_name in m.group(1)