Skip to main content

AWFL: AI Workflows CLI

Project description

AWFL CLI

License Python Status

Website: https://awfl.us

AWFL CLI quickstart

A developer-friendly command line for working with AI-powered workflows and codebase-aware agents.

AWFL CLI lets you converse with agent workflows from your terminal, apply code changes safely via tool calls, and watch live progress and events. It is designed for day‑to‑day development in AWFL repositories and any project where agents need to read, write, and run within your workspace.

Table of contents

  • Overview
  • Features
  • Installation
  • Quick start
  • Demo
  • Usage
    • Essential commands
    • Configuration
    • Authentication
  • How it works (high level)
  • Troubleshooting
  • Development
  • Contributing
  • License
  • Links

Overview

  • AWFL is a local CLI that connects to an AI workflows service. You select a workflow (agent), chat in natural language, and the agent can execute side effects via tool calls such as writing files or running commands.
  • The CLI streams events using Server‑Sent Events (SSE) and ensures side effects are executed exactly once per project, even if you’ve opened multiple terminals.

Features

  • Talk to codebase‑aware agents from your terminal.
  • Apply tool calls safely: write files, run shell commands, and more.
  • Live event streaming with clear, deduplicated logs.
  • Project‑wide leader election to avoid duplicate side effects across terminals.
  • Flexible execution backends (API mode today; gcloud compatibility in progress).
  • Developer helpers for local workflow development (watcher, deploy, logs).

Installation

  • Prerequisites

    • Python 3.11+
    • Optional but recommended: pipx for isolated CLI installs
    • gcloud CLI if you plan to deploy or use gcloud execution modes
  • Install with pipx (recommended)

    • pipx install awfl
    • Verify: awfl --version
  • Install with pip (user environment)

    • pip install --user awfl
    • Ensure ~/.local/bin (or your platform’s user scripts dir) is on PATH.
  • Install from source (for development)

Quick start

The fastest path from install to first agent response.

    1. Install the CLI
    • pipx install awfl
    1. Launch and sign in
    • awfl
    • On first run you’ll be prompted to complete a Google Device Login. Tokens are cached under ~/.awfl.
    1. Choose an agent and ask for help
    • At the prompt:
      • workflows # open the selector
      • Pick: codebase-ProjectManager
      • Then type a request, for example: "Create a CONTRIBUTING.md and add an install badge to README"

Copy/paste one‑liner (uses default origin):

pipx install awfl && awfl

If your server isn’t at http://localhost:5050, run this once before launching:

awfl set api_origin https://your-server.example.com

Demo

  • Watch: See recording and export options in docs/DEMO.md.
  • Transcript (60 seconds)
    $ awfl
    … connecting to server, session initialized …
    
    awfl> workflows
    … select: codebase-ProjectManager …
    
    awfl> "Add a Demo section to README and a recording script"
    Agent: Planning changes…
    Agent: Applying tool calls
      • UPDATE_FILE: README.md
      • UPDATE_FILE: docs/DEMO.md
      • UPDATE_FILE: scripts/record_demo.sh
      • RUN_COMMAND: chmod +x scripts/record_demo.sh
    Agent: Done. Review changes in git.
    

Usage

  • Essential commands

    • workflows | ls
      • Open the interactive workflow selector and set the active agent for this session.
    • call [args...]
      • Invoke a specific workflow one‑off without changing the active agent.
    • model [name]
      • View or set the LLM model injected into workflow requests.
    • stop | cancel | abort
      • Cancel the currently active workflow execution.
    • status
      • Show execution mode, API origin, active workflow, and other runtime details.
    • set api_origin
    • auth login | whoami | auth logout
      • Start device login, show the authenticated user, and clear cached tokens.
    • dev start | dev status | dev stop | dev logs
      • Developer helpers for local stack and workflow development. dev start can run the watcher, compose, and ngrok.
    • dev generate-yamls
      • Regenerate workflow YAMLs (project‑specific; requires sbt).
    • dev deploy-workflow <yaml_path>
      • Deploy a single workflow via gcloud.
  • Configuration

    • API origin
    • Model
      • model gpt-5 sets the LLM model that the CLI injects into workflow payloads.
    • Workspace project override (AWFL_PROJECT_ID)
      • Set AWFL_PROJECT_ID to force the workspace project without relying on git discovery.
      • Useful outside a git repo or when the git origin is missing.
      • Example:
        export AWFL_PROJECT_ID=my-project-id
        export SKIP_AUTH=1  # optional for trusted local development
        awfl
        
      • Expected startup log:
        • "Using AWFL_PROJECT_ID=my-project-id; skipping git discovery"
      • The SSE stream should connect for both project and session scopes. Verify with the status command, which echoes AWFL_PROJECT_ID.
  • Authentication

    • The CLI uses Google Device Login followed by Firebase sign‑in. Tokens are cached under ~/.awfl.
    • You can skip auth in trusted local development with an environment flag (see status).

How it works (high level)

  • Sessions
    • Session identity is resolved in order: ASSISTANT_WORKFLOW env (normalized) > selected active workflow (normalized) > local UUID fallback.
  • Event streaming and side effects
    • Each terminal streams SSE events for its current session. One terminal per project acquires a lightweight project leader lock and applies tool calls (file writes, shell commands). Other terminals only display events, avoiding duplicate side effects.
  • Workflow execution
    • The CLI posts to your server’s /api/workflows/execute, including the active model and session metadata. See AGENT.md for deeper internals.

Troubleshooting

  • Login loop or auth errors
    • Run auth login again and confirm the device flow. Check whoami afterwards.
  • No workflows listed
    • Ensure your server is running and API origin is correct. Use status to verify.
  • Side effects not applying in this terminal
    • Another terminal likely holds the project leader role. That’s expected. Close it if you want this terminal to take over.

Development

  • Repository layout

    • src/awfl: CLI sources (entry point, commands, consumers, response handling, utils)
    • src/awfl/cmds/dev: Developer helpers (watcher, deploy, logs)
  • Local setup

    • python -m venv .venv && source .venv/bin/activate
    • pip install -e .
  • Helpful commands

    • awfl dev status: Show environment, paths, watcher state
    • awfl dev start: Start ngrok/compose/watcher tasks as needed (returns to prompt)
    • awfl dev generate-yamls: Regenerate workflow YAMLs (project‑specific)
    • awfl dev deploy-workflow : Deploy a single workflow via gcloud
  • Notes

    • Prefer installing and running within a project‑local virtualenv to avoid path mismatches.
    • When spawning Python subprocesses, the CLI uses the current interpreter to keep environments consistent.

Contributing

  • Issues and feature requests are welcome: https://github.com/awfl-us/cli/issues
  • Pull requests
    • Fork the repo and create a feature branch.
    • Add or update tests where reasonable.
    • Keep changes focused and small; include a clear description and rationale.
    • Ensure linters/tests pass locally.
  • Code of Conduct
    • Be respectful and constructive. Harassment or discrimination are not tolerated.

License

  • MIT — see LICENSE for details.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

awfl-0.1.10.tar.gz (71.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

awfl-0.1.10-py3-none-any.whl (87.8 kB view details)

Uploaded Python 3

File details

Details for the file awfl-0.1.10.tar.gz.

File metadata

  • Download URL: awfl-0.1.10.tar.gz
  • Upload date:
  • Size: 71.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for awfl-0.1.10.tar.gz
Algorithm Hash digest
SHA256 c18e87a4fbe157ae65e612d0727849de5d45dc1c112a5ecc930061dd04ef2f49
MD5 0883578d6b0d7d66a18aa2ed6ce65d55
BLAKE2b-256 e6395a9b6513b8513c94f616ec4af2877688aa566efcc3d32257c45edf476d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for awfl-0.1.10.tar.gz:

Publisher: python-publish.yml on awfl-us/cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file awfl-0.1.10-py3-none-any.whl.

File metadata

  • Download URL: awfl-0.1.10-py3-none-any.whl
  • Upload date:
  • Size: 87.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for awfl-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 9039359ef97e11996c650876266c7bb145f385e65e8d3410dc7e4313a12fde8b
MD5 579b429b975ed1fea4bf70c5afa30049
BLAKE2b-256 70142be7603ba135b6b92659b898fa265f9b779c85fee60b1c2fe50c6c80e8c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for awfl-0.1.10-py3-none-any.whl:

Publisher: python-publish.yml on awfl-us/cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page