Skip to content

Releases: agentteamland/cli

v0.1.1

17 Apr 19:15

Choose a tag to compare

atl v0.1.1

AI agent teams, installed like packages.

Initial public release of the atl CLI — the package manager for the AgentTeamLand ecosystem.

Install

Platform Command
macOS / Linux brew install agentteamland/tap/atl
Windows (Scoop) scoop bucket add agentteamland https://github.com/agentteamland/scoop-bucket
scoop install atl
Windows (winget) winget install agentteamland.atl (awaiting Microsoft review)
One-liner fallback curl -fsSL https://raw.githubusercontent.com/agentteamland/cli/main/scripts/install.sh | sh

What's inside

  • atl install <name\|url> — install a team from the public registry or any git URL
  • atl list — show installed teams, effective agent/skill/rule counts, extends chain
  • atl remove <name> — unlink symlinks; cached source stays for other projects
  • atl update [name] — pull updates, refresh all symlinks
  • atl search <keyword> — search the public registry

Highlights

  • Registry name-resolutionatl install software-project-team looks it up in the public registry, then clones
  • Unlimited-depth extends chains — teams can inherit from other teams, with child-overrides-parent semantics and excludes opt-out
  • Circular dependency detection — if a chain would loop, installation stops with a clear error
  • Offline fallback — direct git URLs work even if the registry is unreachable
  • Single static binary — zero runtime dependencies, 6.9 MB

Install a first team

cd your-project/
atl install software-project-team
#   → 13 specialized agents symlinked into .claude/agents/
#   → /create-new-project + /verify-system skills ready

Contributing

Write your own team? See the scaffolder spec and submit it to the registry.

Changelog

  • Initial release of the CLI (Go, cobra, fatih/color)
  • 4 distribution channels: GitHub Releases, Homebrew tap, Scoop bucket, winget (pending)
  • goreleaser automation for cross-compile (macOS + Linux + Windows × amd64 + arm64)
  • CI: gofmt + go vet + build + test

Full workspace: https://github.com/agentteamland/workspace
Landing page: https://github.com/agentteamland

v0.1.0

17 Apr 18:27

Choose a tag to compare

atl 0.1.0

AgentTeamLand package manager CLI.

Install (macOS / Linux)

# One-liner:
curl -fsSL https://raw.githubusercontent.com/agentteamland/cli/main/scripts/install.sh | sh

# Or manual:
curl -fsSL https://github.com/agentteamland/cli/releases/download/v0.1.0/atl_0.1.0_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz | tar xz
sudo mv atl /usr/local/bin/

Homebrew (coming soon)

brew install agentteamland/tap/atl

Changelog

Features


Full changelog: ...v0.1.0