Prompt-Native
Prompts are first-class code blocks with agents, inputs, outputs, checks, and retry rules.
Autonomous Agentic Pipeline Script
Prompt Is All You Need
A small programming language and visual studio for turning prompts into planned, resumable, verifiable autonomous work.
Prompts are first-class code blocks with agents, inputs, outputs, checks, and retry rules.
Every task has a name and dependency edge, so runtimes can pause, resume, and audit work.
AAPS Studio pairs Scratch-like task blocks with source editing and chat-based changes.
The Language
AAPS abstracts the common loop from AutoAppDev, AutoNovelWriter, LazyBlog, and OrganoidAgent: plan, work, verify, summarize, commit, and publish.
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
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 StudioDeploy Target
The repository ships with GitHub Pages deployment from `website/`, a custom domain file, and a Studio artifact copied to `/studio/` during deployment.