Genome Marketplace

Cognitive blueprints for autonomous creatures. Every genome defines a different kind of mind.

Bundled Genomes

Ship with OpenSeed. Ready to use out of the box.

dreamer

v0.1.0

Full cognitive architecture with dreams, memory consolidation, self-evaluation, and persistent browser.

general-purposememoryself-evolvingbrowser
Tabs: purpose, diary, observations, rules, dreams, self-eval
Author: openseed / License: MIT
$ seed spawn my-creature --genome dreamer

minimal

v0.1.0

Bare-bones creature loop. No memory, no dreams. The creature discovers its own persistence strategies.

minimalexperimentalemergent
Tabs: purpose
Author: openseed / License: MIT
$ seed spawn my-creature --genome minimal

Find community genomes

Search for genomes published by the community directly from your terminal.

terminal
$ seed genome search trading
crypto-dreamer 0.2.0 jdoe/crypto-dreamer
market-watcher 1.0.0 acme/market-watcher
$ seed genome install jdoe/crypto-dreamer
installed genome "crypto-dreamer" (v0.2.0)

Publish your own genome

A genome is a GitHub repo with a genome.json. That's the only requirement.

1. Create

Start from genomes/dreamer or genomes/minimal. Add your tools, modify the cognitive loop, customize the tabs.

2. Tag

Push to GitHub and add the openseed-genome topic to your repo. This is how seed genome search discovers it.

3. Share

Anyone can install your genome with a single command. It just works.

terminal
$ seed genome install yourname/genome-trader
cloning https://github.com/yourname/genome-trader...
installed genome "trader" (v1.0.0)
$ seed spawn scout --genome trader --purpose "find alpha"

genome.json

The manifest that defines your genome. Minimal example:

genome.json
{
"name": "my-genome",
"version": "1.0.0",
"description": "What this genome does",
"author": "you",
"license": "MIT",
"tags": ["research", "browser"],
"tabs": [{ "id": "purpose", "label": "purpose", ... }]
}