skills/mono/SKILL.md
--- tldr: Register a working subdirectory focus in a monorepo category: utility --- # /eidos:mono Register which subdirectory you're actually working in when Claude Code opens at the repo root. Stored per-user outside the repo, injected automatically at session start. ## Usage ``` /eidos:mono set <path> # set focus to subdirectory /eidos:mono clear # remove focus for this repo /eidos:mono list # show all mappings /eidos:mono # show current mapping or usage `
npx skillsauth add agenticnotetaking/eidos skills/monoInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Register which subdirectory you're actually working in when Claude Code opens at the repo root. Stored per-user outside the repo, injected automatically at session start.
/eidos:mono set <path> # set focus to subdirectory
/eidos:mono clear # remove focus for this repo
/eidos:mono list # show all mappings
/eidos:mono # show current mapping or usage
Run git rev-parse --show-toplevel to get the repo root.
If not in a git repo, use the current working directory.
Parse the arguments to determine which command to run.
set <path><path> relative to the repo rootbash "$PLUGIN_ROOT/scripts/mono_write.sh" set "<repo_root>" "<path>"Mono focus set: **<path>** in \<repo_root>``clearbash "$PLUGIN_ROOT/scripts/mono_write.sh" clear "<repo_root>"Mono focus cleared for \<repo_root>``list~/.config/eidos/mono.yamlNo mono mappings set.Mono mappings (~/.config/eidos/mono.yaml):
→ /Users/omni/repos/mono: repo/eidos ← current repo
/Users/omni/repos/other: packages/core
bash "$PLUGIN_ROOT/scripts/mono_read.sh" "<repo_root>"Mono focus: **<subpath>** (\<repo_root>/<subpath>`)`The PLUGIN_ROOT variable points to the eidos plugin directory.
Scripts are at $PLUGIN_ROOT/scripts/mono_read.sh and $PLUGIN_ROOT/scripts/mono_write.sh.
PLUGIN_ROOT is available as CLAUDE_PLUGIN_ROOT environment variable, or can be derived from the skill's own path.
~/.config/eidos/mono.yaml (external, user-specific)development
--- tldr: Check the status of messages you sent to peer inboxes category: core --- # /eidos:outbox Find messages **you sent** to peer repos and report their status. Your sent messages live in the peers' inboxes, not here. So this skill sweeps every registered peer and reads back what became of them. This is the mirror of [[spec - inbox skill - read and act on your own inbox]]. - The inbox is messages others sent **to** you. You own and edit it. - The outbox is messages you sent **to** others.
development
--- tldr: Send a message to a peer repo's inbox category: core --- # /eidos:message Write a message into another repo's `agent-inbox/`. The recipient is a peer repo, addressed by its registered name. See [[spec - agent communication - cross repo inboxes with append only messages and registry resolution]]. ## Usage ``` /eidos:message [recipient repo] [what to say] ``` ## Instructions ### 1. Resolve the recipient - Identify the recipient repo name. Ask if not given. - Resolve its path: `
development
--- tldr: Read and act on your own inbox category: core --- # /eidos:inbox List and work through messages other repos have left in your `agent-inbox/`. You own this inbox. You may edit its files freely. Agents from other repos may push **new** messages into your inbox at any time. They never edit existing files. Only you do. So re-check the inbox. Don't assume it is unchanged since you last looked. See [[c - foreign agents append to an inbox - only the owner edits in place]]. See [[spec - ag
tools
--- tldr: Move done files into archive subdirs (memory/ and agent-inbox/) category: utility --- # /eidos:archive Retire finished files into the `archive/` sibling of their directory. Done `memory/` files into `memory/archive/`, done inbox messages into `agent-inbox/archive/`. A `git mv`, never a rename. The basename is preserved, so wiki links keep resolving. See [[c - archiving moves done files into an archive subdir preserving basename and links]]. ## Usage ``` /eidos:archive [optional fil