Put Piggy on Prime Agent, and let it write to the book
CI / verify (push) Successful in 7m6s
CI / publish (push) Has been skipped

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:
claude
2026-08-14 05:26:28 -07:00
parent 99d165b5e5
commit f0173440e4
77 changed files with 28108 additions and 1672 deletions
+39 -4
View File
@@ -21,10 +21,10 @@ import {
FileText,
GraduationCap,
LayoutDashboard,
MessageCircleMore,
Server,
Settings,
ShieldCheck,
Sparkles,
Target,
TrendingUp,
Users,
@@ -33,9 +33,28 @@ import {
import type { Capability, Team } from '@pig/core';
import { canAny, type PermissionIdentity } from './permissions';
export const NAV_GROUPS = ['Intelligence', 'Marketplace', 'Records', 'Control'] as const;
export const NAV_GROUPS = ['Workspace', 'Intelligence', 'Marketplace', 'Records', 'Control'] as const;
export type NavGroup = (typeof NAV_GROUPS)[number];
/**
* The heading a group prints above its rows in the sidebar, or `null` for a
* group that leads the list and needs none.
*
* Workspace is that group. It holds one row — Piggy — and a "WORKSPACE"
* heading over a single row named Piggy says nothing the row does not; worse,
* it makes the front door look like one section among five rather than the
* thing the product opens on. Rendered unlabelled and followed by a rule, it
* reads as what it is. The command palette still groups by the same name,
* where a heading is doing real work because the list there is flat.
*/
export const NAV_GROUP_HEADING: Record<NavGroup, string | null> = {
Workspace: null,
Intelligence: 'Intelligence',
Marketplace: 'Marketplace',
Records: 'Records',
Control: 'Control',
};
export interface NavItem {
to: string;
label: string;
@@ -55,10 +74,26 @@ export interface NavItem {
}
export const NAV: NavItem[] = [
{ to: '/', label: 'Overview', icon: LayoutDashboard, group: 'Intelligence', primary: true },
/*
* First row, own group, and the destination `/` redirects to: Piggy is where
* the product starts now. It was the fourth row of Intelligence, which put
* the agent below three reports — a filing that made sense when Piggy could
* only read and answer, and stopped making sense the moment it could act.
*
* Sparkles rather than a chat bubble because the header's Piggy control
* already uses Sparkles: the rail row and the header button open the same
* agent on two surfaces, and giving them one glyph is what says so. Nothing
* else in this table uses it, which is the constraint that matters — the
* sidebar collapses to icons alone, and two rows sharing a glyph are two
* rows you have to expand the sidebar to tell apart.
*/
{ to: '/piggy', label: 'Piggy', icon: Sparkles, group: 'Workspace', primary: true },
// Still first in Intelligence and still in the phone tab bar. Losing `/` cost
// it a URL, not its prominence: it is one click from anywhere, and it remains
// the page an exec opens to see whether the business is working.
{ to: '/overview', label: 'Overview', icon: LayoutDashboard, group: 'Intelligence', primary: true },
{ to: '/growth', label: 'Growth', icon: Target, group: 'Intelligence' },
{ to: '/calendar', label: 'Calendar', icon: CalendarClock, group: 'Intelligence' },
{ to: '/piggy', label: 'Piggy', icon: MessageCircleMore, group: 'Intelligence' },
{ to: '/learn', label: 'Learn', icon: GraduationCap, group: 'Intelligence' },
{ to: '/margin', label: 'Margin', icon: TrendingUp, group: 'Intelligence', primary: true },
{ to: '/capacity', label: 'Capacity', icon: Server, group: 'Marketplace', primary: true },