Code Rooms
# Install
## Manual Codex Skill Install
```bash
cp -R skills/* "$CODEX_HOME/skills/"
```
Restart or refresh the Codex session so the skill list is discovered.
## Plugin Install
This repo includes `.codex-plugin/plugin.json`. In an environment that supports
local Codex plugins, point the plugin installer at the repo root.
## Validate
npm run validate
npm run smoke:install
The validator checks required files, examples, and obvious secret leakage.
The smoke install creates a temporary Codex home, installs the skills there, and
verifies the cognitive pack shape without touching your real Codex home.
## Bootstrap
The bootstrap script is explicit by design. It does not silently install external
systems.
npm run bootstrap -- --doctor
npm run doctor:tools
Install this repo's skills into Codex:
npm run bootstrap -- --install-skills --codex-home "$CODEX_HOME"
Prepare m1nd as an optional dependency:
npm run bootstrap -- --with-m1nd --install-m1nd
If you already have a local m1nd checkout:
npm run bootstrap -- --with-m1nd --m1nd-path /path/to/m1nd
`--with-m1nd` checks for the `m1nd` CLI and validates the checkout shape.
`--install-m1nd` may clone and run package install commands, so it is never the
default.
See [`TOOLCHAIN.md`](TOOLCHAIN.md) for the full list of bundled, required,
optional, and intentionally excluded tools.