2026-06-10 11:16:10 +02:00
|
|
|
# Arcana Codex Plugins
|
|
|
|
|
|
2026-06-10 16:00:09 +02:00
|
|
|
Codex plugin marketplace for reusable agent workflows.
|
2026-06-10 11:16:10 +02:00
|
|
|
|
|
|
|
|
## Included Plugins
|
|
|
|
|
|
|
|
|
|
- `staged-implementation`: Planner, implementer, validator, and orchestrator skills for staged implementation workflows.
|
|
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
|
|
Add this Git repository as a Codex marketplace:
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-06-10 16:00:09 +02:00
|
|
|
codex plugin marketplace add dayowe/arcana-codex-plugins --ref master
|
2026-06-10 11:16:10 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Install the staged implementation plugin:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
codex plugin add staged-implementation@arcana-codex-plugins
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Start a new Codex session after installation so the bundled skills are available.
|
|
|
|
|
|
|
|
|
|
## Layout
|
|
|
|
|
|
|
|
|
|
```text
|
|
|
|
|
.agents/
|
|
|
|
|
plugins/
|
|
|
|
|
marketplace.json
|
|
|
|
|
plugins/
|
|
|
|
|
staged-implementation/
|
|
|
|
|
.codex-plugin/
|
|
|
|
|
plugin.json
|
|
|
|
|
skills/
|
|
|
|
|
planner/
|
|
|
|
|
orchestrator/
|
|
|
|
|
implementer/
|
|
|
|
|
validator/
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Updating
|
|
|
|
|
|
2026-06-10 16:00:09 +02:00
|
|
|
After pushing changes, refresh the marketplace snapshot:
|
2026-06-10 11:16:10 +02:00
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
codex plugin marketplace upgrade arcana-codex-plugins
|
2026-06-10 16:00:09 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If `plugins/staged-implementation/` changed, reinstall the plugin:
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-06-10 11:16:10 +02:00
|
|
|
codex plugin add staged-implementation@arcana-codex-plugins
|
|
|
|
|
```
|
2026-06-10 16:00:09 +02:00
|
|
|
|
|
|
|
|
Start a new Codex session after reinstalling so updated skills are loaded.
|