Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By disnet
Manage Skyboard kanban boards on AT Protocol from terminal CLI: join boards by URI, list boards/columns/cards, create/edit/move/delete/comment cards, view details, login/logout with OAuth.
npx claudepluginhub disnet/skyboard --plugin sbShare bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Kaiten board automation tools
Markdown-based Kanban board managed by Claude Code. Cards live as .md files — no database, no server.
Persistent Kanban board workflow with TodoWrite sync and SessionStart resume
Fizzy integration for Claude Code. Manage boards, cards, track work, and link code to projects.
Manage and decompose work into feature-level tasks on the agtx kanban board
Kanban board agent orchestration — hooks, roles, and lifecycle management for Claude Code sessions
A collaborative kanban board built on AT Protocol (Bluesky's decentralized data layer). Each user's data lives in their own AT Protocol repository. An appview server aggregates board data and provides real-time updates, while writes go directly to each user's PDS.
Users sign in with their Bluesky account and create boards. Each board gets an
AT URI (e.g. at://did:plc:abc.../dev.skyboard.board/3k...) that can be shared
with collaborators. The browser fetches the full board state from the appview in
a single request and subscribes to real-time updates via WebSocket.
All data is stored locally in IndexedDB (via Dexie). Writes (creating tasks, editing, commenting) go to Dexie first, then background sync pushes them to the user's PDS. The appview picks up PDS commits via Jetstream and notifies connected clients.
The appview sits between clients and the AT Protocol network. It subscribes to Jetstream for real-time ingestion and backfills from PDS endpoints on demand, caching everything in SQLite. Clients read from the appview and write to their own PDS.
┌─ Browser (per user) ────────────────────────────────────────────┐
│ │
│ ┌──────────────────────────────────────────────────────────┐ │
│ │ Svelte 5 UI │ │
│ │ Board → Columns → Cards │ │
│ └───────┬──────────────────────────────────▲───────────────┘ │
│ │ user action │ render │
│ ▼ │ │
│ ┌───────────────────┐ ┌───────────┴──────────────┐ │
│ │ Dexie (IndexedDB)│─────────▶│ materializeTasks() │ │
│ │ │ liveQuery│ │ │
│ │ boards │ │ group ops by task │ │
│ │ tasks │ │ filter by trust + │ │
│ │ ops │ │ permissions │ │
│ │ trust │ │ per-field LWW merge │ │
│ │ │ │ → MaterializedTask[] │ │
│ │ (syncStatus: │ └──────────────────────────┘ │
│ │ pending/synced) │ │
│ └──┬──────────▲─────┘ │
│ │ │ populate from appview response │
└──────┼──────────┼───────────────────────────────────────────────┘
│ │
│ background sync ┌───────────────────────┐
│ putRecord / deleteRecord │ Appview │
│ │ (Bun + SQLite) │
▼ │ │
┌──────────────────────────────┐ │ GET /board/:did/:rk │◄── REST
│ User's PDS │ │ WS /ws?boardUri=... │◄── WebSocket
│ (Personal Data Server) │ │ │
│ │ │ Jetstream consumer │
│ at://did:plc:xxx/ │ │ PDS backfill │
│ dev.skyboard.board/* │ │ SQLite cache │
│ dev.skyboard.task/* │ └───────────┬───────────┘
│ dev.skyboard.op/* │ │
│ dev.skyboard.trust/* │ │ subscribes
└──────────────┬───────────────┘ │
│ commit events │
▼ │
┌──────────────────────────────┐ │
│ Jetstream │──────────────────┘
│ (AT Protocol firehose) │
└──────────────────────────────┘
When multiple users collaborate on a board, each writes only to their own PDS. The appview aggregates records from all participants — the board owner's PDS has board configuration and trust grants, while tasks and ops can live in any participant's PDS. Ops reference tasks in any repo via AT URI.