aissue
Pick up an open issue from the amux issue tracker, mark it doing, work it, and mark it done.
Use when the user wants to record a video of a browser task, create a screen recording, or produce an MP4 demo
How it fires
How this command gets triggered: by you, by Claude, or both.
/recordContext preview
What this command does when you run it.
Use when the user wants to record a video of a browser task, create a screen recording, or produce an MP4 demo
description: Use when the user wants to record a video of a browser task, create a screen recording, or produce an MP4 demo allowed-tools: Bash argument-hint: "<task description>" context: fork
Records an MP4 video of the amux browser agent performing a task. The agent uses Claude to drive a headless Playwright browser, records everything, then removes idle frames (Claude-thinking pauses) via ffmpeg mpdecimate, producing a clean, snappy MP4.
The user's request is: **$ARGUMENTS**
curl -sk -X POST -H 'Content-Type: application/json' \
-d "{\"task\": \"$ARGUMENTS\"}" \
$AMUX_URL/api/browser/agentCheck the response. If `ok` is false, report the error and stop.
Poll every 2 seconds and print each step as it happens:
while true; do
STATUS=$(curl -sk $AMUX_URL/api/browser/agent/status)
STEP=$(echo "$STATUS" | python3 -c "import sys,json; d=json.load(sys.stdin); print(f\"[Step {d['step']}] {d['action']}\")" 2>/dev/null)
echo "$STEP"
RUNNING=$(echo "$STATUS" | python3 -c "import sys,json; d=json.load(sys.stdin); print(d['running'])" 2>/dev/null)
[ "$RUNNING" = "False" ] && break
sleep 2
doneShow each step line to the user as it prints.
curl -sk $AMUX_URL/api/browser/agent/status
Parse the final status:
Open-source control plane for AI coding agents. Run an AI engineering team: parallel Claude Code, Codex, and Gemini workers with a shared board, atomic tasks, schedules, loops, origin-stamped messaging, model switching, and self-healing recovery. One dashboard, or your phone. MIT, single Rust binary.
Pick up an open issue from the amux issue tracker, mark it doing, work it, and mark it done.
Use when the user says "add to board", "create a task", or wants to track a todo on the amux kanban board
Use when you need to interact with the amux system — manage board tasks, check sessions/workers, send emails, message via Telegram, automate browsers, work…
Use when the user asks to interact with a web page, take a screenshot of a site, click or type in Chrome, scrape content, or debug a web UI. Connects to real…
Repo/branch/file hygiene sweep — stray artifacts, doc drift, stale branches, worktrees, upstream sync, backup sprawl, duplicate build caches. Verifies before…
Scaffold a closed orchestrator loop — creates the mission note, state/constraints notes, and a scheduler entry from the v2 template.