ワンクリックで
agentrq-bridge
AgentRQ integration: structured HITL task board, permission gating, and real-time workspace bridge via MCP Streamable HTTP
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
AgentRQ integration: structured HITL task board, permission gating, and real-time workspace bridge via MCP Streamable HTTP
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Bidirectional Telegram bot bridge for Ouroboros with configurable command modes, inline keyboard control panel, file/document delivery, and optional silent (edit-in-place) mirror.
Wide polished weather widget — current conditions, compact forecast, astronomy, and resilient wttr.in cache (no API key).
Agent-to-Agent protocol bridge for Ouroboros. Provides a local A2A-compatible server plus client tools for discovering and messaging other A2A agents.
Generate images from a text prompt via OpenRouter's image generation API (Nano Banana / Gemini Flash Image). Displays the result inside the widget and saves to disk for download.
Web search via DuckDuckGo — free, no API key required. Returns titles, URLs, and snippets.
Навигатор по операционной работе с банком: приостановления и блокировки счёта (115-ФЗ, ст. 76 НК, арест, заморозка), картотека и неоплаченные требования, сертификаты ЭП/ЭЦП и доступ к банк-клиенту (ДБО), доверенности. Прототип на данных-образце: показывает статус компании, даёт сводку по счёту и ставит ежедневную сводку на расписание.
| name | agentrq-bridge |
| description | AgentRQ integration: structured HITL task board, permission gating, and real-time workspace bridge via MCP Streamable HTTP |
| version | 0.1.0 |
| type | extension |
| runtime | python3 |
| entry | plugin.py |
| permissions | ["net","tool","route","widget","read_settings","companion_process","inject_chat"] |
| env_from_settings | ["AGENTRQ_MCP_URL","AGENTRQ_TOKEN"] |
| when_to_use | User wants to interact with an AgentRQ workspace: pull tasks, create tasks for human review, reply to task threads, update task status, or request human permission for sensitive actions. |
| companion_processes | [{"name":"agentrq_listener","command":["python3","listener.py"],"runtime":"python3"}] |
| timeout_sec | 120 |
| ui_tab | {"tab_id":"dashboard","title":"AgentRQ","icon":"tasks","render":{"kind":"declarative","schema_version":1,"components":[{"type":"poll","route":"status","method":"GET","interval_sec":15,"components":[{"type":"kv","fields":[{"label":"Connected","path":"connected"},{"label":"Workspace","path":"name"},{"label":"Description","path":"description"},{"label":"Agent Online","path":"agent_connected"}]}]}]}} |
Connects Ouroboros to an AgentRQ workspace via the MCP Streamable HTTP transport. AgentRQ is a task orchestration platform for structured human-agent collaboration.
rq_workspace, rq_pull_next, rq_create_task, rq_reply,
rq_update_status, rq_get_messages.urllib,
json, socket, signal).docker pull agentrq/agentrq:latest or
self-host via SETUP.md).AGENTRQ_MCP_URL — the workspace MCP endpoint
(e.g. https://WORKSPACE_ID.mcp.agentrq.com/ or
http://localhost:8080/mcp/WORKSPACE_ID)AGENTRQ_TOKEN — the 16-char workspace tokenrq_workspace() → see mission + stats
rq_pull_next() → dequeue next task
rq_update_status(ongoing) → mark task in progress
... do the work ...
rq_reply(task_id, result) → post result to task thread
rq_update_status(completed)→ mark task done
To request human permission for a sensitive action:
rq_create_task(title="Approve: deploy to prod", assignee="human")
→ human sees it in AgentRQ UI, replies allow/deny
rq_get_messages(task_id) → read the verdict