Skip to content

Commit d361a44

Browse files
kasperjungeclaude
andcommitted
Release v0.7.1b2
Co-Authored-By: Claude <noreply@anthropic.com>
1 parent de1640c commit d361a44

4 files changed

Lines changed: 18 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## [Unreleased]
44

5+
## [0.7.1b2] - 2026-01-28
6+
7+
### Added
8+
- `agr tools` command group for managing configured tools (`list`, `add`, `remove`)
9+
- Multi-tool support in `agrx` with `--tool` flag to specify which CLI to use
10+
- CLI configuration fields in `ToolConfig` (`cli_command`, `cli_prompt_flag`, `cli_force_flag`, etc.)
11+
512
### Fixed
613
- Config now saved after sync completes in `agr tools add`, preventing data inconsistency if sync fails
714
- Tool not removed from config if skill deletion fails in `agr tools remove`, preventing orphaned files

RELEASE_NOTES.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
## agr v0.7.1b1
1+
## agr v0.7.1b2
22

3-
Beta release adding GitHub Copilot support and private repository authentication.
3+
Manage which AI coding tools your skills sync to with the new `agr tools` command.
44

55
### Highlights
66

7-
- **GitHub Copilot Support**: Skills can now be installed to GitHub Copilot (`.github/skills/` for project, `~/.copilot/skills/` for global)
8-
- **Private Repositories**: Install skills from private repos using GITHUB_TOKEN/GH_TOKEN environment variables
7+
- **Tool Management CLI**: New `agr tools list/add/remove` commands to configure which tools (Claude, Cursor, Copilot) receive your skills
8+
- **Multi-tool agrx**: Run temporary skills with any supported CLI using `agrx skill --tool cursor`
99

1010
### What's Changed
1111

12-
- GitHub Copilot tool configuration with flat directory structure
13-
- `global_config_dir` field in `ToolConfig` for tools with different personal/project paths
14-
- Private repository support via GitHub token authentication
15-
- `AuthenticationError` exception for 401/403 responses
16-
- Comprehensive CLI integration tests for Cursor, Copilot, and private repos
17-
- Tests for multi-tool scenarios and token security
12+
- Added `agr tools` command group for managing configured tools
13+
- Added `--tool` flag to `agrx` for specifying which CLI to use
14+
- Fixed config being saved before sync completes in `agr tools add`
15+
- Fixed tool remaining in config when skill deletion fails in `agr tools remove`
16+
- Code cleanup: replaced hardcoded values with constants, added type annotations
1817

1918
---
2019

agr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""agr: Agent Resources - Install and manage Claude Code skills."""
22

3-
__version__ = "0.7.1b1"
3+
__version__ = "0.7.1b2"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "agr"
7-
version = "0.7.1b1"
7+
version = "0.7.1b2"
88
description = "Agent Resources - A package and project manager for AI agents."
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)