agent-teams
Coordinate multiple Claude Code sessions as a team — lead + teammates with shared task lists, mailbox messaging, and file-lock claiming. Patterns for team…
Render a self-contained HTML viewer for a pro-workflow wiki. Pages, sources, claims, seed queue, page-link graph and full-text search all in one file. No external dependencies, no JS framework, S3-uploadable. Use when the user wants to browse a wiki visually, share its current
$ npx -y skills add rohitg00/pro-workflow --skill wiki-viewer --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/wiki-viewerContext preview
The summary Claude sees to decide when to auto-load this skill.
Render a self-contained HTML viewer for a pro-workflow wiki. Pages, sources, claims, seed queue, page-link graph and full-text search all in one file. No external dependencies, no JS framework, S3-uploadable. Use when the user wants to browse a wiki visually, share its current
name: wiki-viewer description: Render a self-contained HTML viewer for a pro-workflow wiki. Pages, sources, claims, seed queue, page-link graph and full-text search all in one file. No external dependencies, no JS framework, S3-uploadable. Use when the user wants to browse a wiki visually, share its current state with someone, audit research progress, or hand off a knowledge base. Inspired by Thariq Shihipar's "Unreasonable Effectiveness of HTML" — favors information density and shareability over markdown-only outputs. user-invocable: true
Single-file HTML view of a pro-workflow wiki. Reads `~/.pro-workflow/data.db`, dumps the wiki into one self-contained HTML document with in-browser search, link graph and a seed-queue panel.
node $SKILL_ROOT/scripts/render.js <slug> [--out <path>] [--theme dark|light]
Defaults:
| Panel | Contents | |-------|----------| | Header | wiki slug, flavor, scope, root path, last-update timestamp, page count, source count, kill-switch status | | Sidebar | page list grouped by `page_type`, in-page filter input | | Main | selected-page detail: title, summary, full markdown content (rendered), inline citations resolve to source rows | | Sources | table of every `wiki_sources` row + manual `sources.md` rows | | Seeds | seed-queue table grouped by status; "copy as research prompt" button per pending seed | | Link graph | SVG force-layout of cross-page citations + back-links | | Search | in-browser substring + token search over title/summary/content | | Footer | meta: schema versions, embedding model if present, generator version |
No CDN, no external fonts, no `<script src=>`. Inline CSS, inline SVG, inline JS only. Result is a single `.html` file that opens locally or from any static host.
# Generate after auto-research run completes /wiki research agent-memory --max-pages 5 node skills/wiki-viewer/scripts/render.js agent-memory open ~/.pro-workflow/wikis/agent-memory/derived/viewer.html # Hand off to a teammate aws s3 cp ~/.pro-workflow/wikis/agent-memory/derived/viewer.html s3://my-bucket/agent-memory.html --acl public-read
1. **Type-first** — every panel reads as text; visualizations are auxiliary, not load-bearing. 2. **Zero decoration** — no gradients, no glow, no atmospheric backgrounds. 3. **Color is meaning** — Anthropic coral marks the active page and CTAs only. 4. **Print-friendly** — `@media print` collapses sidebars so the markdown content prints clean.
Claude Code learns from your corrections: self-correcting memory that compounds over 50+ sessions. Context engineering, parallel worktrees, agent teams, and 17 battle-tested skills.
Repo: rohitg00/pro-workflow
Coordinate multiple Claude Code sessions as a team — lead + teammates with shared task lists, mailbox messaging, and file-lock claiming. Patterns for team…
Auto-configure quality gates, hooks, and settings for a new project. Detects project type and sets up appropriate tooling. Use when onboarding a new codebase.
Decompose large-scale changes into independent units and spawn parallel agents in isolated worktrees. Use for migrations, refactors, codemods, and any change…
Capture a user-reported defect as a durable GitHub issue written in the project's own domain language. Explores the codebase in parallel for context but never…
Smart context compaction with state preservation. Saves critical files, task progress, and working state before compaction, restores after. Use before manual…
Master the four operations of context engineering — Write, Select, Compress, Isolate. Manage token budgets, compaction strategies, and context partitioning to…