@automagik/genie 4.260504.3 → 4.260504.5
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 +20 -0
- package/dist/genie.js +142 -141
- package/package.json +1 -1
- package/plugins/genie/.claude-plugin/plugin.json +1 -1
- package/plugins/genie/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,6 +67,26 @@ Or install manually:
|
|
|
67
67
|
curl -fsSL https://raw.githubusercontent.com/automagik-dev/genie/main/install.sh | bash
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
+
### Manual install (canonical pgserve first)
|
|
71
|
+
|
|
72
|
+
If you'd rather lay the pieces down yourself, install canonical pgserve
|
|
73
|
+
before genie. Genie is a consumer of the pm2-supervised pgserve daemon —
|
|
74
|
+
it never spawns its own. See [docs/install.md](docs/install.md) for the
|
|
75
|
+
rationale and migration tips.
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
# 1. Canonical pgserve (registers a pm2-supervised singleton)
|
|
79
|
+
bun add -g pgserve@^2
|
|
80
|
+
pgserve install
|
|
81
|
+
|
|
82
|
+
# 2. Genie (will refuse to install if pgserve is unreachable)
|
|
83
|
+
bun add -g @automagik/genie
|
|
84
|
+
genie install
|
|
85
|
+
|
|
86
|
+
# 3. Verify
|
|
87
|
+
genie doctor
|
|
88
|
+
```
|
|
89
|
+
|
|
70
90
|
## What you get
|
|
71
91
|
|
|
72
92
|
```
|