Skip to content

AminChirazi/agent-framework

 
 

Repository files navigation

Looped Agent Framework

Looped AF — a Docker-native, config-driven framework for building single-purpose, event-driven AI agents that automate business processes.

Start with the Manifesto. Three minutes; it's the whole philosophy.

The idea: describing an agent should be a YAML file, and deploying it should be a docker run. Agents are long-running services that sit in a loop — wait for an event (a Discord message, a webhook, a cron tick), do their one job, deliver the result, go idle.

nickname: issue-bot   # agents name themselves; you just give them a handle
description: Turns team Discord messages into GitHub issues.
model: { provider: anthropic, id: claude-sonnet-5 }
triggers:
  - type: discord
    channels: ["issues"]
tools:
  mcp:
    - name: github
      command: ["docker", "run", "-i", "ghcr.io/github/github-mcp-server"]
      env:
        GITHUB_TOKEN: ${GITHUB_TOKEN}
permissions:
  net: [discord.com, gateway.discord.gg, api.github.com]

Status

Building — M4 is code-complete: the looped/agent base image (hardened, non-root, health-checked), the custom-image recipe (FROM looped/agent + one apk add), the status surface (/healthz, /runs, /audit), and the issue-bot as a self-contained docker compose up (examples/issue-bot) — on top of skills, MCP, Discord/webhook/cron triggers, deny-by-default permissions, and the SQLite audit trail. Docs: Getting started · Service agents · Skills & tools · Deployment. Next: live deployment + M5, the agent that builds agents (roadmap).

The plans are the source of truth:

Runtime: Deno + TypeScript.

About

Looped AF

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 98.6%
  • Dockerfile 1.4%