Reusable building blocks for AI coding agents — skills, standalone scripts, and hooks — written once and shared everywhere.
Works with Claude Code,
Codex, Pi, and any agent
that reads skills from a directory. A skill is a plain SKILL.md; the installer projects
the same source files into whichever agents you use.
plugins/ skills, grouped by domain (each domain = a Claude Code plugin)
scripts/ standalone CLIs an agent runs inside the repo it's working in
hooks/ Claude Code event hooks
bin/ machinery: installer, validator, tests, and the agent-target registry
Requires uv:
# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows (PowerShell)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"git clone https://github.com/Lightbridge-KS/agent-stuff.git
cd agent-stuff
uv run bin/install.py --list # skills + which agents are detected
uv run bin/install.py --all --dry-run # preview, no writes
uv run bin/install.py --all # install all skills into every agent presentTarget specific agents (combine freely), or any directory:
uv run bin/install.py --claude # ~/.claude/skills (Claude Code)
uv run bin/install.py --codex # ~/.codex/skills (Codex)
uv run bin/install.py --pi # ~/.pi/agent/skills (Pi)
uv run bin/install.py --agents # ~/.agents/skills (shared convention)
uv run bin/install.py --claude --codex --pi # several at once
uv run bin/install.py --target ~/some/dir # a custom directory
uv run bin/install.py --claude coding/c4-architect # one skill
uv run bin/install.py --claude --domain radiology # a whole domain--mode defaults to auto: symlink on macOS/Linux (edits in this checkout are live),
copy on Windows. Override with --mode symlink|copy. --force replaces an installed
skill (guarded so it can never delete the source).
Agents are configured in bin/targets.toml — one block per agent.
Add a new agent there and its --<name> flag appears automatically; no code change.
/plugin marketplace add Lightbridge-KS/agent-stuff
/plugin install coding@lightbridge-skills
/plugin install radiology@lightbridge-skills
/plugin install lightbridge@lightbridge-skills
/plugin install productivity@lightbridge-skills
/plugin marketplace update lightbridge-skills refreshes the catalog later.
Standalone CLIs an agent runs inside the project it's working in. Each is a self-contained
uv run --script with its own README.
scripts/docs-index— print a compact, read-before-coding index of a repo'sdocs/from each file's frontmatter (summary/read_when). A Python+uvport of Peter Steinberger'sdocs-list.ts.
SessionStart event hooks for Claude Code and Codex. Each is described by an
agent-neutral hook.toml; the installer renders it into
every agent's registration form (Claude settings.json, Codex hooks.json / config.toml)
with paths resolved. It only prints — it never edits settings:
uv run bin/install.py --hookshooks/docs-index-inject— aSessionStarthook that injects the project's docs index into context automatically, pairing withdocs-index. Registered once (user settings) but opt-in per repo: it only fires where a[docs-index]section is declared in.lightbridge/config.toml, so repos with no docs — or a websitedocs/— are untouched. (Codex additionally requires trusting the hook via/hooks.)
uv run bin/validate.py # SKILL.md + manifests + scripts/hooks contracts
uv run tests/test_install.py # installer guards + multi-agent tests
uv run tests/test_hooks.py # hook opt-in gatingEditing guide and contracts: CLAUDE.md (a.k.a. AGENTS.md). Design
rationale: docs/architecture.md. CI runs the validator and tests
on every PR.
MIT © Kittipos S. (Lightbridge-KS)