بنقرة واحدة
openmax
多智能体并行编排 — 通过 REST API 远程调度 openMax,将任务分解为子任务分派到多个 AI agent 并行执行。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
多智能体并行编排 — 通过 REST API 远程调度 openMax,将任务分解为子任务分派到多个 AI agent 并行执行。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Control message formatting and writing style for Lark/Feishu conversations.
Create, query, edit, and manage Feishu Bitable (multidimensional spreadsheets) via lark-cli base — apps, tables, fields, records, views, dashboards, forms, workflows.
Manage Feishu calendar events via lark-cli — create/update/delete events, manage attendees, query free/busy and suggest available time slots, find and book meeting rooms.
List Feishu group chat members and resolve chat metadata via lark-cli.
Create a Feishu cloud document from Lark-flavored Markdown via lark-cli, with optional folder or wiki placement.
Comment management and media (image/file) operations on Feishu cloud documents via lark-cli.
| name | openmax |
| description | 多智能体并行编排 — 通过 REST API 远程调度 openMax,将任务分解为子任务分派到多个 AI agent 并行执行。 |
| triggers | {"intent_patterns":["parallel|并行|多agent|分解任务|openmax|dispatch|多线程开发"],"context_signals":{"keywords":["parallel","并行","openmax","多agent","分派","dispatch"]},"confidence_threshold":0.7} |
| priority | 7 |
| requires_tools | ["bash"] |
| max_tokens | 200 |
| cooldown | 60 |
| enabled | true |
通过 REST API 远程调度 openMax 多智能体编排。
openMax server 必须已启动:
# 在 openMax 机器上
openmax serve --api-key YOUR_KEY
环境变量(在 Eli 的 .env 或 shell 中设置):
OPENMAX_URL=http://localhost:7862 # openMax server 地址
OPENMAX_API_KEY=YOUR_KEY # API key(如果设置了)
curl -s -X POST "${OPENMAX_URL:-http://localhost:7862}/api/remote/tasks" \
-H "Authorization: Bearer ${OPENMAX_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"task":"任务描述","cwd":"/project/path"}'
返回:{"task_id":"abc123","status":"submitted","stream_url":"/api/remote/tasks/abc123/stream"}
curl -s -N "${OPENMAX_URL:-http://localhost:7862}/api/remote/tasks/TASK_ID/stream" \
-H "Authorization: Bearer ${OPENMAX_API_KEY}" \
-H "Accept: text/event-stream"
事件类型:
progress — 子任务进度(pct, msg)done — 子任务完成(summary)input_needed — 需要人工输入(request_id, question, choices)completed — 全部完成当收到 input_needed 事件时:
curl -s -X POST "${OPENMAX_URL:-http://localhost:7862}/api/remote/tasks/TASK_ID/reply" \
-H "Authorization: Bearer ${OPENMAX_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"request_id":"REQUEST_ID","text":"用户的回答"}'
curl -s -X POST "${OPENMAX_URL:-http://localhost:7862}/api/remote/tasks/TASK_ID/send" \
-H "Authorization: Bearer ${OPENMAX_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"pane_id":1,"text":"yes"}'
# 单个任务
curl -s "${OPENMAX_URL:-http://localhost:7862}/api/remote/tasks/TASK_ID" \
-H "Authorization: Bearer ${OPENMAX_API_KEY}"
# 所有任务
curl -s "${OPENMAX_URL:-http://localhost:7862}/api/remote/tasks" \
-H "Authorization: Bearer ${OPENMAX_API_KEY}"
curl -s -X DELETE "${OPENMAX_URL:-http://localhost:7862}/api/remote/tasks/TASK_ID" \
-H "Authorization: Bearer ${OPENMAX_API_KEY}"
当用户要求并行执行任务时:
bash 工具调用 curl 创建 openMax 任务input_needed,向用户提问,再用 /reply 回复如果 openMax CLI 在本机可用,也可直接调用:
openmax run "Build REST API" "Add auth middleware" "Write integration tests"
openmax run "重构支付模块" --model claude-opus-4-20250805 --agents claude-code,codex
openmax sessions # 列出已完成会话
openmax status # 检查环境就绪状态