NEW: awork cli

Introducing the awork CLI :rocket:

Take awork to your terminal! The awk-cli lets you manage projects, users, time entries and more — directly from the command line.

Quick Install (macOS/Linux)

bash
brew tap awork-io/awork-cli
brew install awork-cli

Getting Started

 awork auth login

 # Verify everything works
 awork doctor

 # Explore available commands
 awork --help

Example Commands

List users

awork users list

 # With pagination and field selection
 awork users list --page-size 5 --select "id,firstName,lastName"

 # Table output for quick viewing
 awork users list --output table --select "firstName,lastName"

Built for Agentic Workflows :robot:

The CLI was designed with AI agents in mind:
• Structured JSON output — every response follows a predictable envelope format, making it easy for LLMs and automation scripts to parse
• Self-documenting — commands are auto-generated from our Swagger spec, so --help always reflects the latest API
• Deterministic behavior — no interactive prompts in normal operation; perfect for headless/automated environments
• Error handling — clear status codes and error messages that agents can reason about

Whether you’re building custom automations, integrating with CI/CD, or letting an AI agent manage your awork workspace — the CLI has you covered.

:package: GitHub: GitHub - awork-io/awork-cli

1 Like