---
name: GAAI OSS Daemon
slug: gaai-oss-daemon
category: DevOps
description: GAAI OSS Daemon starts, stops, restarts, inspects, or dry-runs the autonomous delivery daemon from Codex. Use it to control daemon phases and pass runtime flags.
github: "https://github.com/digipulse-engineering/GAAI-framework/tree/main/.gaai/core/compat/codex-skills/gaai-oss-daemon"
language: Shell
stars: 161
forks: 27
install: "npx degit https://github.com/digipulse-engineering/GAAI-framework/tree/main/.gaai/core/compat/codex-skills/gaai-oss-daemon ~/.claude/skills/gaai-oss-daemon"
installs_to: ~/.claude/skills/gaai-oss-daemon
source_path: .gaai/core/compat/codex-skills/gaai-oss-daemon/SKILL.md
collection_size: 25
category_size: 1075
collection_url: "https://dirskills.com/collections/Fr-e-d/GAAI-framework"
added: 2026-09-08T05:36:13.031Z
last_synced: 2026-09-08T05:36:13.031Z
canonical_url: "https://dirskills.com/skills/gaai-oss-daemon"
---

# GAAI OSS Daemon

GAAI OSS Daemon starts, stops, restarts, inspects, or dry-runs the autonomous delivery daemon from Codex. Use it to control daemon phases and pass runtime flags.

**Install:**

```bash
npx degit https://github.com/digipulse-engineering/GAAI-framework/tree/main/.gaai/core/compat/codex-skills/gaai-oss-daemon ~/.claude/skills/gaai-oss-daemon
```

## README

# GAAI OSS Daemon

Use this skill when the user asks to start, stop, restart, inspect, or dry-run the GAAI autonomous delivery daemon.

## Procedure

1. Read `.gaai/core/contexts/rules/base.rules.md`.
2. Read `.gaai/core/contexts/rules/orchestration.rules.md`.
3. Parse the user's daemon arguments, preserving flags such as `--start`, `--stop`, `--status`, `--restart`, `--dry-run`, `--interval`, and `--max-concurrent`.
4. If the user wants Codex to execute daemon phases, set `GAAI_DAEMON_EXECUTOR=codex`.
5. Run:

```bash
.gaai/core/scripts/daemon-start.sh <args>
```

> **Privileged entry.** Invoke the script **directly** — it is an executable with a
> `#!/bin/bash -p` shebang. Prefixing the path with a plain `bash` interpreter is refused
> with `entry_authority_invalid`: a non-privileged interpreter has already applied
> `BASH_ENV` and imported exported functions before the script's first instruction.
> The only alternative is an absolute, verified Bash invoked `--noprofile --norc -p <script>`.

Use the actual repository root containing `.gaai/`.

## Runtime Note

This Codex skill is a native entry point for controlling the daemon from Codex.

Daemon executor modes:

- Default: Claude Code (`claude`) for backwards compatibility.
- Codex: `GAAI_DAEMON_EXECUTOR=codex`, which runs Plan, Impl, and QA through `codex exec`.

Optional Codex runtime variables:

- `GAAI_CODEX_MODEL` — optional `codex exec --model` value.
- `GAAI_CODEX_SANDBOX` — sandbox mode; defaults to `workspace-write`.
- `GAAI_CODEX_EPHEMERAL` — defaults to `1`, passing `--ephemeral`.
- `GAAI_CODEX_IGNORE_USER_CONFIG` — defaults to `0`.
