From rosary
File a bead from conversation context. Use when the user mentions something that should be tracked — a bug, idea, task, or observation. Synthesizes a bead title and description from the user's input and surrounding conversation. Dedup-checks against existing beads before creating.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rosary:note <what to file><what to file>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
File a bead from mid-conversation context. The user says something worth tracking and you turn it into a bead.
File a bead from mid-conversation context. The user says something worth tracking and you turn it into a bead.
The bead lives in the repo whose code it concerns. Derive repo_path from the file scopes / repo names in the user's input — don't default to rosary.
The old "always use rosary as the hub" rule presumed a reconciler hub-to-spoke sync that was never built (the fan-out via file scopes was aspirational; see rosary-403a1a for the closed history). The scope-abstraction saga (rosary-b5da2f) made route-at-write-time the canonical pattern instead, and that's what this skill follows.
| User input mentions… | Target repo_path |
|---|---|
A specific file path (notme.bot/worker.ts, cloister/vault/..., signet/pkg/...) | That file's repo (~/remotes/art/notme.bot, ~/remotes/art/cloister, ~/github/art/signet) |
A specific repo by name (crumb is crashing, mache LSP is wrong) | That repo's checkout |
Cross-repo coordination ("we need a way for both cloister and signet to…") | The primary repo + cross-link, OR rosary as a meta-bead |
| Tooling / orchestration / skill itself ("rsry MCP", "the /note skill", "agent dispatch") | ~/remotes/art/rosary (rosary is the right home for meta concerns about the substrate) |
Known ART repos and their checkouts (use the local clone if it exists; fall back to GitHub clone path if not):
~/remotes/art/rosary — agent orchestration + meta~/remotes/art/cloister — workerd hypervisor + MCP host~/remotes/art/notme.bot and ~/remotes/art/notme — auth bridge~/remotes/art/mache — code intelligence FUSE filesystem~/remotes/art/ley-line and ~/remotes/art/ley-line-open — content-addressed storage~/remotes/art/crumb — semantic knowledge capture~/remotes/art/rig — infrastructure (terraform / CF)~/github/art/signet — identity / key exchangeIf the right repo isn't on disk, fall back to filing in rosary as a meta-bead with the target repo named in the description, and let the user redirect.
$ARGUMENTS) to understand what they want filedrepo_path using the rubric above (file scopes win; repo names by mention win second; rosary for meta only)rsry_bead_search with the chosen repo_path and keywords from the input. If the work clearly spans repos, also search rosary.rsry_bead_create at the chosen repo_path:
bug, task, feature, review, or epic/note the CRUMB pydantic bug still crashes on evidence field
→ target repo: crumb (the user named it explicitly)
→ repo_path: ~/remotes/art/crumb
→ searches for "CRUMB pydantic evidence" in crumb
→ creates: bug "CRUMB crashes on evidence field: expects list, gets string"
/note we need to update the beads skill to mention rsry MCP tools
→ target repo: rosary (the /note skill itself is rosary-owned, meta concern)
→ repo_path: ~/remotes/art/rosary
→ searches for "beads skill rsry"
→ creates: task "Update beads skill to reference rsry MCP tools alongside bd CLI"
/note btw sprites API docs were never validated against real responses
→ target repo: rosary (sprites integration lives in rosary's orchestrator)
→ repo_path: ~/remotes/art/rosary
→ creates: task "Validate SpritesClient against real API responses"
/note bug in notme.bot/worker.ts — cookie isn't HttpOnly
→ target repo: notme.bot (the file path tells us where this lives)
→ repo_path: ~/remotes/art/notme.bot
→ searches for "notme.bot worker cookie HttpOnly" in notme.bot
→ creates: bug "notme.bot cookie missing HttpOnly flag"
/note we need a way for cloister bundles to subscribe to signet identity events
→ target repo: cloister (the work lands there; signet is the dependency)
→ repo_path: ~/remotes/art/cloister
→ creates: feature "Subscribe to signet identity events from cloister bundles"
→ note: also consider a cross-link from signet via rsry_bead_link
repo_path from file scopes / repo names. Rosary is the meta home, not the universal home.rsry_bead_link with the cross-repo target (the partial-fix bead-id-prefix auto-routing also works).Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub agentic-research/rosary --plugin rosary