NOETIC
Framework
Examples

Examples

Composite operation examples showing how Noetic's eight primitives compose into real agent patterns.

These examples demonstrate how Noetic's primitives combine to solve real problems. Each one is a self-contained agent you can run directly.

ExamplePrimitives UsedWhat It Does
Branching Agentconditional + runCode + callModel + loopRoutes support tickets by keyword classification
Parallel ResearchinParallel (all) + spawn + callModelResearches a topic from 3 perspectives in parallel
Pipeline Agentconditional + runCode + callModel + loop + prepareNext3-stage text processing pipeline
Deep Agentspawn + loop + callModel + tool + context layersFull coding agent with filesystem, planning, delegation, and skills

Running Examples

All examples live in packages/core/examples/ and require an OPENROUTER_API_KEY environment variable for callModel steps.

cd packages/core
OPENROUTER_API_KEY=your-key bun run examples/branching-agent.ts

On this page