원클릭으로
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