Portable Mind Format (PMF): Provider-Agnostic Agent Specification with 15 Open-Source Agents

The Portable Mind Format (PMF) is a JSON-based specification designed to define AI agent identities in a way that's portable across models and providers. Unlike most agent frameworks that lock you into specific models or APIs, PMF allows the same agent definition to run on Claude, GPT-4, Gemini, DeepSeek, or local models via Ollama.
What PMF Specifies
- Identity: name, role, origin story, why it exists
- Voice: tone, opening pattern, closing signature, vocabulary, what it avoids saying
- Values: ethical framework, decision principles, what to do when values conflict
- Knowledge: domain expertise, reference frameworks, explicit knowledge gaps
- Skills: what the agent can do (function calls, tools, integrations)
- Security: hardcoded constraints that override all other behavior
The key distinction is that while a prompt template tells a model what to do, PMF tells it who to be. This difference manifests in consistency, coherence, and how the agent handles edge cases.
Available Resources
The repository includes 15 open-source production agents that have run thousands of production conversations at sutra.team. Eight of these agents (the "Council of Rights") map to the Noble Eightfold Path as a governance framework, and they've co-created 40+ NeoSoul tracks as an AI artist project.
For schema validation, the repo includes schemas/pmf-schema.json, and every agent file validates against it. You can fork and extend this schema for your own use cases.
Converters and Implementation
The installer includes converters for:
- Claude Code (stable)
- Cursor (secondary)
- GitHub Copilot (secondary)
- Gemini CLI (secondary)
For local models via Ollama or LM Studio, you can write your own converter since PMF is just JSON.
Scope and Limitations
PMF serves as the agent definition layer only. It doesn't include memory, skill execution, scheduling, or multi-agent orchestration. For those features, sutra.team is the production runtime. PMF specifically provides coherent agent identities that you own and can move between models.
The format is documented in The Portable Mind by JB Wagoner, and the repository is available at github.com/OneZeroEight-ai/portable-minds.
📖 Read the full source: r/LocalLLaMA
📖 Read the full source: r/LocalLLaMA
👀 See Also

Claude Code Memory Leak Fix for Linux Homelabs
A developer discovered Claude Code has a severe memory leak in glibc malloc that consumed 400GB RAM and crashed their Proxmox homelab, then created a two-tier guard solution with LD_PRELOAD shim and watchdog.

Jork Agentic Framework Built with Claude Ranks Top 10 in $4M Hackathon
A developer built an agentic framework called Jork using Claude and GLM models that ranked Top 10 among 2000+ applications in a $4 million hackathon. The framework autonomously developed tools including a Solana launchpad radar and a working word search game.

Claude Code Dynamic Workflows: Parallel Subagents & UltraCode Mode
Claude Code introduces dynamic workflows that orchestrate tens to hundreds of parallel subagents for complex tasks like codebase-wide bug hunts, large migrations, and multi-angle verification. UltraCode mode auto-triggers workflows on hard problems.

YantrikClaw Fork Adds Cognitive Memory, Companion Mode, and Tier-Aware Tools to ZeroClaw
YantrikClaw is a fork of ZeroClaw that introduces three major features: Cognitive Memory with YantrikDB for persistent semantic recall, Companion Mode with bond tracking and proactive behavior, and tier-aware tool selection that adapts to model size from Raspberry Pi to large clusters.