← All stories
● Covered by 1 source · 1 reportLow impact1 neutral

Seed: A Minimal, Self-Modifying Agent Harness Released

🔄 Updated 1h ago
New to BrevFeed? We gather this story from every outlet covering it into one summary — ranked by real-world impact, not just the latest headline — so you never miss what matters. What is BrevFeed? →

Key points

  • Seed is a minimal agent harness with a small, self-rewriting core.
  • Agents grow tools, memory, and skills into a 'self/' directory.
  • Each agent instance is distinct and diverges based on its experiences.
  • Supports models from OpenAI, Anthropic, Gemini, and OpenRouter.

Introduction to Seed

Seed is a newly introduced minimal agent harness. It functions as a small loop connecting a language model to a single tool, 'exec', which runs bash commands. The system prompt is loaded from a file owned and rewritable by the agent itself.

Self-Modifying Capabilities

Unlike traditional frameworks, Seed requires agents to grow their own tools, memory, skills, and conventions into a dedicated 'self/' directory during each session. This design allows for self-modification and adaptation, as the agent's core loop is part of its individual history.

Each instance of an agent planted in a directory is unique and diverges based on its experiences, fostering individual development rather than relying on a shared framework.

Operational Details

To start, users create a directory and initialize Seed, which copies 'seed.py' and 'run_seed.sh' into it, germinates 'self/SELF.md', and commits these files to a new git repository. Subsequent sessions can be resumed using 'run_seed.sh'.

A verbatim transcript of every session is recorded to 'self/sessions/*.json', serving as a flight recorder. While not loaded at boot, agents can develop tools to analyze their past interactions.

Model Integration

Seed handles models and API keys through Simon Willison's 'llm' library. The default model is 'openai-codex/gpt-5.6-sol', which uses the ChatGPT login from the Codex CLI. Users can override the model for specific sessions.

Bundled providers include OpenAI (via Codex subscription or API key), Anthropic, Gemini, and OpenRouter, which offers access to hundreds of models with a single key.

✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →

The daily brief

One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.

One email a day. Unsubscribe in one click, any time.

Today's brief

Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.

~17 min · 15 stories · Aug 20

▶ Play today's brief Listen on Spotify

New every morning, and the back catalogue is archived by date.

Reporting from

Seed is a new minimal agent harness designed to allow AI agents to grow their own tools, memory, and skills from a small, self-rewriting core. This approach aims to enable more autonomous and adaptable AI development by having agents build their capabilities over time rather than relying on predefined frameworks.