mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
23 lines
1.1 KiB
Docker
23 lines
1.1 KiB
Docker
# GROK Secretary Agent — interactive opencode-serve session on Grok.
|
|||
|
|
# =============================================================================
|
||
|
|
# The Grok analogue of agent-secretary. Holds a PERSISTENT `opencode serve`
|
||
|
|
# session open, receives the CEO's messages over HTTP (POST /turn on :9000), and
|
||
|
|
# streams each reply back to the panel via the relay. The Secretary's CEO-
|
||
|
|
# authority tools (read_company_state / read_task / submit_directive) reach the
|
||
|
|
# API through the mounted MCP gateway + the HMAC agent token. Builds on the Grok
|
||
|
|
# runtime image; the driver renders opencode.json from the spawn env first.
|
||
|
|
# =============================================================================
|
||
|
|
|
||
|
|
FROM roboco-agent-grok
|
||
|
|
|
||
|
|
USER agent
|
||
|
|
|
||
|
|
LABEL role="grok-secretary"
|
||
|
|
LABEL description="Secretary on Grok — a long-lived opencode serve session driven by the panel"
|
||
|
|
|
||
|
|
# The in-container receiver the orchestrator delivers the CEO's turns to.
|
||
|
|
EXPOSE 9000
|
||
|
|
|
||
|
|
# Override the base grok one-shot entrypoint with the interactive secretary driver.
|
||
|
|
ENTRYPOINT ["python", "-m", "roboco.agent_sdk.grok_secretary_main"]
|