Skip to content

outcomesinsights/seeds

Repository files navigation

seeds

Git-backed deliberation capture for ideas that need time to grow.

Seeds is a CLI tool for capturing thoughts, ideas, and questions with minimal friction, then tracking them through a deliberation lifecycle. Designed for developers and AI-assisted workflows where ideas need time to mature before becoming decisions.

Quick Demo

$ seeds jot "What if we used event sourcing instead of CRUD?"
Created seed-a1b2: What if we used event sourcing instead of CRUD?

$ seeds ask "How would this affect our current migration strategy?" --seed seed-a1b2
Created question q-c3d4 on seed-a1b2

$ seeds explore seed-a1b2
seed-a1b2 → exploring

$ seeds create -t "Try event sourcing for the audit log first" --parent seed-a1b2 --type exploration
Created seed-a1b2.1: Try event sourcing for the audit log first

$ seeds resolve seed-a1b2.1
seed-a1b2.1 → resolved

$ seeds answer q-c3d4 "Migration can proceed independently — event sourcing only affects new writes"
Answered q-c3d4

$ seeds resolve seed-a1b2
seed-a1b2 → resolved

Installation

# From GitHub
pip install git+https://github.com/outcomesinsights/seeds.git

# Or clone and install locally
git clone https://github.com/outcomesinsights/seeds.git
cd seeds
pip install .

Requires Python 3.10+.

Usage

Initialize

seeds init                              # Creates .seeds/ directory

Capture

seeds jot "Quick thought"               # Minimal friction capture
seeds create -t "Title" --type idea      # Full seed creation with metadata
seeds create -t "Sub-idea" --parent <id> # Create a child seed

Track

seeds list                               # List active seeds
seeds show <id>                          # Show seed details with questions
seeds tree                               # Hierarchical view
seeds ready                              # Seeds ready for attention
seeds blocked                            # Seeds blocked by unresolved children

Evolve

seeds explore <id>                       # Start actively exploring
seeds defer <id>                         # Set aside for later
seeds resolve <id>                       # Mark as resolved
seeds abandon <id>                       # Decided against

Trellis

seeds trellis <id> --to <file> --as "<principle>"   # Distill a resolved seed into a durable trellis

Ask Questions

seeds ask "Question?" --seed <id>        # Attach a question to a seed
seeds answer <q-id> "The answer"         # Answer a question
seeds questions                          # List open questions

Connect

seeds link <id1> <id2>                   # Create bidirectional relationship

Export

seeds sync --flush-only                  # Export to .seeds/seeds.jsonl (git-trackable)

AI Context

seeds prime                              # Output context for AI agents

Trellises

A trellis is a durable principle that future work is trained along — a load-bearing but gentle guide (one crisp, bounded line) that stays in front of every future session. seeds trellis distills a matured or resolved seed into such a principle and writes it, with a two-way provenance link, into always-on project context (CLAUDE.md, AGENTS.md, or the README), then resolves the seed. The point is placement: a trellis lands in the context your agent runtime injects every session, so it shapes what grows next without anyone re-explaining it.

seeds trellis <id> --to CLAUDE.md --as "a code set has exactly one vocabulary ID"

Under the hood this appends a provenance-stamped bullet under a managed ## Principles section of the target file, tags the seed trellis, records the back-link in the seed's resolution, and resolves it (pass --no-resolve to keep deliberating). Reach for this sparingly — only when a deliberation has settled into a genuinely load-bearing, bounded principle, not for everyday seeds. Keep the line scoped ("a code set has exactly one vocabulary ID"), never an open-ended imperative ("respect deprecations and move forward"), because a trellis line is read as a hard rule every session. In Claude Code, saying "trellis this" or "make this a trellis" fires the bundled seeds:trellis skill, which walks the deliberation, helps you distill the one line, and runs seeds trellis for you.

Status

Beta. Seeds is under active development. The core workflow (capture, explore, resolve) is stable. The CLI interface may evolve.

Web UI (Experimental)

Seeds includes an experimental web interface for browsing your seeds:

seeds serve                              # Starts on http://localhost:53365

This provides read-only views of your seeds, questions, and their relationships.

Claude Code Skills

Seeds ships a small set of skills for use with Claude Code, distributed as a local plugin. After installing the seeds CLI, run:

seeds skills install

This registers the bundled marketplace and installs the seeds plugin under the seeds:* namespace.

Available skills

  • seeds:feedback — frames the next user message as feedback on the agent's prior turn and invites the agent to follow up with its own questions, comments, or criticisms. Useful during deliberation when you want the agent to push back rather than just execute.
  • seeds:seeds-to-beads — frames the user's request as "convert these seeds into beads" and applies the agreed seeds-to-beads conversion principles (separating action from context, mechanically checkable acceptance criteria, etc.) for that one reply.
  • seeds:trellis — fires when you say "trellis this" or "make this a trellis"; distills the seed's deliberation into one bounded principle and writes it into durable context via seeds trellis.

Re-run seeds skills install after upgrading the seeds CLI to pick up updated skill content.

Acknowledgments

Seeds was inspired by Steve Yegge's beads project and its core insight: giving AI agents structured tools improves how agents work, bridges AI-human communication, and unlocks AI potential not accessible through unstructured conversation alone.

Contributing

Issues and pull requests are welcome! See CONTRIBUTING.md for guidelines.

License

MIT

About

Git-backed deliberation capture for ideas that need time to grow

Resources

Contributing

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages