Awee

Awee Documentation

Everything you need to build, automate, and ship with Awee.

Build AI workflows that actually work in production.

Awee Skills is a workflow engine that makes AI automation composable, observable, and cost-accountable - from a single YAML file to a production-grade pipeline.


Why Awee Skills

Most workflow tools make you choose: low-code simplicity or engineering flexibility. Awee Skills gives you both. Workflows are plain YAML - readable, diffable, reviewable. The engine is production infrastructure - typed, traced, retried, and cost-metered on every run.


A workflow in 30 lines

id: research-and-summarise
name: Research and Summarise

actions:
  - name: search
    component: search:web
    vars:
      query: "{{ topic }} latest developments 2025"

  - name: fetch
    component: crawler
    vars:
      url: "{{ search.results[0].url }}"

  - name: summarise
    component: inference
    vars:
      provider: anthropic
      model: claude-opus-4-20250514
      prompt: |
        Summarise the following article in three bullet points.
        Article: {{ fetch.output }}
    cache:
      for: 1h

  - name: save
    component: file:write
    vars:
      path: "./output/{{ topic | slug }}.md"
      content: "{{ summarise.content }}"

Search the web, crawl the top result, ask an AI to summarise it, write to a file. The summary is cached for one hour - re-running with the same inputs skips the model call entirely. That's the whole workflow.


Where to go next

How is this guide?

On this page