Put Piggy on Prime Agent, and let it write to the book
Piggy was a hand-rolled OpenAI tool loop. It is now a Prime Agent session — Prime Intellect's own harness, embedded as a Node library — answering from PIG's tools and, for the first time, able to put information into the CRM rather than only read it out. The harness is a coding agent, so the first job was taking the coding agent away from it. `noTools: 'all'` plus an explicit allowlist leaves the model with PIG's ten `pig_*` tools and no bash, no filesystem, no IPython. That holds under attack: a hostile extension, a skill and a settings file planted in the agent's own directory, then `setActiveToolsByName` called with every built-in, still leaves ten tools, all ours. Both lines are load-bearing — `noTools` alone registers nothing, and the allowlist is what admits our own. Writing is gated rather than assumed. A change is proposed, not made: the tool returns a description, the transcript renders a diff card, and nothing reaches the database until someone presses Apply. Contracts, commitments, allocations and compliance always stop for a human whatever the mode. Every write runs through `executeMutation` as the calling user, so their capabilities and the audit trail apply exactly as they would to a human's. Four things about the SDK are wrong in its own documentation and cost a debugging cycle each: models.json does not resolve an env var name for `apiKey`, it sends the literal string; there is no built-in prime-inference provider in 0.84.1; a ResourceLoader you pass in is never reloaded for you; and the stock system prompt is a coding-assistant prompt that must be replaced — but replacing it also silently removes the tool list, because the harness only renders that section when it owns the prompt. AGENTS.md records all four. The expensive one was thinking level. The harness defaults to `medium`, and nemotron spent an entire 4,096-token budget reasoning and returned an empty answer. `low` was worse; `off` omits the parameter so the endpoint's default wins. An explicit `reasoning_effort: none` via `thinkingLevelMap` took a turn from 6,195 output tokens to 149. And a turn is now bounded. The harness loop is `while (true)` with no iteration cap; a runaway on a frontier model would have eaten the credit it is supposed to report on. Ceilings on model calls and tokens, enforced both through the harness hook and independently from the event stream, plus a per-user daily spend limit — and the ledger now records spend on turns that fail, which it previously discarded. Signing in lands on /piggy, which is a workspace: conversations down one side, the agent in the middle, what it did and what it cost beside it. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -220,9 +220,14 @@ else
|
||||
log "THE FAILING RELEASE IS STILL LIVE — deploy.sh did not roll back (it"
|
||||
log "either judged the fault external to the release, had no previous image,"
|
||||
log "or the restored image did not come up). Check the site NOW."
|
||||
log "One exit-3 case leaves the CRM serving normally: Piggy enabled but not"
|
||||
log "coming up, usually a missing PIGGY_INFERENCE_API_KEY. The log above says"
|
||||
log "which it was."
|
||||
log "Two exit-3 cases leave the CRM serving normally, both about Piggy:"
|
||||
log " - it is enabled but did not come up, usually a missing or rejected"
|
||||
log " PRIME_API_KEY (PIGGY_INFERENCE_API_KEY is the accepted alias);"
|
||||
log " - PIGGY_AGENT_DIR points inside /app, which would let the agent read"
|
||||
log " the checkout — refused rather than served."
|
||||
log "Both are .env or compose faults, not bad images: a new tag will not fix"
|
||||
log "them, and the failed-release marker is correctly telling you so. The log"
|
||||
log "above says which it was."
|
||||
else
|
||||
log "deploy.sh rolls the app back on a failed health, auth or public-marker"
|
||||
log "gate, so the previous release should still be serving — verify that first."
|
||||
|
||||
Reference in New Issue
Block a user