Skip to content

Releases: AryaLabsHQ/agentree

agentree v1.3.0

11 Jun 06:23
4f4f55e

Choose a tag to compare

What's New

✨ Features

  • Shell Completion Support (#3) - Added completion support for bash, zsh, fish, and powershell shells

📦 Installation

macOS/Linux

brew tap AryaLabsHQ/tap
brew install AryaLabsHQ/tap/agentree

Go Install

go install github.com/AryaLabsHQ/agentree/cmd/agentree@latest

Manual Build

git clone https://github.com/AryaLabsHQ/agentree.git
cd agentree
make install

🎯 Shell Completion

Enable shell completions for your shell:

# Bash
agentree completion bash > /etc/bash_completion.d/agentree

# Zsh
agentree completion zsh > "${fpath[1]}/_agentree"

# Fish
agentree completion fish > ~/.config/fish/completions/agentree.fish

# PowerShell
agentree completion powershell > agentree.ps1

agentree v1.2.0

11 Jun 06:01
6ed46c7

Choose a tag to compare

Changelog

Features

  • 4c330cb feat: add roadmap documentation for agentree development
  • 6ed46c7 feat: enhance environment file management with gitignore-based discovery (#2)

agentree v1.1.0

09 Jun 19:25
ca42c6c

Choose a tag to compare

Changelog

Features

  • 6bf1157 feat: add CLAUDE.md for project guidance
  • 5042410 feat: update README and implement interactive wizard for branch creation

Others

  • c16a7a3 refactor: update interactive wizard for branch creation

agentree v1.0.0

06 Jun 22:13
04f566f

Choose a tag to compare

Changelog

Features

  • c8c23cd feat: add configuration system and auto-detection capabilities
  • db8099e feat: add environment file copying to hatch
  • c5b36c8 feat: add interactive TUI and script execution system
  • 72d895b feat: add post-create script execution with auto-detection
  • 2d763d0 feat: implement CLI commands with Cobra framework
  • 018c235 feat: implement core Git worktree and environment operations
  • f266ad6 feat: rebrand from hatch to agentree 🌳🤖

Bug Fixes

  • cdf2e4e fix: improve git test setup for CI environment
  • 5d64e51 fix: make version variable overridable at build time
  • de312e2 fix: resolve all golangci-lint issues
  • 4a18426 fix: update CI workflow for correct Go project structure
  • 52ba2f7 fix: update GITHUB_TOKEN in release workflow
  • d912b35 fix: update GoReleaser config to v2 format
  • 04f566f fix: update deprecated GoReleaser config options
  • 379ed56 fix: use separate tokens for release and homebrew tap

Others

  • 8439cd1 Add README and LICENSE
  • e633675 Initial commit: hatch script for isolated Git worktrees
  • 0b4b128 build: migrate from bash to Go with proper project structure
  • f6b1db1 chore(.github/workflows): Migrate workflows to Blacksmith runners (#1)
  • 4c1ace8 ci: add GitHub Actions workflows for CI/CD