@automagik/genie 4.260426.2 → 4.260426.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/dist/genie.js +25 -25
- package/package.json +2 -1
- package/plugins/genie/.claude-plugin/plugin.json +1 -1
- package/plugins/genie/package.json +1 -1
- package/scripts/tmux/.generated.theme.conf +45 -0
- package/scripts/tmux/generate-theme.sh +17 -0
- package/scripts/tmux/generate-theme.ts +122 -0
- package/scripts/tmux/genie-projects.sh +53 -9
- package/scripts/tmux/genie-sessions.sh +39 -4
- package/scripts/tmux/genie.tmux.conf +14 -43
- package/scripts/tmux/tui-tmux.conf +5 -3
package/README.md
CHANGED
|
@@ -186,10 +186,15 @@ CREATE ROLE omni_scope_enforcer LOGIN PASSWORD '…' IN ROLE executors_reader;
|
|
|
186
186
|
Response shape (`state` / `outcome` / `closed_at`) is the stable boundary
|
|
187
187
|
contract; removing or renaming fields is a coordinated breaking change.
|
|
188
188
|
|
|
189
|
+
## Design
|
|
190
|
+
|
|
191
|
+
Genie ships a single, dark-only color palette inspired by **Severance** — the Lumon MDR room. One source of truth (`packages/genie-tokens/`), three consumers (TUI, desktop app, tmux). See [docs/design-system.md](docs/design-system.md) for tokens, the Severance rationale, how to add a color, how to regenerate the tmux theme, and the visual snapshot workflow.
|
|
192
|
+
|
|
189
193
|
---
|
|
190
194
|
|
|
191
195
|
<p align="center">
|
|
192
196
|
<a href="https://docs.automagik.dev/genie"><strong>Docs</strong></a> ·
|
|
197
|
+
<a href="docs/design-system.md"><strong>Design</strong></a> ·
|
|
193
198
|
<a href="https://github.com/automagik-dev/genie/releases/tag/v4.260402.18"><strong>v4 Release</strong></a> ·
|
|
194
199
|
<a href="https://discord.gg/xcW8c7fF3R"><strong>Discord</strong></a> ·
|
|
195
200
|
<a href="LICENSE"><strong>MIT License</strong></a>
|