@a5c-ai/babysitter-codex 0.1.6-staging.dfcd1fad → 0.1.6-staging.ee25a34f

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.
Files changed (57) hide show
  1. package/.codex/config.toml +3 -2
  2. package/.codex/skills/assimilate/SKILL.md +17 -0
  3. package/.codex/skills/babysit/SKILL.md +378 -0
  4. package/.codex/skills/call/SKILL.md +16 -0
  5. package/.codex/skills/doctor/SKILL.md +16 -0
  6. package/.codex/skills/forever/SKILL.md +15 -0
  7. package/.codex/skills/help/SKILL.md +15 -0
  8. package/.codex/skills/issue/SKILL.md +16 -0
  9. package/.codex/skills/model/SKILL.md +15 -0
  10. package/.codex/skills/observe/SKILL.md +15 -0
  11. package/.codex/skills/plan/SKILL.md +16 -0
  12. package/.codex/skills/project-install/SKILL.md +15 -0
  13. package/.codex/skills/resume/SKILL.md +15 -0
  14. package/.codex/skills/retrospect/SKILL.md +15 -0
  15. package/.codex/skills/team-install/SKILL.md +15 -0
  16. package/.codex/skills/user-install/SKILL.md +15 -0
  17. package/.codex/skills/yolo/SKILL.md +16 -0
  18. package/README.md +67 -46
  19. package/SKILL.md +319 -44
  20. package/bin/cli.js +104 -0
  21. package/bin/install.js +452 -0
  22. package/bin/uninstall.js +141 -37
  23. package/package.json +6 -8
  24. package/scripts/team-install.js +190 -55
  25. package/.codex/skills/babysitter/assimilate/SKILL.md +0 -58
  26. package/.codex/skills/babysitter/call/SKILL.md +0 -588
  27. package/.codex/skills/babysitter/doctor/SKILL.md +0 -89
  28. package/.codex/skills/babysitter/forever/SKILL.md +0 -45
  29. package/.codex/skills/babysitter/help/SKILL.md +0 -48
  30. package/.codex/skills/babysitter/issue/SKILL.md +0 -36
  31. package/.codex/skills/babysitter/model/SKILL.md +0 -31
  32. package/.codex/skills/babysitter/observe/SKILL.md +0 -38
  33. package/.codex/skills/babysitter/plan/SKILL.md +0 -44
  34. package/.codex/skills/babysitter/project-install/SKILL.md +0 -62
  35. package/.codex/skills/babysitter/resume/SKILL.md +0 -30
  36. package/.codex/skills/babysitter/retrospect/SKILL.md +0 -43
  37. package/.codex/skills/babysitter/team-install/SKILL.md +0 -35
  38. package/.codex/skills/babysitter/user-install/SKILL.md +0 -53
  39. package/.codex/skills/babysitter/yolo/SKILL.md +0 -48
  40. package/agents/openai.yaml +0 -4
  41. package/bin/postinstall.js +0 -224
  42. package/commands/README.md +0 -23
  43. package/commands/assimilate.md +0 -26
  44. package/commands/call.md +0 -29
  45. package/commands/doctor.md +0 -27
  46. package/commands/forever.md +0 -26
  47. package/commands/help.md +0 -27
  48. package/commands/issue.md +0 -26
  49. package/commands/model.md +0 -26
  50. package/commands/observe.md +0 -26
  51. package/commands/plan.md +0 -26
  52. package/commands/project-install.md +0 -30
  53. package/commands/resume.md +0 -28
  54. package/commands/retrospect.md +0 -26
  55. package/commands/team-install.md +0 -28
  56. package/commands/user-install.md +0 -26
  57. package/commands/yolo.md +0 -27
@@ -5,8 +5,9 @@
5
5
  # - `features.codex_hooks = true` enables that engine on supported platforms
6
6
  # - `.a5c` stores babysitter session and run state
7
7
  #
8
- # `team-install` / `project-install` should materialize a workspace-local
9
- # `.codex/hooks.json` that points at the installed hook scripts.
8
+ # Global install should materialize `~/.codex/hooks.json` and `~/.codex/hooks/`.
9
+ # `team-install` / `project-install` should materialize workspace-local
10
+ # `.codex/hooks.json` and `.codex/hooks/` for repo-level pinning.
10
11
 
11
12
  approval_policy = "on-request"
12
13
  sandbox_mode = "workspace-write"
@@ -0,0 +1,17 @@
1
+ ---
2
+ name: assimilate
3
+ description: Assimilate an external methodology, repo, spec, or process into a Babysitter workflow.
4
+ ---
5
+
6
+ # assimilate
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `assimilate` mode:
11
+
12
+ - treat everything after `$assimilate` as the target repo, methodology, spec,
13
+ or reference to ingest
14
+ - follow the `babysit` skill contract for research, process-library discovery,
15
+ and orchestration
16
+ - do not create a separate command surface here; this skill only forwards into
17
+ `babysit`
@@ -0,0 +1,378 @@
1
+ ---
2
+ name: babysit
3
+ description: >-
4
+ Run babysitter workflows from Codex using the installed babysit skill bundle,
5
+ Codex mode-wrapper skills, Codex hooks/config, and the Babysitter SDK runtime
6
+ loop. Use when the user wants to babysit a task, start or resume a run,
7
+ diagnose run health, install Codex integration, or assimilate a methodology.
8
+ ---
9
+
10
+ # babysit
11
+
12
+ Babysitter on Codex is implemented as:
13
+
14
+ - the installed core skill under `~/.codex/skills/babysit` or `.codex/skills/babysit`
15
+ - installed mode-wrapper skills under `~/.codex/skills/<mode>` or `.codex/skills/<mode>`
16
+ - global `~/.codex/hooks.json` and `~/.codex/hooks/`
17
+ - global `~/.codex/config.toml`
18
+ - optional workspace `.codex/hooks.json` and `.codex/hooks/`
19
+ - optional workspace `.codex/config.toml`
20
+ - workspace `.a5c/`
21
+ - shared global `.a5c/` process-library state
22
+ - the Babysitter SDK CLI for `run:create`, `run:iterate`, `run:status`,
23
+ `task:list`, `task:post`, and process-library binding
24
+
25
+ This package supports only the hooks model for the Codex plugin path. Do not
26
+ introduce an app-server loop, an external orchestrator, or fake plugin-manifest
27
+ machinery for the Codex integration.
28
+
29
+ ## Choosing a Mode
30
+
31
+ Use this skill whenever it is invoked directly, and whenever one of the
32
+ installed mode-wrapper skills such as `$call`, `$plan`, `$resume`, or `$yolo`
33
+ loads it.
34
+
35
+ Choose the mode from either:
36
+
37
+ 1. the direct user intent when the skill is invoked as `$babysit`
38
+ 2. the installed wrapper skill name when the user invoked `$call`, `$plan`,
39
+ `$resume`, `$yolo`, and the rest
40
+
41
+ | User intent | Mode |
42
+ |-------------|------|
43
+ | Start an orchestration run | `call` |
44
+ | Work an issue-centric flow | `issue` |
45
+ | Run autonomously | `yolo` |
46
+ | Run continuously / recurring workflow | `forever` |
47
+ | Resume an existing run | `resume` |
48
+ | Plan without executing | `plan` |
49
+ | Observe or inspect a run | `observe` |
50
+ | Summarize a completed run | `retrospect` |
51
+ | Diagnose run health | `doctor` |
52
+ | Change or inspect model routing | `model` |
53
+ | Help and documentation | `help` |
54
+ | Install into a project | `project-install` |
55
+ | Install user profile/setup | `user-install` |
56
+ | Install team-pinned setup | `team-install` |
57
+ | Assimilate external methodology | `assimilate` |
58
+
59
+ Deprecated prompt aliases are not the Codex command surface anymore. Do not
60
+ depend on `.codex/prompts` for normal operation.
61
+
62
+ ## Dependencies
63
+
64
+ ### Babysitter SDK and CLI
65
+
66
+ Use the installed CLI alias:
67
+
68
+ ```bash
69
+ CLI="babysitter"
70
+ ```
71
+
72
+ If it is not available on the path, use:
73
+
74
+ ```bash
75
+ CLI="npx -y @a5c-ai/babysitter-sdk"
76
+ ```
77
+
78
+ ### jq
79
+
80
+ Make sure `jq` is available in the path. Install it if missing.
81
+
82
+ ## Core Iteration Workflow
83
+
84
+ The Babysitter workflow has 8 steps:
85
+
86
+ 1. **Create or find the process** - interview the user or parse the prompt,
87
+ research the repo and process library, and build a process definition
88
+ 2. **Create run and bind session** - create the run via the Babysitter CLI and
89
+ bind it to the current Codex session honestly
90
+ 3. **Run iteration** - execute one orchestration step
91
+ 4. **Get effects** - inspect pending effects
92
+ 5. **Perform effects** - execute the requested tasks through skills, agents, or
93
+ shell work
94
+ 6. **Post results** - commit results back through `task:post`
95
+ 7. **Stop and yield** - the Codex stop hook decides whether to continue
96
+ 8. **Completion proof** - finish only when the emitted proof is returned
97
+
98
+ ### 1. Create or find the process for the run
99
+
100
+ #### Interview phase
101
+
102
+ ##### Interactive mode (default)
103
+
104
+ Interview the user for intent, requirements, goals, scope, and constraints
105
+ before entering the hook-driven loop.
106
+
107
+ This phase should be iterative and adaptive:
108
+
109
+ - inspect the current repo state first
110
+ - resolve the active process-library root with
111
+ `babysitter process-library:active --json`
112
+ - conduct an actual search against that active process library before writing a
113
+ process
114
+ - research the repo, online references, methodologies, specializations, skills,
115
+ agents, and related processes as needed
116
+ - ask the user follow-up questions when the intent or constraints are still not
117
+ clear
118
+
119
+ Do not plan more than one step ahead during the interview phase. After each
120
+ step, decide the next best step from the current evidence.
121
+
122
+ The `process-library:active` command bootstraps the shared global SDK process
123
+ library automatically if no binding exists yet. Read:
124
+
125
+ - `binding.dir` as the active process-library root that must be searched
126
+ - `defaultSpec.cloneDir` as the cloned repo root when adjacent repo-level
127
+ material is needed
128
+
129
+ After that, treat `specializations/**/**/**`, `methodologies/`, `contrib/`, and
130
+ `reference/` as paths relative to `binding.dir`.
131
+
132
+ ##### Non-interactive mode
133
+
134
+ When running non-interactively:
135
+
136
+ 1. parse the initial prompt to extract intent, scope, and constraints
137
+ 2. inspect the repo structure
138
+ 3. resolve the active process-library root with
139
+ `babysitter process-library:active --json`
140
+ 4. search that active library for the most relevant specialization,
141
+ methodology, process, skill, or agent
142
+ 5. proceed directly to process creation
143
+
144
+ Do not skip the active-library search step.
145
+
146
+ #### User Profile Integration
147
+
148
+ Before building the process, check for an existing user profile:
149
+
150
+ 1. run `babysitter profile:read --user --json`
151
+ 2. use the profile to pre-fill user preferences, expertise, and communication
152
+ style
153
+ 3. calibrate breakpoint density from `breakpointTolerance`
154
+ 4. prefer tools, skills, and agents the user already uses
155
+ 5. adapt explanations and breakpoint text to the user's communication style
156
+ 6. if no profile exists, proceed normally and consider suggesting `$user-install`
157
+
158
+ All profile read/write/merge/render operations must go through the Babysitter
159
+ CLI, never direct SDK imports.
160
+
161
+ #### Process creation phase
162
+
163
+ After the interview phase, create the full custom process files for the run
164
+ according to the process-library patterns and the process-creation guidelines
165
+ below.
166
+
167
+ Install `@a5c-ai/babysitter-sdk` into `.a5c/` if it is missing. When doing so,
168
+ run the install from the project root and use either `npm i --prefix .a5c ...`
169
+ or a subshell so the working directory does not stay inside `.a5c/`.
170
+
171
+ Always use an **absolute path** for `--entry` when calling `run:create`.
172
+
173
+ After the process is created and before creating the run:
174
+
175
+ - in interactive mode, describe the process at a high level, generate
176
+ `[process-name].diagram.md` and `[process-name].process.md`, and get user
177
+ confirmation before proceeding
178
+ - in non-interactive mode, proceed directly to `run:create`
179
+
180
+ Common mistakes to avoid:
181
+
182
+ - wrong: skipping repo/process-library research before writing the process
183
+ - wrong: bypassing the orchestration model with helper scripts or inline logic
184
+ - wrong: using `kind: 'node'` in generated tasks
185
+ - correct: use `agent` or `skill` tasks for reasoning work, with `shell` only
186
+ for existing CLIs, tests, linters, git, or builds
187
+ - correct: include verification loops, refinement loops, quality gates, and
188
+ breakpoints where appropriate
189
+
190
+ ### 2. Create run and bind session
191
+
192
+ For new runs:
193
+
194
+ ```bash
195
+ $CLI run:create \
196
+ --process-id <id> \
197
+ --entry <absolute-path>#<export> \
198
+ --inputs <file> \
199
+ --prompt "$PROMPT" \
200
+ --harness codex \
201
+ --plugin-root "${CODEX_PLUGIN_ROOT}" \
202
+ --json
203
+ ```
204
+
205
+ Required flags:
206
+
207
+ - `--process-id <id>` - unique identifier for the process definition
208
+ - `--entry <absolute-path>#<export>` - process JS file plus named export
209
+ - `--prompt "$PROMPT"` - the user's initial request
210
+ - `--harness codex` - activates Codex session binding
211
+ - `--plugin-root "${CODEX_PLUGIN_ROOT}"` - plugin root used for session/state
212
+ resolution
213
+
214
+ Optional flags:
215
+
216
+ - `--inputs <file>` - process input JSON
217
+ - `--run-id <id>` - override the generated run id
218
+ - `--runs-dir <dir>` - override the default runs directory
219
+
220
+ Inside a real Codex hook/session environment, do **not** pass `--session-id`
221
+ explicitly. The Codex adapter auto-resolves the session/thread id from
222
+ `CODEX_THREAD_ID`, `CODEX_SESSION_ID`, or `CODEX_ENV_FILE`. Only pass
223
+ `--session-id` in out-of-band recovery flows where no ambient Codex session
224
+ identity exists.
225
+
226
+ For resuming existing runs in a manual recovery flow:
227
+
228
+ ```bash
229
+ $CLI session:resume \
230
+ --session-id <id> \
231
+ --state-dir .a5c \
232
+ --run-id <runId> \
233
+ --runs-dir .a5c/runs \
234
+ --json
235
+ ```
236
+
237
+ ### 3. Run iteration
238
+
239
+ ```bash
240
+ $CLI run:iterate .a5c/runs/<runId> --json --iteration <n> --plugin-root "${CODEX_PLUGIN_ROOT}"
241
+ ```
242
+
243
+ Status values:
244
+
245
+ - `"executed"` - tasks executed, continue looping
246
+ - `"waiting"` - breakpoint or sleep is pending
247
+ - `"completed"` - run finished successfully
248
+ - `"failed"` - run failed
249
+ - `"none"` - no runnable effects exist
250
+
251
+ ### 4. Get effects
252
+
253
+ ```bash
254
+ $CLI task:list .a5c/runs/<runId> --pending --json
255
+ ```
256
+
257
+ ### 5. Perform effects
258
+
259
+ Run the effect externally to the SDK, then post the outcome summary with
260
+ `task:post`.
261
+
262
+ Important:
263
+
264
+ - delegate using Codex skills or agent tooling when possible
265
+ - make sure the requested change actually happened
266
+ - do not describe or imply success without verifying the requested effect
267
+ - do not use the `babysit` skill itself inside delegated task execution
268
+
269
+ #### 5.1 Breakpoint handling
270
+
271
+ ##### Interactive mode
272
+
273
+ Ask the user explicitly for approval. If the Codex environment provides a
274
+ structured question UI, include explicit approve/reject options. If not, ask in
275
+ chat and require an explicit approval response.
276
+
277
+ Never infer approval from silence, ambiguity, or dismissal.
278
+
279
+ Breakpoint rejections must still be posted with `--status ok` and a value such
280
+ as `{"approved": false, "response": "..."}`.
281
+
282
+ ##### Non-interactive mode
283
+
284
+ Choose the best option from context and post the result. Rejections still use
285
+ `--status ok` with `{"approved": false}`.
286
+
287
+ ### 6. Results posting
288
+
289
+ Never write `result.json` directly.
290
+
291
+ Workflow:
292
+
293
+ 1. write the result value to `tasks/<effectId>/output.json`
294
+ 2. call `task:post` with `--value tasks/<effectId>/output.json`
295
+ 3. let the SDK write `result.json`, append the journal event, and update state
296
+
297
+ ### 7. Stop after every phase after run-session association
298
+
299
+ After `run:create` or any posted effect result, stop and yield back to the
300
+ Codex hook loop. Do not run multiple `run:iterate` steps in the same turn.
301
+
302
+ ### 8. Completion proof
303
+
304
+ When `run:iterate` or `run:status` returns `completionProof`, return that exact
305
+ value wrapped in `<promise>...</promise>`.
306
+
307
+ ## Hook Loop
308
+
309
+ Global install must materialize `~/.codex/hooks.json`, `~/.codex/hooks/`, and
310
+ `~/.codex/config.toml`.
311
+
312
+ Workspace onboarding may also materialize `.codex/hooks.json`,
313
+ `.codex/hooks/`, and `.codex/config.toml` for repo-local pinning.
314
+
315
+ Both levels must provide:
316
+
317
+ 1. `SessionStart` seeds `.a5c` session state
318
+ 2. `UserPromptSubmit` performs prompt-time transformations when needed
319
+ 3. `Stop` decides whether the run is complete or Codex should receive the next
320
+ Babysitter iteration context
321
+
322
+ ## Task Kinds
323
+
324
+ Never generate `kind: 'node'` effects.
325
+
326
+ | Kind | When to use |
327
+ |------|-------------|
328
+ | `agent` | default for planning, implementation, analysis, debugging, scoring, research |
329
+ | `skill` | when a matching installed skill exists |
330
+ | `shell` | existing CLI tools, tests, git, linters, builds |
331
+ | `breakpoint` | human approval gates |
332
+ | `sleep` | time gates |
333
+
334
+ ## Process Creation Guidelines
335
+
336
+ - always research the repo and the active process library before writing the
337
+ process
338
+ - prefer composing multiple relevant library processes rather than copying just
339
+ one template blindly
340
+ - include verification and refinement loops
341
+ - prefer processes that close the widest practical quality loop
342
+ - add `@skill` and `@agent` discovery markers to generated process files for
343
+ the dependencies you actually selected
344
+ - prefer incremental work that can be tested as you go
345
+
346
+ Search for relevant processes, skills, agents, methodologies, and references
347
+ in:
348
+
349
+ 1. `.a5c/processes/`
350
+ 2. the active process-library root from `binding.dir`
351
+ 3. the cloned repo root from `defaultSpec.cloneDir` when adjacent material is
352
+ needed
353
+
354
+ ## Codex-Specific Rules
355
+
356
+ - `$babysit` is the core skill
357
+ - `$call`, `$plan`, `$resume`, `$yolo`, and the other mode skills are thin
358
+ wrappers that must only load `babysit` for the matching mode
359
+ - do not revive prompt aliases as a parallel integration surface
360
+ - do not fabricate a session id
361
+ - use `notify` only for telemetry or monitoring, never as the orchestration
362
+ control loop
363
+
364
+ ## Critical Rules
365
+
366
+ CRITICAL RULE: The completion proof is emitted only when the run is truly
367
+ completed. Output `<promise>SECRET</promise>` only when the orchestration status
368
+ is completed.
369
+
370
+ CRITICAL RULE: Never bypass the Babysitter orchestration model when this skill
371
+ is active. Do not replace it with ad-hoc direct execution.
372
+
373
+ CRITICAL RULE: Never build helper scripts or wrapper programs to drive the run.
374
+ Use the CLI and the hook loop directly.
375
+
376
+ CRITICAL RULE: In interactive mode, never auto-approve breakpoints.
377
+
378
+ CRITICAL RULE: Do not use `kind: 'node'` in generated process files.
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: call
3
+ description: Start a new Babysitter orchestration run from Codex.
4
+ ---
5
+
6
+ # call
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `call` mode:
11
+
12
+ - treat everything after `$call` as the initial Babysitter request for a new
13
+ orchestration run
14
+ - create the process, create the run, and enter the Babysitter loop
15
+ - do not create a separate command surface here; this skill only forwards into
16
+ `babysit`
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: doctor
3
+ description: Diagnose Babysitter run health, integration issues, or orchestration failures.
4
+ ---
5
+
6
+ # doctor
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `doctor` mode:
11
+
12
+ - treat everything after `$doctor` as the run selector, subsystem, or problem
13
+ statement to diagnose
14
+ - focus on run health, orchestration correctness, and recovery guidance
15
+ - do not create a separate command surface here; this skill only forwards into
16
+ `babysit`
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: forever
3
+ description: Run Babysitter in recurring or continuous workflow mode.
4
+ ---
5
+
6
+ # forever
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `forever` mode:
11
+
12
+ - treat everything after `$forever` as the recurring workflow request
13
+ - follow the `babysit` skill contract while optimizing for repeated execution
14
+ - do not create a separate command surface here; this skill only forwards into
15
+ `babysit`
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: help
3
+ description: Explain Babysitter Codex usage, modes, setup, or operational behavior.
4
+ ---
5
+
6
+ # help
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `help` mode:
11
+
12
+ - treat everything after `$help` as the help target or question
13
+ - focus on explaining the right Babysitter flow or integration surface
14
+ - do not create a separate command surface here; this skill only forwards into
15
+ `babysit`
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: issue
3
+ description: Run an issue-centric Babysitter workflow.
4
+ ---
5
+
6
+ # issue
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `issue` mode:
11
+
12
+ - treat everything after `$issue` as the issue selector and any extra issue-mode
13
+ instructions
14
+ - focus on the issue-driven orchestration flow
15
+ - do not create a separate command surface here; this skill only forwards into
16
+ `babysit`
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: model
3
+ description: Inspect or change Babysitter model-routing policy by phase.
4
+ ---
5
+
6
+ # model
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `model` mode:
11
+
12
+ - treat everything after `$model` as the model-routing request
13
+ - focus on showing, clearing, or setting model-routing policy by phase
14
+ - do not create a separate command surface here; this skill only forwards into
15
+ `babysit`
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: observe
3
+ description: Observe, inspect, or monitor a Babysitter run.
4
+ ---
5
+
6
+ # observe
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `observe` mode:
11
+
12
+ - treat everything after `$observe` as the run selector or observation target
13
+ - focus on inspection, monitoring, and state visibility
14
+ - do not create a separate command surface here; this skill only forwards into
15
+ `babysit`
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: plan
3
+ description: Plan a Babysitter workflow without executing the run.
4
+ ---
5
+
6
+ # plan
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `plan` mode:
11
+
12
+ - treat everything after `$plan` as the planning request
13
+ - focus on building the best process possible without creating and running the
14
+ actual run unless the user explicitly changes mode
15
+ - do not create a separate command surface here; this skill only forwards into
16
+ `babysit`
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: project-install
3
+ description: Install the Babysitter Codex workspace integration into the current project.
4
+ ---
5
+
6
+ # project-install
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `project-install` mode:
11
+
12
+ - treat everything after `$project-install` as the workspace-onboarding request
13
+ - focus on project-local setup, hooks/config, and shared process-library usage
14
+ - do not create a separate command surface here; this skill only forwards into
15
+ `babysit`
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: resume
3
+ description: Resume an existing Babysitter run from Codex.
4
+ ---
5
+
6
+ # resume
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `resume` mode:
11
+
12
+ - treat everything after `$resume` as the run selector or run id
13
+ - focus on restoring the orchestration context and continuing the run honestly
14
+ - do not create a separate command surface here; this skill only forwards into
15
+ `babysit`
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: retrospect
3
+ description: Summarize or retrospect on a completed Babysitter run.
4
+ ---
5
+
6
+ # retrospect
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `retrospect` mode:
11
+
12
+ - treat everything after `$retrospect` as the run selector to summarize
13
+ - focus on the run history, outcomes, lessons, and gaps
14
+ - do not create a separate command surface here; this skill only forwards into
15
+ `babysit`
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: team-install
3
+ description: Install the team-pinned Babysitter Codex workspace setup.
4
+ ---
5
+
6
+ # team-install
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `team-install` mode:
11
+
12
+ - treat everything after `$team-install` as team-install arguments or intent
13
+ - focus on shared workspace setup and team-pinned configuration
14
+ - do not create a separate command surface here; this skill only forwards into
15
+ `babysit`
@@ -0,0 +1,15 @@
1
+ ---
2
+ name: user-install
3
+ description: Install the user-level Babysitter Codex setup.
4
+ ---
5
+
6
+ # user-install
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `user-install` mode:
11
+
12
+ - treat everything after `$user-install` as the user-setup request
13
+ - focus on user profile, user-level install, and personal defaults
14
+ - do not create a separate command surface here; this skill only forwards into
15
+ `babysit`
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: yolo
3
+ description: Run Babysitter autonomously with minimal manual interruption.
4
+ ---
5
+
6
+ # yolo
7
+
8
+ Load and use the installed `babysit` skill.
9
+
10
+ Resolve the request in `yolo` mode:
11
+
12
+ - treat everything after `$yolo` as the autonomous execution request
13
+ - follow the `babysit` skill contract while optimizing for minimal manual
14
+ interruption
15
+ - do not create a separate command surface here; this skill only forwards into
16
+ `babysit`