puff
Original:🇺🇸 English
Translated
Launch and manage Codex Cloud tasks from the CLI, including detached background watchers that track completion. Use when users ask to run coding work in cloud/background agents, queue multiple cloud tasks, poll task status, fetch cloud diffs, apply cloud outputs locally, or pair cloud kickoff with `$cas` orchestration.
2installs
Sourcetkersey/dotfiles
Added on
NPX Install
npx skill4agent add tkersey/dotfiles puffTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Puff
Overview
Use this skill to launch Codex Cloud tasks without blocking the local CLI session. Use to run the Zig CLI, submit work, detach status watchers, and retain logs/results for later diff/apply actions.
run_puff_toolpuffZig CLI Iteration Repos
When iterating on the Zig-backed helper CLI path, use these two repos:
puff- (
skills-zig): source for the/Users/tk/workspace/tk/skills-zigZig binary, build/test wiring, and release tags.puff - (
homebrew-tap): Homebrew formula updates/checksum bumps for released/Users/tk/workspace/tk/homebrew-tapbinaries.puff
Quick Start
bash
run_puff_tool() {
install_puff_direct() {
local repo="${SKILLS_ZIG_REPO:-$HOME/workspace/tk/skills-zig}"
if ! command -v zig >/dev/null 2>&1; then
echo "zig not found. Install Zig from https://ziglang.org/download/ and retry." >&2
return 1
fi
if [ ! -d "$repo" ]; then
echo "skills-zig repo not found at $repo." >&2
echo "clone it with: git clone https://github.com/tkersey/skills-zig \"$repo\"" >&2
return 1
fi
if ! (cd "$repo" && zig build -Doptimize=ReleaseSafe); then
echo "direct Zig build failed in $repo." >&2
return 1
fi
if [ ! -x "$repo/zig-out/bin/puff" ]; then
echo "direct Zig build did not produce $repo/zig-out/bin/puff." >&2
return 1
fi
mkdir -p "$HOME/.local/bin"
install -m 0755 "$repo/zig-out/bin/puff" "$HOME/.local/bin/puff"
}
local os="$(uname -s)"
if command -v puff >/dev/null 2>&1 && puff --help 2>&1 | grep -q "puff.zig"; then
puff "$@"
return
fi
if [ "$os" = "Darwin" ]; then
if ! command -v brew >/dev/null 2>&1; then
echo "homebrew is required on macOS: https://brew.sh/" >&2
return 1
fi
if ! brew install tkersey/tap/puff; then
echo "brew install tkersey/tap/puff failed." >&2
return 1
fi
elif ! (command -v puff >/dev/null 2>&1 && puff --help 2>&1 | grep -q "puff.zig"); then
if ! install_puff_direct; then
return 1
fi
fi
if command -v puff >/dev/null 2>&1 && puff --help 2>&1 | grep -q "puff.zig"; then
puff "$@"
return
fi
echo "puff binary missing or incompatible after install attempt." >&2
if [ "$os" = "Darwin" ]; then
echo "expected install path: brew install tkersey/tap/puff" >&2
else
echo "expected direct path: SKILLS_ZIG_REPO=<skills-zig-path> zig build -Doptimize=ReleaseSafe" >&2
fi
return 1
}Workflow
- Ensure ChatGPT auth is present.
codex login - Run readiness checks.
Optional: print manual environment-creation instructions.
run_puff_tool doctor --env <env-id-or-label>run_puff_tool create - Launch cloud work with a detached watcher.
Optional: launch the cloud Join operator prompt (
run_puff_tool launch --env <env-id-or-label> --prompt "Implement X") for PR patch routing.seq -> joinCanary mode (single bounded cycle):run_puff_tool join-operator --env <env-id-or-label> --repo <owner/repo> --patch-inbox <locator>run_puff_tool join-operator --env <env-id-or-label> --repo <owner/repo> --patch-inbox <locator> --canary - Inspect running and completed watcher jobs.
run_puff_tool jobs - Tail watcher logs when needed.
tail -f <watch_log_path> - Inspect or apply result when ready.
codex cloud diff <task-id>codex cloud apply <task-id>
Command Selection
Use for async/background execution.
runs by default; pass to bypass pre-checks.
Use when you need formatted manual environment-creation instructions only.
Use when only task id/url is needed (it executes a cloud task).
Use for explicit auth/environment readiness checks.
Use for blocking foreground polling.
Use and to manage detached watchers.
Use to generate and launch the cloud join loop prompt that enforces manifest-first routing and execution.
Use for bounded runs; is shorthand for one cycle.
launchlaunchdoctor--skip-doctorcreatesubmitdoctorwatchjobsstopjoin-operatorseq -> joinjoin-operator --max-cycles <n>--canaryInterop With $cas
$casUse when orchestration requirements exceed simple cloud task lifecycle control.
Use for fast cloud kickoff and lifecycle polling.
Use directly for proxy lifecycle management (/) and app-server thread/turn orchestration, steering, forwarding server requests, or complex multi-thread routing.
$cas$puff$casstartstopNotes
Pass either environment id or unique environment label to .
Treat and as successful terminal states in watch loops.
Treat as terminal failure and inspect with and .
Runtime bootstrap policy for mirrors //: use the Zig binary only, default to Homebrew install on macOS, and fallback to direct Zig install from on non-macOS.
--envREADYAPPLIEDERRORcodex cloud status <task-id>codex cloud diff <task-id>puffseqcasliftpuffskills-zigResources
- binary: create/submit/watch/launch/jobs/stop wrapper around
puff.codex cloud - : command map including optional
references/commands.mdpairing.$cas