openboot 0.1.0 → 0.1.2
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 +54 -219
- package/dist/cli.js +28 -1
- package/dist/cli.js.map +1 -1
- package/dist/commands/agent.d.ts +6 -0
- package/dist/commands/agent.d.ts.map +1 -0
- package/dist/commands/agent.js +293 -0
- package/dist/commands/agent.js.map +1 -0
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +13 -0
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/update.d.ts +13 -0
- package/dist/commands/update.d.ts.map +1 -0
- package/dist/commands/update.js +117 -0
- package/dist/commands/update.js.map +1 -0
- package/dist/lib/agent.d.ts +87 -0
- package/dist/lib/agent.d.ts.map +1 -0
- package/dist/lib/agent.js +606 -0
- package/dist/lib/agent.js.map +1 -0
- package/dist/types.d.ts +10 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,18 +1,22 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Openboot
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> Stop writing start scripts. Stop copy-pasting agent files. Just boot.
|
|
4
|
+
|
|
5
|
+
Every project has the same problem: a README that says "run these 12 commands to get started," a `start.sh` that half works, Docker containers you forgot to start, and env vars you didn't set. New teammates spend hours just trying to run the thing.
|
|
6
|
+
|
|
7
|
+
Then there's the AI problem: every tool wants its own instruction file — `.cursorrules`, `AGENTS.md`, `CLAUDE.md`. `SKILL.md`, `SOUL.md`, `copilot-instructions.md`, and you're copy-pasting the same conventions between projects and files.
|
|
8
|
+
|
|
9
|
+
Boot fixes both. One config file, one command, everything starts, and your AI agent context stays in sync across every tool and every project.
|
|
4
10
|
|
|
5
11
|
```
|
|
6
|
-
boot init
|
|
7
|
-
boot setup
|
|
8
|
-
boot up
|
|
9
|
-
boot
|
|
10
|
-
boot
|
|
11
|
-
boot
|
|
12
|
-
boot
|
|
13
|
-
boot
|
|
14
|
-
boot logs → view service logs (boot logs api -f)
|
|
15
|
-
boot clean → nuke deps, caches, build outputs for a fresh start
|
|
12
|
+
boot init → creates boot.yaml (auto-detects your stack)
|
|
13
|
+
boot setup → one-time setup (deps, DB, migrations)
|
|
14
|
+
boot up → start everything (Docker + apps)
|
|
15
|
+
boot dev → interactive dev mode with live logs
|
|
16
|
+
boot down → stop everything
|
|
17
|
+
boot status → show what's running
|
|
18
|
+
boot logs → view service logs
|
|
19
|
+
boot agent init → generate AI agent context for your tools
|
|
16
20
|
```
|
|
17
21
|
|
|
18
22
|
## Install
|
|
@@ -21,252 +25,83 @@ boot clean → nuke deps, caches, build outputs for a fresh start
|
|
|
21
25
|
npm install -g openboot
|
|
22
26
|
```
|
|
23
27
|
|
|
24
|
-
|
|
28
|
+
## Quick Start
|
|
25
29
|
|
|
26
30
|
```bash
|
|
27
|
-
|
|
31
|
+
boot init # auto-detects your stack, creates boot.yaml
|
|
32
|
+
boot setup # install deps, start DB, run migrations
|
|
33
|
+
boot dev # start everything with live logs (Ctrl+C stops all)
|
|
28
34
|
```
|
|
29
35
|
|
|
30
|
-
|
|
36
|
+
That's it. Boot detects your Docker services, apps, package manager, env requirements, and generates the config.
|
|
37
|
+
|
|
38
|
+
## AI Agent Context
|
|
39
|
+
|
|
40
|
+
Boot generates instruction files for AI coding tools — one source of truth, synced to `.cursorrules`, `AGENTS.md`, `CLAUDE.md`, and `.github/copilot-instructions.md`.
|
|
31
41
|
|
|
32
42
|
```bash
|
|
33
|
-
#
|
|
34
|
-
boot
|
|
35
|
-
boot
|
|
36
|
-
boot
|
|
37
|
-
boot
|
|
43
|
+
boot agent init # generate from your stack + config
|
|
44
|
+
boot agent sync # regenerate after editing boot.yaml
|
|
45
|
+
boot agent check # verify targets are in sync (CI-friendly)
|
|
46
|
+
boot agent remember # save patterns that carry across projects
|
|
47
|
+
boot agent save # push conventions to your global store
|
|
48
|
+
boot agent status # see what Boot knows about your project
|
|
38
49
|
```
|
|
39
50
|
|
|
40
|
-
|
|
51
|
+
Your conventions live in `~/.boot/agent/` and follow you to every project. When you run `boot agent init` in a new repo, your personal patterns are included automatically.
|
|
52
|
+
|
|
53
|
+
Import from another project:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
boot agent init --from ~/other-project
|
|
57
|
+
```
|
|
41
58
|
|
|
42
59
|
## Config
|
|
43
60
|
|
|
44
|
-
`boot init` creates a `boot.yaml
|
|
61
|
+
`boot init` creates a `boot.yaml`:
|
|
45
62
|
|
|
46
63
|
```yaml
|
|
47
64
|
name: my-project
|
|
48
65
|
|
|
49
|
-
env:
|
|
50
|
-
file: .env
|
|
51
|
-
required:
|
|
52
|
-
- DATABASE_URL
|
|
53
|
-
- JWT_SECRET
|
|
54
|
-
reject:
|
|
55
|
-
JWT_SECRET:
|
|
56
|
-
- your-super-secret-jwt-key-change-this
|
|
57
|
-
|
|
58
66
|
setup:
|
|
59
67
|
- pnpm install
|
|
60
|
-
- pnpm db:generate
|
|
61
68
|
- pnpm db:push
|
|
62
69
|
|
|
63
70
|
docker:
|
|
64
|
-
# Option A: Docker Compose
|
|
65
71
|
composeFile: docker-compose.yml
|
|
66
72
|
services:
|
|
67
73
|
- name: postgres
|
|
68
|
-
container: my-project-postgres
|
|
69
|
-
readyCheck: pg_isready -U postgres
|
|
70
|
-
timeout: 30
|
|
71
|
-
|
|
72
|
-
# Option B: Standalone containers (no compose needed)
|
|
73
|
-
containers:
|
|
74
|
-
- name: my-db
|
|
75
|
-
image: postgres:15
|
|
76
|
-
ports:
|
|
77
|
-
- "5433:5432"
|
|
78
|
-
env:
|
|
79
|
-
POSTGRES_DB: myapp
|
|
80
|
-
POSTGRES_PASSWORD: secret
|
|
81
74
|
readyCheck: pg_isready -U postgres
|
|
82
|
-
timeout: 30
|
|
83
75
|
|
|
84
76
|
apps:
|
|
85
77
|
- name: api
|
|
86
78
|
path: apps/api
|
|
87
79
|
command: pnpm dev
|
|
88
80
|
port: 3001
|
|
89
|
-
health: http://localhost:3001/health
|
|
90
81
|
- name: web
|
|
91
82
|
path: apps/web
|
|
92
83
|
command: pnpm dev
|
|
93
84
|
port: 3000
|
|
94
|
-
health: http://localhost:3000
|
|
95
|
-
```
|
|
96
|
-
|
|
97
|
-
### Config Reference
|
|
98
|
-
|
|
99
|
-
| Field | Description |
|
|
100
|
-
|-------|-------------|
|
|
101
|
-
| `name` | Project name (display only) |
|
|
102
|
-
| `packageManager` | `pnpm`, `npm`, or `yarn` (auto-detected if omitted) |
|
|
103
|
-
| **env** | |
|
|
104
|
-
| `env.file` | Path to `.env` file (default: `.env`) |
|
|
105
|
-
| `env.required` | Env vars that must be set — `boot up` fails if missing |
|
|
106
|
-
| `env.reject` | Values to reject per key (blocks example/default secrets) |
|
|
107
|
-
| **setup** | |
|
|
108
|
-
| `setup` | Commands to run on `boot setup` |
|
|
109
|
-
| **docker** | |
|
|
110
|
-
| `docker.composeFile` | Path to compose file (default: `docker-compose.yml`) |
|
|
111
|
-
| `docker.services[].name` | Compose service name |
|
|
112
|
-
| `docker.services[].container` | Container name for `docker exec` |
|
|
113
|
-
| `docker.services[].readyCheck` | Command to check if service is ready |
|
|
114
|
-
| `docker.services[].timeout` | Seconds to wait for readiness (default: 30) |
|
|
115
|
-
| `docker.containers[].name` | Standalone container name |
|
|
116
|
-
| `docker.containers[].image` | Docker image (e.g. `postgres:15`) |
|
|
117
|
-
| `docker.containers[].ports` | Port mappings (e.g. `"5433:5432"`) |
|
|
118
|
-
| `docker.containers[].env` | Environment variables for the container |
|
|
119
|
-
| `docker.containers[].volumes` | Volume mounts |
|
|
120
|
-
| `docker.containers[].readyCheck` | Readiness check command |
|
|
121
|
-
| `docker.containers[].timeout` | Seconds to wait (default: 30) |
|
|
122
|
-
| **apps** | |
|
|
123
|
-
| `apps[].name` | App name (used for logs and PID tracking) |
|
|
124
|
-
| `apps[].path` | Working directory relative to project root |
|
|
125
|
-
| `apps[].command` | Command to start the app |
|
|
126
|
-
| `apps[].port` | Port the app listens on |
|
|
127
|
-
| `apps[].health` | URL to poll for health check |
|
|
128
|
-
| `apps[].env` | Extra environment variables |
|
|
129
|
-
|
|
130
|
-
## What `boot init` Auto-Detects
|
|
131
|
-
|
|
132
|
-
- **Package manager** — from lockfiles (`pnpm-lock.yaml`, `yarn.lock`, `package-lock.json`)
|
|
133
|
-
- **Docker Compose** — `docker-compose.yml` / `compose.yml`
|
|
134
|
-
- **Raw Docker containers** — scans `scripts/*.sh` for `docker start` / `docker run` patterns
|
|
135
|
-
- **Database services** — Postgres, MySQL, Redis (with appropriate readiness checks)
|
|
136
|
-
- **Monorepo apps** — scans `apps/*/package.json` for dev scripts
|
|
137
|
-
- **Sub-directory apps** — detects `dashboard/`, `frontend/`, `backend/`, `server/`, etc.
|
|
138
|
-
- **Single-app projects** — detects `dev` or `start` scripts in root `package.json`
|
|
139
|
-
- **Prisma** — detects `prisma/` directory and adds generate/push to setup
|
|
140
|
-
- **Ports** — guesses 3000 for web/frontend, 3001 for api/server
|
|
141
|
-
- **`.env` requirements** — parses `env.example` / `.env.example` for required and sensitive vars
|
|
142
|
-
|
|
143
|
-
## What Each Command Does
|
|
144
|
-
|
|
145
|
-
### `boot up`
|
|
146
|
-
|
|
147
|
-
1. Checks prerequisites (Node.js 18+, Docker if needed)
|
|
148
|
-
2. Auto-creates `.env` from template (`env.example` / `.env.example`) if missing
|
|
149
|
-
3. Validates `.env` file (required vars, rejects default secrets)
|
|
150
|
-
4. Ensures package manager is available (auto-enables pnpm/yarn via corepack)
|
|
151
|
-
5. Auto-installs root deps if `node_modules` is missing
|
|
152
|
-
6. Auto-installs per-app deps in monorepo sub-apps
|
|
153
|
-
7. Smart Prisma check — generates client only if `.prisma` is missing
|
|
154
|
-
8. Starts Docker (compose services and/or standalone containers)
|
|
155
|
-
9. Waits for each service's readiness check
|
|
156
|
-
10. Starts each app in the background
|
|
157
|
-
11. Polls health URLs until ready
|
|
158
|
-
12. Prints summary with URLs
|
|
159
|
-
|
|
160
|
-
#### `boot up --attach` / `boot up -a`
|
|
161
|
-
|
|
162
|
-
Same as `boot up` but after starting, streams all app logs to your terminal (color-coded by service). Press Ctrl+C to detach — services keep running in the background.
|
|
163
|
-
|
|
164
|
-
### `boot dev`
|
|
165
85
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
3. Streams live, color-coded logs for every service
|
|
171
|
-
4. **Ctrl+C gracefully stops everything** (apps + Docker)
|
|
172
|
-
|
|
173
|
-
This is the "one terminal" experience. No separate tabs needed.
|
|
174
|
-
|
|
175
|
-
### `boot down`
|
|
176
|
-
|
|
177
|
-
1. Stops all tracked app processes (SIGTERM → SIGKILL)
|
|
178
|
-
2. Falls back to `pkill -f` if PID file is stale (catches orphan processes)
|
|
179
|
-
3. Force-kills anything still holding app ports
|
|
180
|
-
4. Stops standalone Docker containers
|
|
181
|
-
5. Stops Docker Compose services
|
|
182
|
-
|
|
183
|
-
### `boot status`
|
|
184
|
-
|
|
185
|
-
Shows a table of all services with:
|
|
186
|
-
- Status (running / stopped / port in use)
|
|
187
|
-
- Port numbers
|
|
188
|
-
- PIDs (with mismatch warnings if PID file ≠ port owner)
|
|
189
|
-
- Process name (what binary is actually running, e.g. `node`, `nuxt`)
|
|
190
|
-
- Live health checks (curl for apps, `pg_isready` / `redis-cli ping` for DBs)
|
|
191
|
-
- Log file paths
|
|
192
|
-
|
|
193
|
-
### `boot clean`
|
|
194
|
-
|
|
195
|
-
Nukes everything for a fresh start:
|
|
196
|
-
1. Removes `node_modules` in root and all sub-apps
|
|
197
|
-
2. Removes lockfiles (`package-lock.json`, `yarn.lock`)
|
|
198
|
-
3. Removes caches (`.nuxt`, `.next`, `.turbo`, `.vite`, `.parcel-cache`)
|
|
199
|
-
4. Removes build outputs (`dist/`, `build/`)
|
|
200
|
-
5. Removes `.boot/` runtime data (PIDs, logs)
|
|
201
|
-
6. Pass `--all` to also remove `pnpm-lock.yaml`
|
|
202
|
-
|
|
203
|
-
### `boot logs`
|
|
204
|
-
|
|
205
|
-
View logs for any service:
|
|
206
|
-
```bash
|
|
207
|
-
boot logs # show recent logs for all services
|
|
208
|
-
boot logs api # show logs for a specific service
|
|
209
|
-
boot logs api -f # follow mode (like tail -f)
|
|
210
|
-
boot logs api -n 100 # last 100 lines
|
|
211
|
-
boot logs postgres # Docker container logs too
|
|
212
|
-
```
|
|
213
|
-
|
|
214
|
-
### `boot setup`
|
|
215
|
-
|
|
216
|
-
One-time setup with smart Prisma handling:
|
|
217
|
-
1. Checks prerequisites (Node.js, Docker)
|
|
218
|
-
2. Auto-creates `.env` from template
|
|
219
|
-
3. Starts Docker services (DB needs to be up for migrations)
|
|
220
|
-
4. Runs configured setup commands
|
|
221
|
-
5. Smart Prisma: generate client + migrations with fallback (`migrate deploy` → `db push`)
|
|
222
|
-
6. Non-fatal seed failures (skips gracefully)
|
|
223
|
-
|
|
224
|
-
### `boot reboot`
|
|
225
|
-
|
|
226
|
-
Runs `down` then `up`.
|
|
227
|
-
|
|
228
|
-
## Development Workflow
|
|
229
|
-
|
|
230
|
-
```bash
|
|
231
|
-
# Option 1: Background (CI-friendly, scriptable)
|
|
232
|
-
boot up # starts everything, exits immediately
|
|
233
|
-
boot logs api -f # follow one service's logs in another terminal
|
|
234
|
-
boot down # stop when done
|
|
235
|
-
|
|
236
|
-
# Option 2: Attach (start background + watch logs)
|
|
237
|
-
boot up --attach # starts everything, streams logs; Ctrl+C detaches (services stay up)
|
|
238
|
-
boot down # stop when done
|
|
86
|
+
env:
|
|
87
|
+
required:
|
|
88
|
+
- DATABASE_URL
|
|
89
|
+
- JWT_SECRET
|
|
239
90
|
|
|
240
|
-
|
|
241
|
-
|
|
91
|
+
agent:
|
|
92
|
+
conventions:
|
|
93
|
+
- Use server components by default
|
|
94
|
+
- All DB access through Prisma
|
|
95
|
+
targets:
|
|
96
|
+
- .cursorrules
|
|
97
|
+
- AGENTS.md
|
|
98
|
+
- CLAUDE.md
|
|
99
|
+
- .github/copilot-instructions.md
|
|
242
100
|
```
|
|
243
101
|
|
|
244
|
-
##
|
|
245
|
-
|
|
246
|
-
Boot handles two styles of Docker usage:
|
|
247
|
-
|
|
248
|
-
### Docker Compose
|
|
249
|
-
For projects with a `docker-compose.yml`:
|
|
250
|
-
- `boot up` runs `docker compose up -d`
|
|
251
|
-
- Detects port conflicts and auto-remaps to free ports
|
|
252
|
-
- Reuses existing containers when possible
|
|
253
|
-
|
|
254
|
-
### Standalone Containers
|
|
255
|
-
For projects that use raw `docker run` (no compose):
|
|
256
|
-
- Starts existing stopped containers with `docker start`
|
|
257
|
-
- Creates new containers with `docker run -d` if needed
|
|
258
|
-
- Port conflict detection + auto-remap
|
|
259
|
-
|
|
260
|
-
## Process Management
|
|
261
|
-
|
|
262
|
-
- App processes run in the background (detached)
|
|
263
|
-
- PIDs are stored in `.boot/pids/`
|
|
264
|
-
- Logs are written to `.boot/logs/`
|
|
265
|
-
- `boot down` kills the full process tree (not just the parent)
|
|
266
|
-
- Falls back to `pkill -f` for orphan process cleanup
|
|
267
|
-
- Ports are freed before starting if occupied
|
|
102
|
+
## Docs
|
|
268
103
|
|
|
269
|
-
|
|
104
|
+
See [DETAILED.md](DETAILED.md) for the full config reference, auto-detection list, and command details.
|
|
270
105
|
|
|
271
106
|
## License
|
|
272
107
|
|
package/dist/cli.js
CHANGED
|
@@ -11,11 +11,13 @@ const status_1 = require("./commands/status");
|
|
|
11
11
|
const clean_1 = require("./commands/clean");
|
|
12
12
|
const logs_1 = require("./commands/logs");
|
|
13
13
|
const dev_1 = require("./commands/dev");
|
|
14
|
+
const agent_1 = require("./commands/agent");
|
|
15
|
+
const update_1 = require("./commands/update");
|
|
14
16
|
const program = new commander_1.Command();
|
|
15
17
|
program
|
|
16
18
|
.name("boot")
|
|
17
19
|
.description("Dev stack lifecycle manager. One command to setup, start, stop, and reboot your projects.")
|
|
18
|
-
.version(
|
|
20
|
+
.version((0, update_1.getCurrentVersion)(), "-V, --version", "Output the version number");
|
|
19
21
|
program
|
|
20
22
|
.command("init")
|
|
21
23
|
.description("Auto-detect project structure and create boot.yaml")
|
|
@@ -128,5 +130,30 @@ program
|
|
|
128
130
|
process.exit(1);
|
|
129
131
|
}
|
|
130
132
|
});
|
|
133
|
+
program
|
|
134
|
+
.command("version")
|
|
135
|
+
.description("Show current version and check for updates")
|
|
136
|
+
.action(async () => {
|
|
137
|
+
try {
|
|
138
|
+
await (0, update_1.version)();
|
|
139
|
+
}
|
|
140
|
+
catch (err) {
|
|
141
|
+
console.error(err.message);
|
|
142
|
+
process.exit(1);
|
|
143
|
+
}
|
|
144
|
+
});
|
|
145
|
+
program
|
|
146
|
+
.command("update")
|
|
147
|
+
.description("Update openboot to the latest version")
|
|
148
|
+
.action(async () => {
|
|
149
|
+
try {
|
|
150
|
+
await (0, update_1.update)();
|
|
151
|
+
}
|
|
152
|
+
catch (err) {
|
|
153
|
+
console.error(err.message);
|
|
154
|
+
process.exit(1);
|
|
155
|
+
}
|
|
156
|
+
});
|
|
157
|
+
(0, agent_1.registerAgentCommands)(program);
|
|
131
158
|
program.parse();
|
|
132
159
|
//# sourceMappingURL=cli.js.map
|
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";;;AAEA,yCAAoC;AACpC,0CAAuC;AACvC,4CAAyC;AACzC,sCAAmC;AACnC,0CAAuC;AACvC,8CAA2C;AAC3C,8CAA2C;AAC3C,4CAAyC;AACzC,0CAAuC;AACvC,wCAAqC;
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../../src/commands/agent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAuBpC;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CA8R5D"}
|