Skip to main content

Production-ready CLI tool for scaffolding A2ABase Agent SDK projects

Project description

A2ABase CLI

Production-ready CLI tool for scaffolding and managing A2ABase Agent SDK projects.

Installation

pip install -e .

Or with uv:

uv pip install -e .

Usage

Initialize a new project

a2abase init

This will interactively prompt you for:

  • Project name
  • Package name
  • Template (basic, api, agentic)
  • Package manager (uv or pip)

Options:

  • --name, -n: Project name (non-interactive)
  • --package, -p: Package name (non-interactive)
  • --template, -t: Template type (non-interactive)
  • --pm: Package manager (non-interactive)
  • --install: Install dependencies after creation
  • --force: Overwrite existing files
  • --cwd: Working directory

Add an agent

a2abase add agent <name>

Example:

a2abase add agent weather

This creates src/<package>/agents/weather_agent.py with a basic agent implementation.

Add a tool

a2abase add tool <name>

Example:

a2abase add tool web_search

This creates src/<package>/tools/web_search.py with a basic tool implementation.

Options:

  • --from-api: Select from available A2ABase API tools
  • --agent, -a: Associate tool with specific agent
  • --force: Overwrite existing tool file

Select from A2ABase API tools:

a2abase add tool --from-api

This will show an interactive list of available A2ABase built-in tools.

Run in development mode

a2abase dev

IMPORTANT: Ngrok is enabled by default because A2ABase agents run on remote servers and require public access to your local MCP server. Your custom tools won't work without ngrok!

Runs the project with auto-reload on file changes. Automatically starts the MCP server with ngrok tunnel.

Setup (required):

# 1. Install ngrok support
pip install pyngrok

# 2. Get free ngrok auth token from https://dashboard.ngrok.com/get-started/your-authtoken
export NGROK_AUTH_TOKEN=your_token_here

# 3. Run dev command (ngrok enabled by default)
a2abase dev

Options:

  • --watch/--no-watch: Enable/disable auto-reload (default: enabled)
  • --mcp-port: MCP server port (default: 8000)
  • --no-mcp: Don't start MCP server
  • --ngrok/--no-ngrok: Enable/disable ngrok tunnel (default: enabled, required for remote agents)
  • --ngrok-token: Ngrok auth token (or set NGROK_AUTH_TOKEN env var)

The dev command will:

  • Start MCP server on http://localhost:8000/mcp (or custom port)
  • Create ngrok tunnel (enabled by default, required for remote agents)
  • Display both local and public URLs in a formatted table
  • Run your agent with auto-reload on file changes

Disable ngrok (only for local testing without remote agents):

a2abase dev --no-ngrok

Run once

a2abase run --input "your prompt here"

Options:

  • --input, -i: Input text for the agent
  • --json: Output as JSON

Run tests

a2abase test

Options:

  • --verbose, -v: Verbose output
  • --coverage: Run with coverage

Doctor (validate environment)

a2abase doctor

Checks:

  • Python version (3.11+)
  • Virtual environment
  • Required dependencies
  • Project configuration
  • Write permissions
  • Package manager availability

Show version

a2abase version

Shows CLI version, SDK version, and Python version.

Project Structure

When you run a2abase init, it creates:

<project_name>/
├── pyproject.toml          # Project configuration
├── README.md               # Project documentation
├── .gitignore             # Git ignore rules
├── .env.example           # Environment variables template
├── a2abase.yaml           # A2ABase project config
├── src/
│   └── <package_name>/
│       ├── __init__.py
│       ├── main.py        # Entrypoint
│       ├── sdk_adapter.py # SDK adapter (real or stub)
│       ├── agents/
│       │   ├── __init__.py
│       │   └── weather_agent.py  # Example weather agent
│       ├── tools/
│       │   ├── __init__.py
│       │   ├── weather.py         # Real weather tool (Open-Meteo API)
│       │   ├── mcp_server.py     # MCP server for custom tools
│       │   └── README.md         # Tools documentation
│       └── registry/
│           ├── __init__.py
│           ├── tools.py          # Tool registry
│           └── card.py           # Agent card generator
├── vendor/
│   └── a2abase_sdk_stub/  # Fallback stub SDK
│       ├── __init__.py
│       ├── agent.py
│       ├── tools.py
│       └── runner.py
└── tests/
    ├── __init__.py
    └── test_smoke.py

Generated Project Features

Weather Tool

  • 🌤️ Real weather data using Open-Meteo API
  • Free - No API key required
  • Current weather - Temperature, humidity, wind, conditions
  • Forecast - Up to 16 days of weather forecast
  • Geocoding - Automatic coordinate lookup for city names

MCP Server

  • 🔧 Custom tools - Serve your tools via MCP (Model Context Protocol)
  • 🚀 Auto-start - Automatically started by a2abase dev
  • 🌐 Ngrok support - Expose server publicly with --ngrok flag
  • 📝 Well-documented - Complete guide in tools/README.md

Example Agent

  • 🤖 Weather Agent - Ready-to-use example with custom weather tool
  • 📋 Agent cards - Metadata generation for agent registry
  • 🔄 Auto-reload - Development mode with file watching

Development

Setup

# Create virtual environment
python -m venv venv
source venv/bin/activate  # or .\venv\Scripts\activate on Windows

# Install dependencies
pip install -e ".[dev]"

# Run tests
pytest

Code Quality

The project uses ruff for linting and formatting:

ruff check .
ruff format .

Features

  • Interactive project scaffolding - Create projects with guided prompts
  • Agent and tool generators - Quickly add new agents and tools
  • MCP server integration - Serve custom tools to A2ABase agents
  • Ngrok support - Expose MCP server publicly for remote access
  • Weather tool example - Real weather API integration (Open-Meteo)
  • Auto-reload development server - Watch for changes and auto-restart
  • Environment validation - Doctor command checks your setup
  • Fallback stub SDK - Projects work without SDK installed
  • Idempotent operations - Won't overwrite without --force
  • Rich terminal UI - Beautiful colors, tables, and formatting
  • Cross-platform - Works on macOS, Linux, Windows
  • Python 3.11+ support - Modern Python features

Documentation

Quick Example

# 1. Create a new project
a2abase init --name my-weather-agent

# 2. Navigate to project
cd my-weather-agent

# 3. Set up environment
cp .env.example .env
# Edit .env and add BASEAI_API_KEY

# 4. Install dependencies
pip install -e .

# 5. Install ngrok support (required for remote agents)
pip install pyngrok

# 6. Set ngrok auth token (get free token from https://dashboard.ngrok.com/get-started/your-authtoken)
export NGROK_AUTH_TOKEN=your_token_here

# 7. Run in development mode (ngrok enabled by default)
a2abase dev

Ngrok Integration (Required)

Ngrok is enabled by default because A2ABase agents run on remote servers and need public access to your local MCP server. Without ngrok, remote agents cannot access your custom tools.

Why Ngrok is Required

  • A2ABase agents execute on remote servers (not locally)
  • Your MCP server runs locally on your machine
  • Remote agents need a public URL to access your local MCP server
  • Ngrok creates a secure tunnel from the internet to your local server

Setup

  1. Get free ngrok auth token:

  2. Install pyngrok:

    pip install pyngrok
    
  3. Set environment variable:

    export NGROK_AUTH_TOKEN=your_token_here
    
  4. Run dev command (ngrok enabled by default):

    a2abase dev
    

The CLI will display both local and public URLs. Use the public URL in your agent's MCPTools configuration for remote agent access.

⚠️ Security Note: Ngrok exposes your MCP server publicly. Use only for development/testing. For production, deploy your MCP server to a proper hosting service with HTTPS and authentication.

Getting Help

  • Run a2abase to see available commands
  • Run a2abase --help for command overview
  • Run a2abase <command> --help for specific command help
  • Run a2abase doctor to validate your environment
  • Check Troubleshooting Guide for common issues

License

MIT

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

a2abase_cli-0.1.0.tar.gz (36.0 kB view details)

Uploaded Source

Built Distribution

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

a2abase_cli-0.1.0-py3-none-any.whl (42.8 kB view details)

Uploaded Python 3

File details

Details for the file a2abase_cli-0.1.0.tar.gz.

File metadata

  • Download URL: a2abase_cli-0.1.0.tar.gz
  • Upload date:
  • Size: 36.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for a2abase_cli-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b6a0befefdb428678957304cca5132e0c021a882205935bd713be8e76262848b
MD5 bdda90521290c4a08b77f371e54fa5cb
BLAKE2b-256 039c2836fa46863e363f27d1b6ea47451c66bc96095b61408738f651ded5ebe1

See more details on using hashes here.

File details

Details for the file a2abase_cli-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: a2abase_cli-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 42.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for a2abase_cli-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e3c8ee7b50c4b08de98f1e71d804c166ca659babf19d44a4792084621f37faff
MD5 7ad650ee32f8dfdbb8f7cddb7979bc52
BLAKE2b-256 6173a6adefd57b012334feebb1519d00ebc0e7b9762e0e825f4cf49679fd7db2

See more details on using hashes here.

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