A coding-agent harness: configuration, TypeScript extensions, skills, subagents, and workflow conventions for turning a general-purpose coding agent into a reliable software engineering partner.
This repository manages my Pi agent configuration under pi/agent/, built around one development philosophy — clarify, plan, challenge, execute, review, complete — adapted to Pi's native tool surface. (My Claude Code configuration lives in a separate private repository.)
This repo pairs well with my agent-tools, especially the MCP broker for safe external tool access.
This is my personal agent operating system for software work. It combines:
- A Pi-native workflow layer for planning, executing, independently reviewing, and completing engineering tasks
- Custom TypeScript extensions that add durable goals, TODO tracking, subagents, prechecked scheduled tasks, brokered external tools, web access, and TUI polish
- Reusable skills and saved workflows for planning, plan visualization, diagnosis, TDD, browser automation, frontend design, Jira ticket creation, evidence-based review, deep public-web research, memory workflows, and agent-harness engineering
- Centrally governed subagents with explicit composable capabilities, model tiers, and thinking
- Extension development conventions with shared helpers, colocated tests, and deterministic checks
The goal is not just to store settings. The goal is to make the agent more stateful, safer, more inspectable, and better at real development workflows.
pi/agent/ is the more heavily engineered of the two configurations. Running make stow-pi symlinks it into ~/.pi/agent/.
The Pi setup is built around a durable development loop:
- Clarify scope with
clarifywhen requirements, edge cases, acceptance criteria, or design intent are fuzzy - Plan the work with
plan, then stress-test substantial plans withchallenge-planbefore execution - Execute deliberately with session-scoped goals via
goal, optional fail-closed independent completion review, and in-session task tracking viatodo - Delegate isolated research with self-contained prompts and explicit filesystem, web, broker, or shell capabilities
- Review independently with the
reviewskill, which prepares target, patch, acceptance-criteria, and deterministic-check evidence for the savedreviewworkflow
Supporting rails keep the loop safer and more inspectable:
- Route authenticated external access through
mcp-brokerinstead of exposing credentials directly to the agent - Use direct web access through
web-accessfor public search and page fetching - Orchestrate multi-agent work with inline or reusable named
workflowdefinitions—including a repository-manageddeep-researchworkflow—that fan out explicitly routed subagents under host-enforced concurrency, central tier policy, run budgets, and structured verification/report gates
This turns Pi from a chat interface with tools into a more structured development harness.
The Pi extensions are directory-based TypeScript modules under pi/agent/extensions/. They are grouped around the capabilities I want the agent to have:
- Workflow state:
goal,todo,scheduled-tasks - Delegation and orchestration:
subagents,workflows,structured-output - External access:
mcp-broker,web-access - Agent/user interaction:
ask-user - Context and TUI polish:
context-usage,extra-context,compact-tools,startup-header,statusline - Shared infrastructure:
_sharedhelpers for rendering, config, logging, and common extension behavior
See the Pi README for the full extension table.
The Pi skill set lives in pi/agent/skills/ and is written for Pi's tool surface and GPT-5.x-style instruction following. It includes workflow skills for clarifying requirements, planning, visualizing plans as HTML artifacts, diagnosing failures, building frontend UI, using Playwright, creating skills, and working with retained memory.
The subagents extension runs isolated child contexts from self-contained prompts. Each call explicitly selects from four fixed capabilities—filesystem reads, shell execution, read-only broker access, and public web access—plus a centrally configured small/medium/large model tier and allowed thinking level. There are no named roles or Markdown agent presets; intent is the visible identity and authority is composed per request.
The workflows extension adds compound listing, validation, and foreground JavaScript execution for inline or reusable named user-scoped definitions. Workflow calls carry the same explicit capability/tier/thinking contract and use host-enforced concurrency, run budgets, structured verification/report gates, and compact progress. The repository ships deep-research, a bounded public-web workflow that cross-checks source-backed claims, and review, a read-only workflow that reviews caller-prepared evidence through independent structured lenses and one fail-closed adjudication. The companion review skill prepares the evidence package, invokes that workflow, and preserves its report.
Pi extension work is treated like real software, not just config:
- TypeScript source lives beside extension docs and tests
- shared helpers live under
pi/agent/extensions/_shared/ - meaningful logic has colocated
*.test.tscoverage README.mddocuments user-facing behaviorDESIGN.mddocuments architecture and maintenance invariants for non-trivial extensionsAPI.md/api.tsdefine reusable public surfaces when an extension exposes code to other extensions
Useful development commands:
make install-dev # install Node dependencies and Husky git hooks
npm run lint # lint Pi extension and saved-workflow TypeScript files
npm run format:check # check formatting for TS/JS/JSON/Markdown/YAML files
make typecheck # type-check Pi extension and saved-workflow TypeScript files
make test # run Pi extension and saved-workflow unit testsagent-tools provides external utilities that complement this configuration repo.
The main integration point is the MCP broker: a credentials-holding proxy that lets sandboxed agents use authenticated external services without holding secrets directly. In Pi, the mcp-broker extension exposes broker-backed tools through mcp_search, mcp_describe, and mcp_call, and guards direct gh or remote-git usage when broker tools are preferred.
agent-tools also includes a sandbox manager (sb) for isolated agent runs. It is relevant to Pi as an outer isolation layer: this Pi config adds workflow guidance and broker preferences, but it does not implement shell command restrictions itself.
notes/ contains public essays and working notes about agent harness design, permissions, subagents, planning workflows, and related topics.
git clone git@github.com:averycrespi/agent-config.git
cd agent-config
brew bundle # install system dependencies on macOS
make install-dev # install Node dependencies and Husky git hooks
make install-playwright # for browser automation and web-access JS rendering
make stow-pi # symlink pi/agent/ into ~/.pi/agent/- Repository licensed under MIT
- Individual components may have their own licenses