agent-compiler
v0.3.0Compile deterministic, content-hashed agents from small behavior modules: a skill turns fuzzy intent into a typed AgentQuery, a stdlib-only kernel resolves modules, expands dependencies, fails closed on conflicts and over-ceiling effects, and emits an immutable AgentImage plus a rendered harness-native subagent — never inventing behavior text without provenance.
By Jordan RichlenLicense: MIT1 GitHub starsUpdated 1 hour ago
Directory evidence
- Runtimes
- Claude Code
- Parsed components
- 2 skill or MCP entries
- Source updated
- Sep 24, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install agent-compiler for Claude Code
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install agent-compiler@agent-plugin-marketplacePaste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/JRichlen/agent-pluginsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/agent-compiler/.
Plugin files
├── .claude-plugin/plugin.json├── skills/agent-compiler/SKILL.md└── .mcp.json
Included Skills1
Compile deterministic, content-hashed agents from small behavior modules instead of hand-writing persona prompts. Use when the user asks to build, compose, or reproduce an agent/persona/reviewer from reusable behavior ("compile an agent", "make me a security reviewer from the registry", "why does this agent behave this way", "add a rule to the registry"), or when agent behavior needs provenance, an effect ceiling, or byte-for-byte reproducibility.
MCP servers1
- command
- python3
- args
- ${CLAUDE_PLUGIN_ROOT}/scripts/mcp_server.py
MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.
Plugin manifests1
{
"name": "agent-compiler",
"version": "0.3.0",
"description": "Compile deterministic, content-hashed agents from small behavior modules: a skill turns fuzzy intent into a typed AgentQuery, a stdlib-only kernel resolves modules, expands dependencies, fails closed on conflicts and over-ceiling effects, and emits an immutable AgentImage plus a rendered harness-native subagent — never inventing behavior text without provenance.",
"author": {
"name": "Jordan Richlen"
},
"repository": "https://github.com/JRichlen/agent-plugins",
"homepage": "https://github.com/JRichlen/agent-plugins/tree/main/plugins/agent-compiler",
"license": "MIT",
"keywords": [
"agent-compiler",
"behavior-modules",
"deterministic",
"provenance",
"effect-ceiling",
"agent-image",
"persona"
],
"skills": "./skills/",
"commands": "./commands/",
"mcpServers": {
"kernel": {
"command": "python3",
"args": [
"${CLAUDE_PLUGIN_ROOT}/scripts/mcp_server.py"
]
}
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[agent-compiler on Agent Plugins Marketplace](https://pluginsmp.com/plugins/agent-compiler)