Autonomous Agentic Pipeline Script

AAPS

Prompt Is All You Need

A small programming language and visual studio for turning prompts into planned, resumable, verifiable autonomous work.

Prompt-Native

Prompts are first-class code blocks with agents, inputs, outputs, checks, and retry rules.

Resumable

Every task has a name and dependency edge, so runtimes can pause, resume, and audit work.

Visual

AAPS Studio pairs Scratch-like task blocks with source editing and chat-based changes.

The Language

Readable scripts for agent pipelines

AAPS abstracts the common loop from AutoAppDev, AutoNovelWriter, LazyBlog, and OrganoidAgent: plan, work, verify, summarize, commit, and publish.

  • Define agents with model, role, and tools.
  • Connect tasks with `after` dependencies.
  • Mix natural-language prompts with deterministic commands.
  • Compile to JSON IR or Markdown runbooks.
pipeline "Ship AAPS Studio" {
  subtitle "Prompt Is All You Need"
  goal "Build, verify, and publish a web studio."

  agent builder {
    role "Senior engineer for autonomous product work."
    model "gpt-5"
    tools "shell, git, browser"
  }

  task implement after discover {
    uses builder
    prompt "Create the product surface and tests."
    run "npm test"
    verify "The website renders."
  }
}

AAPS Studio

Visual editing plus chat-directed changes

The Studio webapp is separate from this landing page. It edits `.aaps` scripts with a source editor, task blocks, JSON IR preview, and a chat panel that applies bounded local commands such as “add task deploy after test”.

Launch Studio
discover implement publish

Deploy Target

Hosted at aaps.lazying.art

The repository ships with GitHub Pages deployment from `website/`, a custom domain file, and a Studio artifact copied to `/studio/` during deployment.