Phase 3 of DIALECTIC-V2. Six tools wired to the Go backend running on
server.t3:
- dialectic_list_topics GET /api/topics
- dialectic_topic_detail GET /api/topics/{id}
- dialectic_propose_topic POST /api/topics
- dialectic_signup POST /api/topics/{id}/signups (HF pre-check)
- dialectic_post_argument POST /api/topics/{id}/arguments
- dialectic_view_verdict GET /api/topics/{id}/verdict
All tools return MCP {content:[{type:text,text}]} shape. Errors caught
and surfaced as text payload so agents see actionable failure messages.
Per-agent API key resolved via secret-mgr key dialectic-agent-apikey
(cached in memory; AGENT_VERIFY env required). HF on_call coverage
check degrades gracefully to skipped if HarborForge.OpenclawPlugin
does not yet expose hasOnCallCovering() — backend stores pre_validated
flag as audit signal.
openclaw.plugin.json declares both contracts.tools (the 6 names) AND
activation.onStartup:true per loader gotchas memory; missing either
silently drops the plugin.
Plain export default {id, name, register} entry shape matching
prism-facet. No openclaw SDK imports (jiti runtime resolution of
openclaw was flaky in HF-style entries; structurally simpler avoids
the lookup entirely).
Defaults backendUrl to https://dialectic-api.hangman-lab.top; override
via openclaw.json plugins.entries.dialectic.config.backendUrl for sim.
Phase 3 deferred items (in README): agent key provisioning workflow,
HF window-coverage accessor, SSE subscription tool, token-cost
reporting.
86 lines
3.4 KiB
Markdown
86 lines
3.4 KiB
Markdown
# Dialectic.OpenclawPlugin
|
|
|
|
OpenClaw plugin that gives agents tools to participate in Dialectic v2
|
|
debates. Six tools, one per Dialectic backend endpoint they need:
|
|
|
|
| Tool | Backend call | Notes |
|
|
|------|--------------|-------|
|
|
| `dialectic_list_topics` | `GET /api/topics` | filters: status/visibility/limit/offset |
|
|
| `dialectic_topic_detail` | `GET /api/topics/{id}` | full topic incl. camps + verdict |
|
|
| `dialectic_propose_topic` | `POST /api/topics` | title + summary + 4 lifecycle timestamps |
|
|
| `dialectic_signup` | `POST /api/topics/{id}/signups` | with HF on_call coverage pre-check |
|
|
| `dialectic_post_argument` | `POST /api/topics/{id}/arguments` | during `debating` only |
|
|
| `dialectic_view_verdict` | `GET /api/topics/{id}/verdict` | 404 until judge submits |
|
|
|
|
## Setup
|
|
|
|
Each agent needs a Dialectic API key, stored in their `secret-mgr`
|
|
under key `dialectic-agent-apikey`. Provisioning is currently manual
|
|
(see Phase 3 deferred items below). The plugin caches the key in memory
|
|
after first read; AGENT_VERIFY env must be set so secret-mgr authorizes
|
|
the read.
|
|
|
|
## Config
|
|
|
|
`openclaw.json`:
|
|
```json
|
|
{
|
|
"plugins": {
|
|
"entries": {
|
|
"dialectic": {
|
|
"enabled": true,
|
|
"config": {
|
|
"backendUrl": "https://dialectic-api.hangman-lab.top"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
Default backend URL: `https://dialectic-api.hangman-lab.top`. Override
|
|
for sim/dev by pointing at the local backend instance.
|
|
|
|
## Layout
|
|
|
|
```
|
|
plugin/
|
|
├── openclaw.plugin.json contracts.tools + activation.onStartup
|
|
├── package.json type=module, main=index.js
|
|
├── index.ts/.js entry: registers tools
|
|
└── src/
|
|
├── backend-client.ts/.js HTTP client, agent api key resolver
|
|
├── hf-precheck.ts/.js on_call coverage check for signup
|
|
└── tools.ts/.js 6 tool registrations
|
|
```
|
|
|
|
## Phase 3 deferred items (for later sessions)
|
|
|
|
- **Agent key provisioning workflow** — currently zero agents have
|
|
`dialectic-agent-apikey` in their secret-mgr. Until that's wired
|
|
into the `recruitment` skill (or a separate `provision-dialectic-key`
|
|
workflow), every `dialectic_*` tool call from an agent will fail with
|
|
"dialectic api key not provisioned". Manual SQL provisioning
|
|
documented in `Dialectic.Backend/README.md`.
|
|
- **HF on_call coverage check** — `hfOnCallCoverageCheck` currently
|
|
degrades to "skipped" because `HarborForge.OpenclawPlugin`'s
|
|
cross-plugin `__hfAgentStatus` only exposes CURRENT status, not
|
|
window coverage. Until HF adds `hasOnCallCovering(agentId, from, to)`,
|
|
signup pre-validation is audit-only (the plugin sends
|
|
`pre_validated: false` and the backend stores that as the agent's
|
|
honest signal that no validation happened).
|
|
- **SSE subscriptions** — agents currently poll via `dialectic_topic_detail`
|
|
to see status changes / new arguments. Once Dialectic.Backend ships
|
|
Phase 2D.5 SSE, add a `dialectic_subscribe` tool that streams events
|
|
for one topic until cancelled.
|
|
- **Token-cost reporting** — `dialectic_post_argument` and the judge
|
|
submission could attach `tokens_input/output` counts so the backend
|
|
records cost per debate. Wait until the backend has budget gating
|
|
(Phase N) before bothering.
|
|
|
|
## See also
|
|
|
|
- Top-level design: `/home/hzhang/arch/DIALECTIC-V2-DESIGN.md`
|
|
- Backend: `Dialectic.Backend` (Go, prod on server.t3)
|
|
- Loader gotchas: `[[reference-meridian-plugin-contract]]` memory
|