Solutions · AI builders

The substrate under your AI product.

Whether you’re shipping an AI feature or running a data pipeline, you need the same four things: memory that persists, a database, compute that scales out, and files your steps can share. sys9 gives you each as an atomic service — compose them, don’t assemble a stack.

the shape

Shard the work, share the memory.

Fork compute for the parallel parts, read and write a real database, recall one memory across every agent, and retrieve context semantically — all from the terminal — by you or by an agent.

a pipeline, composed

Parallel where it pays. Persistent where it counts.

mem9 keeps one memory across every agent and session, so context isn’t re-derived on each run. db9 holds the structured state. Your scheduler creates run9 Boxes for parallel stages and assigns work to each one. drive9 carries the files between them. The example creates a small Box and a database; connect your own pipeline and configure mem9 through its documented API or runtime integration.

Prepare a drive using the drive9 setup guide, wait for its filesystem to become ready, and upload your input files before this example. Replace pipeline-files with that saved context name.

one memory, many agents branch db + data + files explicit shard scheduling semantic retrieval
terminal
# Install sys9 and complete run9 login first
sys9 run box create batch-7 --image public.ecr.aws/docker/library/alpine:3.20
sys9 run box exec batch-7 /bin/sh -lc 'echo "pipeline worker ready"'

sys9 db create --name pipeline
sys9 db sql pipeline -q "SELECT 1"

# Search only if the prepared workspace is accessible
sys9 drive ctx use pipeline-files &&
  sys9 drive fs ls / &&
  sys9 drive fs grep "Q3 pricing" /

# Remove compute after exporting your results
sys9 run box rm batch-7
why build here

Compose the services your pipeline needs.

Atomic & composable

Each service does one job. Start with one, add the rest when you need them — there’s no bundle to buy or framework to adopt.

Configure each service

Install the CLI, complete each service’s login or workspace setup, and give agents scoped credentials. run9 requires an authenticated project.

Works with your agents

mem9 plugs into the runtimes you already use, so memory and retrieval aren’t tied to one agent framework.

Claude CodeOpenAI CodexOpenCodeOpenClawHermesDify
build your pipeline

Build your AI product on composable parts.

Start with a product quickstart, then add the services your pipeline needs.