{"id":"0e24ae59-7016-45d0-bc87-3c2ea89091fd","shortId":"Shz2DZ","kind":"skill","title":"amq-cli","tagline":">-","description":"# AMQ CLI Skill\n\nFile-based message queue for agent-to-agent coordination.\n\nAMQ manages the conversation, not the task plan. Use it for messaging, routing, replies, and adapter-emitted lifecycle events; keep work decomposition and execution in the orchestrator above it.\n\n## Prerequisites\n\nRequires `amq` binary in PATH. Install:\n```bash\ncurl -fsSL https://raw.githubusercontent.com/avivsinai/agent-message-queue/main/scripts/install.sh | bash\n```\n\n## Environment Rules\n\nAMQ primarily uses two env vars for routing: `AM_ROOT` (which mailbox tree) and `AM_ME` (which agent). Getting these wrong means messages go to the wrong place or silently disappear, so it matters to let the CLI handle them rather than guessing.\n\n**Inside `coop exec`** — everything is pre-configured. Just run bare commands:\n```bash\namq send --to codex --body \"hello\"     # correct\namq send --me claude --to codex ...    # wrong — --me overrides the env\n./amq send ...                         # wrong — use amq from PATH\n```\nThe reason: `coop exec` sets `AM_ROOT` and `AM_ME` precisely for the session. Passing `--me` overrides the env, and passing `--root` intentionally overrides the current root (the CLI will note that on stderr if it differs from `AM_ROOT`). Prefer bare commands unless you mean to target a different root.\n\n**Outside `coop exec`** — resolve the root from config, don't hardcode it:\n```bash\neval \"$(amq env --me claude)\"          # reads .amqrc chain, sets both vars\n\n# Or pin per-command without polluting the shell (useful in scripts):\nAM_ME=claude AM_ROOT=$(amq env --json | jq -r .root) amq send --to codex --body \"hello\"\n```\nWhy not hardcode? The root path depends on the config chain (project `.amqrc` → `AMQ_GLOBAL_ROOT` → `~/.amqrc`). Hardcoding skips this and breaks when the project moves or config changes.\n\n**Global fallback**: Orchestrator-spawned agents often start outside the repo root where no project `.amqrc` exists. Set `AMQ_GLOBAL_ROOT` or `~/.amqrc` so `amq env` and `amq doctor` still resolve the correct queue.\n\n**Session pitfall**: `coop exec` defaults to `--session collab` (i.e., `.agent-mail/collab`). Outside `coop exec`, the base root is `.agent-mail` (no session suffix). These are different mailbox trees — don't mix them up.\n\n### Root Resolution Truth-Table\n\n| Context | Command | AM_ROOT resolves to |\n|---------|---------|---------------------|\n| Outside `coop exec` | `amq env --me claude` | resolved base root from project `.amqrc`, detected `.agent-mail`, `AMQ_GLOBAL_ROOT`, or `~/.amqrc` |\n| Outside `coop exec`, no project `.amqrc` | `amq env --me claude` | detected `.agent-mail` in the current tree, otherwise `AMQ_GLOBAL_ROOT` or `~/.amqrc` |\n| Outside `coop exec`, isolated session | `amq env --session auth --me claude` | `<resolved-base-root>/auth` |\n| Inside `coop exec` (no flags) | automatic | `.agent-mail/collab` (default session) |\n| Inside `coop exec --session X` | automatic | `.agent-mail/X` |\n\n## Task Routing\n\nBefore diving in, match the task to the right workflow — this avoids wasted effort:\n\n| Your task | What to do |\n|-----------|-----------|\n| **\"spec\", \"design with\", \"collaborative spec\"** | Use `/amq-spec` instead — it has structured phase-by-phase guidance for parallel-research workflows. |\n| **Send a message, review request, question** | Use `amq send` (see Messaging below) |\n| **Swarm / agent teams** | Read [references/swarm-mode.md](references/swarm-mode.md), then use `amq swarm` |\n| **Received message with labels `workflow:spec`** | Follow the spec skill protocol: do independent research first, then engage on the `spec/<topic>` thread — don't skip straight to implementation. |\n\n## Quick Start\n\n```bash\n# One-time project setup\namq coop init\n\n# Per-session (one command per terminal — defaults to --session collab)\namq coop exec claude -- --dangerously-skip-permissions  # Terminal 1\namq coop exec codex -- --dangerously-bypass-approvals-and-sandbox  # Terminal 2\n```\n\nWithout `--session` or `--root`, `coop exec` defaults to `--session collab`.\n\n## Statusline (Claude Code)\n\nTo show the current AMQ session in your Claude Code status bar, add this snippet to your statusline script (e.g., `~/.claude/statusline.sh`):\n\n```bash\n# AMQ session segment — try CLI first, fall back to env vars for older amq versions\namq_session=\"\"\nif _amq_out=$(amq env --session-name 2>/dev/null) && [ -n \"$_amq_out\" ]; then\n    amq_session=\"$_amq_out\"\nelif [ -n \"$AM_ROOT\" ] && [ -n \"$AM_BASE_ROOT\" ] && [ \"$AM_ROOT\" != \"$AM_BASE_ROOT\" ]; then\n    amq_session=$(basename \"$AM_ROOT\")\nfi\nif [ -n \"$amq_session\" ]; then\n    output+=$(printf \" | \\033[33mamq:%s\\033[0m\" \"$amq_session\")\nfi\n```\n\n`amq env --session-name` (v0.27+) prints the session name and exits 0 (empty when not in a session). The env-var fallback covers older versions. `amq env --json` also includes `session_name`.\n\nTo also set the terminal tab title (works in Ghostty, iTerm2, Terminal.app):\n\n```bash\n# Set tab title to \"repo | amq:session\" — re-asserts on each statusline refresh.\n# Manual titles (e.g. Ghostty's prompt_tab_title) take priority and won't be overwritten.\ntab_title=\"$repo_name\"\n[ -n \"$amq_session\" ] && tab_title+=\" | amq:${amq_session}\"\nprintf '\\033]0;%s\\007' \"$tab_title\" > /dev/tty 2>/dev/null\n```\n\n## Integration & Ops Quick Reference\n\n```bash\n# Global fallback for orchestrator-spawned agents\nexport AMQ_GLOBAL_ROOT=\"$HOME/.agent-mail\"\n\n# Symphony hooks\namq integration symphony init --me codex\namq integration symphony emit --event after_run --me codex\n\n# Cline Kanban bridge\namq integration kanban bridge --me codex\namq integration kanban bridge --me codex --workspace-id my-workspace\n\n# Runtime diagnostics\namq doctor --ops\namq doctor --ops --json\n```\n\n## Delivery Receipts\n\nAMQ records delivery outcomes in consumer-local receipt files. The main stages are:\n\n- `drained` — a consumer successfully ingested the message\n- `dlq` — the message was moved to the dead letter queue during ingest\n\nUse these when you need confirmation rather than just fire-and-forget messaging:\n\n```bash\n# Block on delivery for a single-recipient send\namq send --to codex --body \"please review\" --wait-for drained --wait-timeout 60s\n\n# Query receipt history later\namq receipts list --me codex --msg-id <msg_id>\namq receipts wait --me codex --msg-id <msg_id> --stage drained --timeout 60s\n```\n\n`amq read`, `amq drain`, and `amq monitor` all apply the same strict header validation. Messages in `inbox/new` that are corrupt or have malformed headers are moved to DLQ and produce a `dlq` receipt.\n\n## Session Layout\n\nBy default, the root is `.agent-mail` (from `.amqrc` or auto-detect). Use `--session` to create isolated subdirectories:\n\n```\n.agent-mail/              ← default root (configurable in `.amqrc`)\n.agent-mail/auth/         ← isolated session (via --session auth)\n.agent-mail/api/          ← isolated session (via --session api)\n```\n\n- `amq coop exec claude` → `AM_ROOT=.agent-mail/collab` (default session)\n- `amq coop exec --session auth claude` → `AM_ROOT=.agent-mail/auth`\n\nThe main env vars are `AM_ROOT` (where) + `AM_ME` (who). `coop exec` may also set `AM_BASE_ROOT` for cross-session resolution. The CLI enforces correct routing — just run `amq` commands as-is.\nDefault `.agent-mail/<session>` layouts are recognized even without `.amqrc`; custom root names still need config or explicit flags/env.\n\n## Cross-Project Routing\n\nSend messages to agents in other projects via `--project` or inline `@project:session` syntax. Requires peer configuration in `.amqrc`.\n\n**When to use `--session` vs `--project`**: `--session` = same project, different session. `--project` = different project. Change one dimension at a time.\n\n### Peer setup\n\nAdd `project` and `peers` to your `.amqrc`:\n```json\n{\n  \"root\": \".agent-mail\",\n  \"project\": \"my-project\",\n  \"peers\": {\n    \"infra-lib\": \"/Users/me/projects/infra-lib/.agent-mail\"\n  }\n}\n```\n\nBoth projects must register each other as peers for round-trip messaging.\n\n### Sending cross-project\n\n```bash\n# Flag syntax\namq send --to codex --project infra-lib --body \"hello from here\"\n\n# Inline syntax (terser)\namq send --to codex@infra-lib:collab --body \"inline syntax\"\n\n# Same session name as source (default when --session omitted)\namq send --to codex --project infra-lib --body \"delivers to same session\"\n```\n\n### Replies route automatically\n\nWhen you receive a cross-project message, `reply_project` is set in the header. `amq reply` routes back automatically — no `--project` flag needed:\n```bash\namq reply --id <msg_id> --body \"got it\"  # routes back via reply_project\n```\n\n### Thread naming\n\n- **Same project P2P**: `p2p/claude__codex`\n- **Cross-project P2P**: `p2p/projA:collab:claude__projB:collab:codex`\n- **Topical** (cross-project): use same thread ID across projects, e.g., `decision/release-v0.24`\n\nFor full details, see [references/cross-project.md](references/cross-project.md).\n\n### Cross-project identity (IMPORTANT)\n\nWhen you receive a message where `from` matches your own handle (e.g., `from: \"claude\"` and you are claude), check `from_project` and `reply_project`. If either is present and names a different project, this is **NOT an echo** — it is a legitimate cross-project message from a different agent instance with the same handle. Process it normally.\n\n### AM_ROOT scoping after cross-project sends\n\nAfter sending a cross-project message (via `--project`), your `AM_ROOT` still points to YOUR project. To send to your own partner (same project), use plain `amq send --to codex` — do NOT use `--project`. The `--project` flag is ONLY for sending to agents in OTHER projects.\n\n## Decision Threads\n\nDecentralized decision protocol using existing AMQ primitives (no new CLI commands).\n\n- **Thread**: `decision/<topic>`\n- **Kind**: `decision` for all messages\n- **Labels**: `decision:proposal`, `decision:objection`, `decision:support`, `decision:final`; plus `project:<name>` for cross-project decisions\n- **Context** on proposals: `{\"proposal_id\": \"...\", \"question\": \"...\", \"options\": [...], \"required_projects\": [...], \"deadline\": \"...\"}`\n\n**Process**: Propose → Review/Object → Resolve objections → Close when all required projects responded and no unresolved blocking objections.\n\n```bash\namq send --to codex --project infra-lib --kind decision \\\n  --labels \"decision:proposal,project:my-project,project:infra-lib\" \\\n  --thread \"decision/api-v2\" \\\n  --context '{\"proposal_id\":\"api-v2\",\"question\":\"Adopt new API?\",\"required_projects\":[\"my-project\",\"infra-lib\"]}' \\\n  --body \"Proposal: migrate to API v2. All tests green.\"\n```\n\n## Session-Aware Routing\n\nUsers refer to sessions using many words: \"session\", \"stream\", \"squad\", \"team\", \"workspace\", \"channel\", or just a bare name. When the user mentions sending to or talking to an agent in a named context (e.g., \"ask codex on stream1\", \"send to the auth team\", \"talk to codex in squad-api\"), you must discover sessions before routing.\n\n**Important**: Do not confuse sessions with projects. \"Project\" in AMQ means a different repo/codebase (cross-project routing via `--project`). Sessions are isolated mailbox trees within the same project (via `--session`). If the user says \"the infra project\", that likely means `--project infra`, not `--session infra`.\n\n```bash\n# Step 1: Discover active sessions and agents\namq who --json\n# Returns: [{\"name\":\"collab\",\"agents\":[...]},{\"name\":\"stream1\",\"agents\":[...]},{\"name\":\"auth\",\"agents\":[...]}]\n\n# Step 2: Match the user's name against session names in the output, then send\namq send --to codex --session stream1 --body \"Message for stream1\"\n```\n\n**Recognition patterns** — any of these mean \"route to a specific session\":\n- Explicit: \"on stream1\", \"via auth\", \"in the api session\", \"the infra squad\"\n- Bare name: user just says \"stream1\" or \"auth\" — could be a session or an agent handle\n- Colloquial: \"team\", \"squad\", \"stream\", \"workspace\", \"channel\" followed by a name\n\nNote: The `agent@name` inline syntax (e.g., `codex@infra`) is for cross-project routing, not cross-session. For same-project session routing, always use `--session <name>` explicitly.\n\n**Rules**:\n1. When the user names something that could be a session, **always run `amq who --json` first** to check if it matches a known session name\n2. If the name matches a session, use `--session <name>` on the send command\n3. If it matches both a session and an agent handle, prefer the session interpretation when the user's phrasing implies a group/context (\"on X\", \"in X\", \"the X team\"), and the agent interpretation when it implies a person (\"ask X\", \"tell X\")\n4. If the target session differs from your current session (`$AM_ROOT` basename), use `--session <name>`\n5. Never guess — if the name doesn't appear in `amq who --json` output, tell the user (it may need `coop exec --session <name>` to initialize)\n6. For cross-project routing (different repo), use `--project` instead — see Cross-Project Routing section\n\n## Messaging\n\n```bash\namq send --to codex --body \"Message\"              # Send (uses AM_ROOT/AM_ME from env)\namq drain --include-body                          # Receive (one-shot, silent when empty)\namq reply --id <msg_id> --body \"Response\"          # Reply in thread\namq watch --timeout 60s                           # Block until message arrives\namq list --new                                    # Peek without side effects\n```\n\n### Send with metadata\n```bash\namq send --to codex --subject \"Review\" --kind review_request --body @file.md\namq send --to codex --priority urgent --kind question --body \"Blocked on API\"\namq send --to codex --labels \"bug,parser\" --context '{\"paths\": [\"src/\"]}' --body \"Found issue\"\n```\n\n**Send file paths, not file contents.** When attaching source code, configs, or large text for review, send the file path in the message body, not the contents inline. The receiver can open the file with their local tools. If the receiver cannot access that worktree, send a short diff instead of the full source.\n\n### Filter\n```bash\namq list --new --priority urgent\namq list --new --from codex --kind review_request\namq list --new --label bug\n```\n\n## Priority Handling\n\n| Priority | Action |\n|----------|--------|\n| `urgent` | Interrupt current work, respond now |\n| `normal` | Add to TODOs, respond after current task |\n| `low` | Batch for session end |\n\n## Message Kinds\n\n| Kind | Reply Kind | Default Priority |\n|------|------------|------------------|\n| `review_request` | `review_response` | normal |\n| `question` | `answer` | normal |\n| `decision` | — | normal |\n| `todo` | — | normal |\n| `status` | — | low |\n| `brainstorm` | — | low |\n\n## References\n\nFor detailed protocols, read the reference file FIRST, then follow its instructions:\n\n- [references/coop-mode.md](references/coop-mode.md) — Co-op protocol: roles, phased flow, collaboration modes\n- [references/swarm-mode.md](references/swarm-mode.md) — Swarm mode: agent teams, bridge, task workflow\n- [references/integrations.md](references/integrations.md) — Symphony + Kanban integration commands, global root fallback, ops checks\n- [references/message-format.md](references/message-format.md) — Message format: frontmatter schema, field reference\n- [references/cross-project.md](references/cross-project.md) — Cross-project routing: peer config, addressing, decision threads\n- [references/review-loop.md](references/review-loop.md) — Token-efficient review cycles: delegate multi-round reviews to background agents","tags":["amq","cli","agent","message","queue","avivsinai","agent-skills","agents","ai-agents","autonomous-agents","claude-code","codex"],"capabilities":["skill","source-avivsinai","skill-amq-cli","topic-agent-skills","topic-agents","topic-ai-agents","topic-autonomous-agents","topic-claude-code","topic-cli","topic-codex","topic-coordination","topic-developer-tools","topic-golang","topic-maildir","topic-message-queue"],"categories":["agent-message-queue"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/avivsinai/agent-message-queue/amq-cli","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add avivsinai/agent-message-queue","source_repo":"https://github.com/avivsinai/agent-message-queue","install_from":"skills.sh"}},"qualityScore":"0.474","qualityRationale":"deterministic score 0.47 from registry signals: · indexed on github topic:agent-skills · 48 github stars · SKILL.md body (15,373 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-02T00:57:04.600Z","embedding":null,"createdAt":"2026-04-18T22:17:55.648Z","updatedAt":"2026-05-02T00:57:04.600Z","lastSeenAt":"2026-05-02T00:57:04.600Z","tsv":"'/.amqrc':265,300,380,404 '/.claude/statusline.sh':607 '/amq':138 '/amq-spec':466 '/api':1014 '/auth':416,1005,1043 '/avivsinai/agent-message-queue/main/scripts/install.sh':60 '/collab':324,426,1029 '/dev/null':635,776 '/dev/tty':774 '/users/me/projects/infra-lib/.agent-mail':1164 '/x':438 '0':691,769 '007':771 '033':671,674,768 '0m':675 '1':561,1645,1768 '2':573,634,775,1665,1794 '3':1807 '33mamq':672 '4':1850 '5':1865 '6':1890 '60s':914,938,1944 'access':2038 'across':1296 'action':2073 'activ':1647 'adapt':34 'adapter-emit':33 'add':599,1144,2081 'address':2176 'adopt':1517 'agent':14,16,81,283,322,333,374,393,424,436,494,788,980,995,1003,1012,1027,1041,1082,1106,1154,1360,1420,1569,1650,1657,1660,1663,1726,1740,1816,1839,2144,2193 'agent-mail':321,332,373,392,423,435,979,994,1002,1011,1026,1040,1081,1153 'agent-to-ag':13 'also':709,714,1058 'alway':1763,1779 'amq':2,4,18,50,64,120,127,142,210,237,243,262,296,302,305,362,376,387,400,410,488,501,538,552,562,591,609,622,624,627,629,637,640,642,658,666,676,679,706,731,760,764,765,790,796,802,814,820,834,837,843,900,919,927,939,941,944,1020,1032,1075,1185,1200,1220,1251,1261,1404,1431,1487,1606,1651,1679,1781,1875,1909,1921,1933,1941,1949,1960,1971,1983,2052,2057,2065 'amq-c':1 'amqrc':215,261,293,371,386,983,1001,1089,1121,1150 'answer':2106 'api':1019,1514,1519,1532,1590,1707,1982 'api-v2':1513 'appear':1873 'appli':947 'approv':569 'arriv':1948 'as-i':1077 'ask':1575,1846 'assert':735 'attach':2003 'auth':413,1010,1036,1582,1662,1704,1719 'auto':986 'auto-detect':985 'automat':422,434,1235,1255 'avoid':452 'awar':1539 'back':616,1254,1268 'background':2192 'bar':598 'bare':117,186,1557,1712 'base':9,329,367,650,655,1061 'basenam':660,1862 'bash':55,61,119,208,532,608,725,781,890,1182,1260,1486,1643,1908,1959,2051 'batch':2089 'binari':51 'block':891,1484,1945,1980 'bodi':124,247,904,1193,1208,1228,1264,1528,1685,1913,1925,1936,1969,1979,1993,2019 'brainstorm':2114 'break':270 'bridg':813,817,823,2146 'bug':1988,2069 'bypass':568 'cannot':2037 'chain':216,259 'chang':277,1136 'channel':1553,1733 'check':1329,1786,2159 'claud':130,213,234,365,390,415,555,585,595,1023,1037,1284,1324,1328 'cli':3,5,101,173,613,1069,1435 'cline':811 'close':1475 'co':2132 'co-op':2131 'code':586,596,2005 'codex':123,132,246,565,801,810,819,825,903,923,931,1188,1203,1223,1287,1407,1490,1576,1586,1682,1745,1912,1963,1974,1986,2061 'collab':319,551,583,1207,1283,1286,1656 'collabor':463,2138 'colloqui':1728 'command':118,187,224,354,545,1076,1436,1806,2154 'config':203,258,276,1095,2006,2175 'configur':114,999,1119 'confirm':881 'confus':1600 'consum':849,859 'consumer-loc':848 'content':2001,2022 'context':353,1460,1510,1573,1990 'convers':21 'coop':108,147,197,314,326,360,382,406,418,430,539,553,563,578,1021,1033,1055,1885 'coordin':17 'correct':126,310,1071 'corrupt':958 'could':1720,1775 'cover':703 'creat':991 'cross':1065,1100,1180,1241,1279,1290,1307,1354,1374,1381,1457,1612,1750,1755,1893,1903,2171 'cross-project':1099,1179,1240,1278,1289,1306,1353,1373,1380,1456,1611,1749,1892,1902,2170 'cross-sess':1064,1754 'curl':56 'current':170,397,590,1858,2076,2086 'custom':1090 'cycl':2185 'danger':557,567 'dangerously-bypass-approvals-and-sandbox':566 'dangerously-skip-permiss':556 'dead':871 'deadlin':1469 'decentr':1426 'decis':1424,1427,1438,1440,1445,1447,1449,1451,1459,1496,1498,2108,2177 'decision/api-v2':1509 'decision/release-v0.24':1299 'decomposit':40 'default':316,427,548,580,975,997,1030,1080,1216,2098 'deleg':2186 'deliv':1229 'deliveri':841,845,893 'depend':255 'design':461 'detail':1302,2118 'detect':372,391,987 'diagnost':833 'diff':2044 'differ':181,194,340,1131,1134,1342,1359,1609,1855,1896 'dimens':1138 'disappear':94 'discov':1593,1646 'dive':442 'dlq':864,966,970 'doctor':306,835,838 'doesn':1871 'drain':857,910,936,942,1922 'e.g':606,742,1298,1322,1574,1744 'echo':1348 'effect':1955 'effici':2183 'effort':454 'either':1336 'elif':644 'emit':35,805 'empti':692,1932 'end':2092 'enforc':1070 'engag':519 'env':68,137,163,211,238,303,363,388,411,618,630,680,700,707,1046,1920 'env-var':699 'environ':62 'eval':209 'even':1087 'event':37,806 'everyth':110 'exec':109,148,198,315,327,361,383,407,419,431,554,564,579,1022,1034,1056,1886 'execut':42 'exist':294,1430 'exit':690 'explicit':1097,1700,1766 'export':789 'fall':615 'fallback':279,702,783,2157 'fi':663,678 'field':2166 'file':8,852,1997,2000,2014,2029,2123 'file-bas':7 'file.md':1970 'filter':2050 'final':1452 'fire':886 'fire-and-forget':885 'first':517,614,1784,2124 'flag':421,1183,1258,1414 'flags/env':1098 'flow':2137 'follow':509,1734,2126 'forget':888 'format':2163 'found':1994 'frontmatt':2164 'fssl':57 'full':1301,2048 'get':82 'ghostti':722,743 'global':263,278,297,377,401,782,791,2155 'go':87 'got':1265 'green':1536 'group/context':1829 'guess':106,1867 'guidanc':475 'handl':102,1321,1365,1727,1817,2071 'hardcod':206,251,266 'header':951,962,1250 'hello':125,248,1194 'histori':917 'home/.agent-mail':793 'hook':795 'i.e':320 'id':828,926,934,1263,1295,1464,1512,1935 'ident':1309 'implement':529 'impli':1827,1843 'import':1310,1597 'inbox/new':955 'includ':710,1924 'include-bodi':1923 'independ':515 'infra':1162,1191,1205,1226,1493,1506,1526,1633,1639,1642,1710,1746 'infra-lib':1161,1190,1204,1225,1492,1505,1525 'ingest':861,875 'init':540,799 'initi':1889 'inlin':1113,1197,1209,1742,2023 'insid':107,417,429 'instal':54 'instanc':1361 'instead':467,1900,2045 'instruct':2128 'integr':777,797,803,815,821,2153 'intent':167 'interpret':1821,1840 'interrupt':2075 'isol':408,992,1006,1015,1619 'issu':1995 'iterm2':723 'jq':240 'json':239,708,840,1151,1653,1783,1877 'kanban':812,816,822,2152 'keep':38 'kind':1439,1495,1966,1977,2062,2094,2095,2097 'known':1791 'label':506,1444,1497,1987,2068 'larg':2008 'later':918 'layout':973,1084 'legitim':1352 'let':99 'letter':872 'lib':1163,1192,1206,1227,1494,1507,1527 'lifecycl':36 'like':1636 'list':921,1950,2053,2058,2066 'local':850,2032 'low':2088,2113,2115 'mail':323,334,375,394,425,437,981,996,1004,1013,1028,1042,1083,1155 'mailbox':75,341,1620 'main':854,1045 'malform':961 'manag':19 'mani':1546 'manual':740 'match':444,1318,1666,1789,1798,1810 'matter':97 'may':1057,1883 'mean':85,190,1607,1637,1694 'mention':1562 'messag':10,29,86,483,491,504,863,866,889,953,1104,1177,1243,1315,1356,1383,1443,1686,1907,1914,1947,2018,2093,2162 'metadata':1958 'migrat':1530 'mix':345 'mode':2139,2143 'monitor':945 'move':274,868,964 'msg':925,933 'msg-id':924,932 'multi':2188 'multi-round':2187 'must':1167,1592 'my-project':1157,1501,1522 'my-workspac':829 'n':636,645,648,665,759 'name':633,683,688,712,758,1092,1213,1273,1340,1558,1572,1655,1658,1661,1670,1673,1713,1737,1741,1772,1793,1797,1870 'need':880,1094,1259,1884 'never':1866 'new':1434,1518,1951,2054,2059,2067 'normal':1368,2080,2104,2107,2109,2111 'note':175,1738 'object':1448,1474,1485 'often':284 'older':621,704 'omit':1219 'one':534,544,1137,1928 'one-shot':1927 'one-tim':533 'op':778,836,839,2133,2158 'open':2027 'option':1466 'orchestr':45,281,786 'orchestrator-spawn':280,785 'otherwis':399 'outcom':846 'output':669,1676,1878 'outsid':196,286,325,359,381,405 'overrid':135,161,168 'overwritten':754 'p2p':1276,1281 'p2p/claude__codex':1277 'p2p/proja':1282 'parallel':478 'parallel-research':477 'parser':1989 'partner':1399 'pass':159,165 'path':53,144,254,1991,1998,2015 'pattern':1690 'peek':1952 'peer':1118,1142,1147,1160,1172,2174 'per':223,542,546 'per-command':222 'per-sess':541 'permiss':559 'person':1845 'phase':472,474,2136 'phase-by-phas':471 'phrase':1826 'pin':221 'pitfal':313 'place':91 'plain':1403 'plan':25 'pleas':905 'plus':1453 'point':1390 'pollut':226 'pre':113 'pre-configur':112 'precis':155 'prefer':185,1818 'prerequisit':48 'present':1338 'primarili':65 'primit':1432 'print':685 'printf':670,767 'prioriti':749,1975,2055,2070,2072,2099 'process':1366,1470 'produc':968 'projb':1285 'project':260,273,292,370,385,536,1101,1109,1111,1114,1127,1130,1133,1135,1145,1156,1159,1166,1181,1189,1224,1242,1245,1257,1271,1275,1280,1291,1297,1308,1331,1334,1343,1355,1375,1382,1385,1393,1401,1411,1413,1423,1454,1458,1468,1479,1491,1500,1503,1504,1521,1524,1603,1604,1613,1616,1625,1634,1638,1751,1760,1894,1899,1904,2172 'prompt':745 'propos':1446,1462,1463,1471,1499,1511,1529 'protocol':513,1428,2119,2134 'queri':915 'question':486,1465,1516,1978,2105 'queue':11,311,873 'quick':530,779 'r':241 'rather':104,882 'raw.githubusercontent.com':59 'raw.githubusercontent.com/avivsinai/agent-message-queue/main/scripts/install.sh':58 're':734 're-assert':733 'read':214,496,940,2120 'reason':146 'receipt':842,851,916,920,928,971 'receiv':503,1238,1313,1926,2025,2036 'recipi':898 'recogn':1086 'recognit':1689 'record':844 'refer':780,1542,2116,2122,2167 'references/coop-mode.md':2129,2130 'references/cross-project.md':1304,1305,2168,2169 'references/integrations.md':2149,2150 'references/message-format.md':2160,2161 'references/review-loop.md':2179,2180 'references/swarm-mode.md':497,498,2140,2141 'refresh':739 'regist':1168 'repli':31,1233,1244,1252,1262,1270,1333,1934,1938,2096 'repo':288,730,757,1897 'repo/codebase':1610 'request':485,1968,2064,2101 'requir':49,1117,1467,1478,1520 'research':479,516 'resolut':349,1067 'resolv':199,308,357,366,1473 'respond':1480,2078,2084 'respons':1937,2103 'return':1654 'review':484,906,1965,1967,2011,2063,2100,2102,2184,2190 'review/object':1472 'right':449 'role':2135 'root':73,151,166,171,184,195,201,236,242,253,264,289,298,330,348,356,368,378,402,577,647,651,653,656,662,792,977,998,1025,1039,1050,1062,1091,1152,1370,1388,1861,2156 'root/am_me':1918 'round':1175,2189 'round-trip':1174 'rout':30,71,440,1072,1102,1234,1253,1267,1540,1596,1614,1695,1752,1762,1895,1905,2173 'rule':63,1767 'run':116,808,1074,1780 'runtim':832 'same-project':1758 'sandbox':571 'say':1631,1716 'schema':2165 'scope':1371 'script':231,605 'section':1906 'see':490,1303,1901 'segment':611 'send':121,128,139,244,481,489,899,901,1103,1178,1186,1201,1221,1376,1378,1395,1405,1418,1488,1563,1579,1678,1680,1805,1910,1915,1956,1961,1972,1984,1996,2012,2041 'session':158,312,318,336,409,412,428,432,543,550,575,582,592,610,625,632,641,659,667,677,682,687,697,711,732,761,766,972,989,1007,1009,1016,1018,1031,1035,1066,1115,1125,1128,1132,1212,1218,1232,1538,1544,1548,1594,1601,1617,1627,1641,1648,1672,1683,1699,1708,1723,1756,1761,1765,1778,1792,1800,1802,1813,1820,1854,1859,1864,1887,2091 'session-awar':1537 'session-nam':631,681 'set':149,217,295,715,726,1059,1247 'setup':537,1143 'shell':228 'short':2043 'shot':1929 'show':588 'side':1954 'silent':93,1930 'singl':897 'single-recipi':896 'skill':6,512 'skill-amq-cli' 'skip':267,526,558 'snippet':601 'someth':1773 'sourc':1215,2004,2049 'source-avivsinai' 'spawn':282,787 'spec':460,464,508,511,522 'specif':1698 'squad':1550,1589,1711,1730 'squad-api':1588 'src':1992 'stage':855,935 'start':285,531 'status':597,2112 'statuslin':584,604,738 'stderr':178 'step':1644,1664 'still':307,1093,1389 'straight':527 'stream':1549,1731 'stream1':1578,1659,1684,1688,1702,1717 'strict':950 'structur':470 'subdirectori':993 'subject':1964 'success':860 'suffix':337 'support':1450 'swarm':493,502,2142 'symphoni':794,798,804,2151 'syntax':1116,1184,1198,1210,1743 'tab':718,727,746,755,762,772 'tabl':352 'take':748 'talk':1566,1584 'target':192,1853 'task':24,439,446,456,2087,2147 'team':495,1551,1583,1729,1836,2145 'tell':1848,1879 'termin':547,560,572,717 'terminal.app':724 'terser':1199 'test':1535 'text':2009 'thread':523,1272,1294,1425,1437,1508,1940,2178 'time':535,1141 'timeout':913,937,1943 'titl':719,728,741,747,756,763,773 'todo':2083,2110 'token':2182 'token-effici':2181 'tool':2033 'topic':1288 'topic-agent-skills' 'topic-agents' 'topic-ai-agents' 'topic-autonomous-agents' 'topic-claude-code' 'topic-cli' 'topic-codex' 'topic-coordination' 'topic-developer-tools' 'topic-golang' 'topic-maildir' 'topic-message-queue' 'tree':76,342,398,1621 'tri':612 'trip':1176 'truth':351 'truth-tabl':350 'two':67 'unless':188 'unresolv':1483 'urgent':1976,2056,2074 'use':26,66,141,229,465,487,500,876,988,1124,1292,1402,1410,1429,1545,1764,1801,1863,1898,1916 'user':1541,1561,1630,1668,1714,1771,1824,1881 'v0.27':684 'v2':1515,1533 'valid':952 'var':69,219,619,701,1047 'version':623,705 'via':1008,1017,1110,1269,1384,1615,1626,1703 'vs':1126 'wait':908,912,929 'wait-for':907 'wait-timeout':911 'wast':453 'watch':1942 'within':1622 'without':225,574,1088,1953 'won':751 'word':1547 'work':39,720,2077 'workflow':450,480,507,2148 'workspac':827,831,1552,1732 'workspace-id':826 'worktre':2040 'wrong':84,90,133,140 'x':433,1831,1833,1835,1847,1849","prices":[{"id":"350c0963-1d9c-4326-aeea-fb85e5be9362","listingId":"0e24ae59-7016-45d0-bc87-3c2ea89091fd","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"avivsinai","category":"agent-message-queue","install_from":"skills.sh"},"createdAt":"2026-04-18T22:17:55.648Z"}],"sources":[{"listingId":"0e24ae59-7016-45d0-bc87-3c2ea89091fd","source":"github","sourceId":"avivsinai/agent-message-queue/amq-cli","sourceUrl":"https://github.com/avivsinai/agent-message-queue/tree/main/skills/amq-cli","isPrimary":false,"firstSeenAt":"2026-04-18T22:17:55.648Z","lastSeenAt":"2026-05-02T00:57:04.600Z"}],"details":{"listingId":"0e24ae59-7016-45d0-bc87-3c2ea89091fd","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"avivsinai","slug":"amq-cli","github":{"repo":"avivsinai/agent-message-queue","stars":48,"topics":["agent-skills","agents","ai-agents","autonomous-agents","claude-code","cli","codex","coordination","developer-tools","golang","inter-process-communication","maildir","message-queue","multi-agent"],"license":"mit","html_url":"https://github.com/avivsinai/agent-message-queue","pushed_at":"2026-04-30T23:36:00Z","description":"File-based message queue for local agent-to-agent communication (Maildir-style)","skill_md_sha":"035b01b970cf235690b21329f4568b2ec2604ff7","skill_md_path":"skills/amq-cli/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/avivsinai/agent-message-queue/tree/main/skills/amq-cli"},"layout":"multi","source":"github","category":"agent-message-queue","frontmatter":{"name":"amq-cli","description":">-"},"skills_sh_url":"https://skills.sh/avivsinai/agent-message-queue/amq-cli"},"updatedAt":"2026-05-02T00:57:04.600Z"}}