Skip to content

Latest commit

 

History

13 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Autonomy

A goal-driven agent runtime for autonomous action, world-state awareness, capability composition, and self-verification.

Autonomy is an experimental Agent Runtime built from first principles.

The goal is simple:

Don’t define how the agent should work. Define what needs to be achieved, what the world looks like, and what “done” means. Let the agent figure out the path.

Concepts

Architecture comes first. Each core concept is documented separately under docs/:

Context · Task · Agent · Capability · Completion Contract · Delegation · Event · Verification · Policy · …

Start here: docs/README.md

Why

Most agent systems today are still heavily dependent on predefined workflows:

Task → Workflow → Skill A → Skill B → Skill C

This works well for predictable automation, but it limits true autonomy. When the result of one step is uncertain, humans often have to step in, verify it, and decide what happens next.

Autonomy takes a different approach:

Task → Agent → Capability → Action → World State Change → Verification → Done / Re-plan

The workflow is not the primary artifact. It emerges from the agent’s decisions while interacting with the world.

Core Model

  • Task — what needs to be achieved.
  • Domain — the semantic space that defines relevant capabilities.
  • Context — the environment in which the task exists.
  • Asset — something in the world that can be observed, referenced, or changed.
  • Capability — something the system can do to or with an asset.
  • Action — an actual execution of a capability.
  • Event — an observable fact or state change.
  • Verification — determines whether the resulting world state satisfies the goal.
  • Agent — reasons about the task and chooses what to do next.
  • Runtime — reliably executes actions and manages their lifecycle.
  • Provider — a concrete implementation of a capability.

The central relationship is:

Task → Target Asset + Desired State → Agent → Capability → Action → World → Observation / Event → Verification → Completion Contract

Verification First

A capability may report that its execution succeeded, but that does not necessarily mean the world reached the desired state.

For example: printer.print(image) — a successful API call does not prove that the physical image was actually printed correctly.

The system therefore separates:

Capability → Effect + Evidence → External Verification → Completion Contract

Verification can be provided by rules, tests, sensors, models, other agents, or humans.

Design Principles

  • Goals over workflows
  • World state over assumptions
  • Capabilities over hard-coded procedures
  • External verification over self-declared success
  • Dynamic planning over predefined execution paths
  • Small primitives with recursive composition
  • Reliable runtime, flexible agents

Full principle set: docs/principles.md

Status

Early-stage experimental project.

Current focus: flat Go core under src/ aligned with the architecture baseline — entities vs behavior interfaces — plus a runnable hello loop.

Entity objects: Task, Agent, Asset, Action, Event.
Behavior interfaces: DecisionMaker (on Agent), Capability, Runtime, Verifier, World.

go test ./...
go run ./cmd/hello

The hello demo health-checks a fake service and finishes only when StateVerifier sees Contract.ExpectedState on the world — capability success alone is not enough.

Decision cycle: BuildDecisionContextDecideExecuteRecordUpdateWorldVerify / ShouldTerminate.

Built with Go (Golang).

About

A goal-driven agent runtime for autonomous action, world-state awareness, capability composition, and self-verification.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages