Add to amux board
Description
You are adding an item to the **amux local kanban board** at `https://localhost:8822/api/board`.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
Repository README
This is the README for mixpeek/amux, shared by 4 entries
in this directory. It describes the repository, not this entry specifically.
description: Add a task or note to the amux shared board (localhost:8822) allowed-tools: Bash argument-hint: [task title or description]
Add to amux board
You are adding an item to the **amux local kanban board** at `https://localhost:8822/api/board`.
Board API
# Add item
curl -sk -X POST -H 'Content-Type: application/json' \
-d '{"title":"...","desc":"...","status":"todo","session":"..."}' \
https://localhost:8822/api/board
# List all items
curl -sk https://localhost:8822/api/board
# Update item
curl -sk -X PATCH -H 'Content-Type: application/json' \
-d '{"status":"doing"}' https://localhost:8822/api/board/ITEM_ID
# Delete item
curl -sk -X DELETE https://localhost:8822/api/board/ITEM_ID
Fields
| Field | Required | Values | Notes |
|---|---|---|---|
title |
yes | string | Short, imperative task name |
desc |
no | string | Full context: what, why, acceptance criteria |
status |
no | todo / doing / done |
Defaults to todo |
session |
no | amux session name | Which project/session owns this task |
Instructions
The user's request is: **$ARGUMENTS**
- Determine the best title (concise, imperative — e.g. "Fix login bug", "Add dark mode toggle")
- Write a desc with full context:
- What needs to be done
- Why it matters / what problem it solves
- Any relevant technical details, file paths, or acceptance criteria
- Current state if known
- Set status to
todounless the user indicates it's in-progress (doing) or already done (done) - Set session to the most relevant amux session name if the task belongs to a specific project (leave empty if general)
- Add the item using
curl -sk(the server uses a self-signed cert) - Confirm success by showing the created item's title and ID
Do not ask clarifying questions — infer context from the arguments and current conversation. If the arguments are empty, add a generic task titled "Untitled task" with an empty desc.
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11