@a5c-ai/babysitter-codex
Babysitter Codex skill bundle and integration package for OpenAI Codex CLI with SDK-managed process-library bootstrapping, 15 orchestration modes, and BOM-safe SKILL installation
Supply chain provenance
Status for the latest visible version.
Without SLSA provenance there is no cryptographic link between this tarball and the public source — the axios compromise (March 2026) relied on exactly this gap.
Maintainers
Keywords
Accepted risks
Findings the reviewer chose to accept rather than block on.
| Source | Rule | Reason | Accepted by | When |
|---|---|---|---|---|
| semgrep | semgrep:env-spread | AI (semgrep): CLI tool intentionally passes env to spawned subprocesses; standard orchestration pattern, not exfiltration. | ai | |
| semgrep | semgrep:child-process-import | AI (semgrep): CLI tool by design; child_process use is core to its subprocess orchestration functionality. | ai |
Versions (showing 6 of 6)
| Version | Deps | Published |
|---|---|---|
| 5.0.0 | 0 / 0 | |
| 0.1.10 | 1 / 0 | |
| 0.1.9 | 1 / 0 | |
| 0.1.8 | 1 / 0 | |
| 0.1.7 | 1 / 0 | |
| 0.1.6 | 1 / 0 |
v5.0.0
5 findingsSpreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter-codex/blob/2dc213e514bcc2489f0ccba73d51ddeb2cd97cbd/bin/cli.js#L52 50 | cwd: process.cwd(), 51 | stdio: 'inherit', > 52 | env: { ...process.env, ...extraEnv }, 53 | }); 54 | process.exitCode = result.status ?? 1;
Spreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter-codex/blob/2dc213e514bcc2489f0ccba73d51ddeb2cd97cbd/bin/install-shared.js#L133 131 | spawnSync(process.execPath, [postInstall], { 132 | cwd: pluginRoot, stdio: 'inherit', > 133 | env: { ...process.env, PLUGIN_ROOT: pluginRoot }, 134 | }); 135 | }
Spreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter-codex/blob/2dc213e514bcc2489f0ccba73d51ddeb2cd97cbd/bin/install-shared.js#L160 158 | timeout: options.timeout || 120000, 159 | cwd: options.cwd || process.cwd(), > 160 | env: { ...process.env, ...options.env }, 161 | }); 162 | return result;
Spreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter-codex/blob/2dc213e514bcc2489f0ccba73d51ddeb2cd97cbd/bin/install-shared.js#L453 451 | stdio: ['ignore', 'pipe', 'pipe'], 452 | encoding: 'utf8', > 453 | env: { 454 | ...process.env, 455 | ...(options.env || {}),
Package was published without Sigstore provenance. Only ~12% of npm packages have provenance, so this is common but not ideal.
v0.1.10
3 findingsSpreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter/blob/d97a2e46a84cbc3ca4589050a9bddbcbf792a785/bin/cli.js#L60 58 | cwd: process.cwd(), 59 | stdio: 'inherit', > 60 | env: { 61 | ...process.env, 62 | ...extraEnv,
Spreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter/blob/d97a2e46a84cbc3ca4589050a9bddbcbf792a785/bin/install-shared.js#L276 274 | stdio: ['ignore', 'pipe', 'pipe'], 275 | encoding: 'utf8', > 276 | env: { 277 | ...process.env, 278 | ...(options.env || {}),
Package was published without Sigstore provenance. Only ~12% of npm packages have provenance, so this is common but not ideal.
v0.1.9
3 findingsSpreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter/blob/c99c904158445a99045f9f035c906ab617ef4323/bin/cli.js#L60 58 | cwd: process.cwd(), 59 | stdio: 'inherit', > 60 | env: { 61 | ...process.env, 62 | ...extraEnv,
Spreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter/blob/c99c904158445a99045f9f035c906ab617ef4323/bin/install-shared.js#L276 274 | stdio: ['ignore', 'pipe', 'pipe'], 275 | encoding: 'utf8', > 276 | env: { 277 | ...process.env, 278 | ...(options.env || {}),
Package was published without Sigstore provenance. Only ~12% of npm packages have provenance, so this is common but not ideal.
v0.1.8
3 findingsSpreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter/blob/f4999606c845fa5cf346beb5a79daadf6d5a608c/bin/cli.js#L60 58 | cwd: process.cwd(), 59 | stdio: 'inherit', > 60 | env: { 61 | ...process.env, 62 | ...extraEnv,
Spreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter/blob/f4999606c845fa5cf346beb5a79daadf6d5a608c/bin/install-shared.js#L276 274 | stdio: ['ignore', 'pipe', 'pipe'], 275 | encoding: 'utf8', > 276 | env: { 277 | ...process.env, 278 | ...(options.env || {}),
Package was published without Sigstore provenance. Only ~12% of npm packages have provenance, so this is common but not ideal.
v0.1.7
3 findingsSpreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter/blob/526dd59d05880076153d42cd33cd5a2bcc6e16a5/bin/cli.js#L60 58 | cwd: process.cwd(), 59 | stdio: 'inherit', > 60 | env: { 61 | ...process.env, 62 | ...extraEnv,
Spreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter/blob/526dd59d05880076153d42cd33cd5a2bcc6e16a5/bin/install-shared.js#L276 274 | stdio: ['ignore', 'pipe', 'pipe'], 275 | encoding: 'utf8', > 276 | env: { 277 | ...process.env, 278 | ...(options.env || {}),
Package was published without Sigstore provenance. Only ~12% of npm packages have provenance, so this is common but not ideal.
v0.1.6
3 findingsSpreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter/blob/e3317da14bdab2fdb884e0deaea0a0bd1c91d1e3/bin/cli.js#L60 58 | cwd: process.cwd(), 59 | stdio: 'inherit', > 60 | env: { 61 | ...process.env, 62 | ...extraEnv,
Spreading entire process.env into an object — may capture all secrets Source: https://github.com/a5c-ai/babysitter/blob/e3317da14bdab2fdb884e0deaea0a0bd1c91d1e3/bin/install-shared.js#L276 274 | stdio: ['ignore', 'pipe', 'pipe'], 275 | encoding: 'utf8', > 276 | env: { 277 | ...process.env, 278 | ...(options.env || {}),
Package was published without Sigstore provenance. Only ~12% of npm packages have provenance, so this is common but not ideal.