Skip to content

Commit 347d0b4

Browse files
Kasper Jungeclaude
authored andcommitted
release: v0.8.0
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c8cac10 commit 347d0b4

4 files changed

Lines changed: 22 additions & 157 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,29 @@
22

33
## [Unreleased]
44

5+
## [0.8.0] - 2026-03-30
6+
7+
### Added
8+
- Lockfile support for reproducible skill installs (`agr.lock` written during `add`, `remove`, and `sync` with pinned commit SHAs)
9+
- Documentation site with MkDocs: tutorial, CLI reference, core concepts, creating skills guide, Python SDK docs, troubleshooting, teams guide, skill directory, agrx page, and llms.txt for AI tool discovery
10+
- Structured data (FAQPage, HowTo, TechArticle, BreadcrumbList) across documentation pages for search engine rich results
11+
512
### Changed
613
- Cursor skills now use flat naming (`skill-name/` directly under `.cursor/skills/`) instead of nested directories (`user/repo/skill/`)
714
- Auto-migration flattens existing nested Cursor skills during `agr sync`, `agr add`, and `agr remove`
15+
- Skill scaffold now includes a required `description` field in SKILL.md
16+
- README rewritten with clearer value proposition, real skill examples, and invocation instructions
17+
18+
### Fixed
19+
- OpenCode compatibility: use correct CLI flags for run mode and TUI interactive mode
20+
- Antigravity detection: correct `.agent` signal to `.agents`; update skills paths from `.agent/` to `.gemini/`
21+
- SDK `list_skills()` now raises `InvalidHandleError` instead of `ValueError`
22+
- SDK network failures raise `AgrError` instead of `ConnectionError`
23+
- `agr config show` correctly escapes Rich markup in source type brackets
24+
25+
### Removed
26+
- `agr onboard` command and deprecated `agr tools` subcommands
27+
- Orphaned `test_gh_issue_phase.py` test file referencing removed development skills
828

929
## [0.7.10] - 2026-03-10
1030
### Changed

agr/__init__.py

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

3-
__version__ = "0.7.10"
3+
__version__ = "0.8.0"
44

55
from agr.sdk import Skill, SkillInfo, cache, list_skills, skill_info
66

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.10"
7+
version = "0.8.0"
88
description = "Agent Resources - A package and project manager for AI agents."
99
readme = "README.md"
1010
requires-python = ">=3.10"

tests/test_gh_issue_phase.py

Lines changed: 0 additions & 155 deletions
This file was deleted.

0 commit comments

Comments
 (0)