Skip to content

Commit 4c8e630

Browse files
kevinelliottclaude
andcommitted
Update documentation for v0.2.1 release
Update CHANGELOG.md and README.md with v0.2.1 release information: - Added OpenCode CLI agent (11 agents total) - Fixed Amp and Codex package names for automated upgrades - Added referral links section for project support - Enhanced installation documentation Also updated registry test to reflect Amp's new installable status. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent f067788 commit 4c8e630

File tree

3 files changed

+46
-19
lines changed

3 files changed

+46
-19
lines changed

CHANGELOG.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v0.2.1] - 2025-10-20
11+
12+
### Added
13+
- **OpenCode CLI Agent**: Complete integration for SST's OpenCode terminal-native AI coding agent
14+
- Full adapter implementation with non-interactive `opencode run` mode
15+
- npm package support: `opencode-ai@latest`
16+
- Quiet flag for non-interactive execution
17+
- Comprehensive documentation and troubleshooting
18+
- Now 11 supported AI agent CLIs
19+
- **Referral Links Section**: New dedicated section in README to support project development
20+
- Qoder referral link for users to support ongoing development
21+
- Clear explanation of how referral links help fund the project
22+
23+
### Fixed
24+
- **Amp CLI**: Updated to support npm-based installation and automated upgrades
25+
- Changed from manual-only to `npm install -g @sourcegraph/amp`
26+
- Now supports `agentpipe agents upgrade amp`
27+
- **Codex CLI**: Fixed npm package name for correct version detection
28+
- Corrected from `@openai/codex-cli` to `@openai/codex`
29+
- Added homebrew installation option: `brew install --cask codex`
30+
- Automated upgrades now work correctly
31+
32+
### Improved
33+
- **Documentation**: Enhanced installation instructions for multiple agents
34+
- Added npm and homebrew options where applicable
35+
- Updated Prerequisites section with all installation methods
36+
- Added OpenCode to adapter reference implementations
37+
- **Tests**: Updated registry tests to reflect Amp's new installable status
38+
1039
## [v0.2.0] - 2025-10-20
1140

1241
### Added
@@ -401,7 +430,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
401430
- **Clean Message Display**: Smart consolidation of headers and proper paragraph formatting
402431
- **Cost Transparency**: See exactly how much each conversation costs
403432

404-
[Unreleased]: https://github.com/kevinelliott/agentpipe/compare/v0.2.0...HEAD
433+
[Unreleased]: https://github.com/kevinelliott/agentpipe/compare/v0.2.1...HEAD
434+
[v0.2.1]: https://github.com/kevinelliott/agentpipe/compare/v0.2.0...v0.2.1
405435
[v0.2.0]: https://github.com/kevinelliott/agentpipe/compare/v0.1.5...v0.2.0
406436
[v0.1.5]: https://github.com/kevinelliott/agentpipe/compare/v0.1.4...v0.1.5
407437
[v0.1.4]: https://github.com/kevinelliott/agentpipe/compare/v0.1.3...v0.1.4

README.md

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -92,31 +92,28 @@ All agents now use a **standardized interaction pattern** with structured three-
9292

9393
See [CHANGELOG.md](CHANGELOG.md) for detailed version history and release notes.
9494

95-
**Latest Release**: v0.2.0 - Enhanced agent version management with automated upgrades.
95+
**Latest Release**: v0.2.1 - Added OpenCode agent and improved package management.
9696

97-
**What's New in v0.2.0**:
97+
**What's New in v0.2.1**:
9898

9999
**New Features:**
100-
- **Agent Upgrade Command**: Easily update AI agent CLIs
101-
- `agentpipe agents upgrade <agent>` - Upgrade specific agents
102-
- `agentpipe agents upgrade --all` - Upgrade all installed agents
103-
- Cross-platform support with automatic OS detection
104-
- **Automated Version Detection**: Real-time version checking for all agents
105-
- Parallel version checks with ~70% performance improvement (10s → 3.7s)
106-
- Support for multiple package managers (npm, homebrew, GitHub, scripts, manifests)
107-
- No more "manual install" placeholders - all agents show actual versions
100+
- **OpenCode CLI Agent**: SST's terminal-native AI coding agent
101+
- 11 supported agents total
102+
- Multi-provider support with non-interactive mode
103+
- npm package: `opencode-ai@latest`
104+
- **Referral Links**: New section to support project development
108105

109106
🐛 **Bug Fixes:**
110-
- **npm 404 Errors**: Corrected package names for Claude, Codex, and Gemini
111-
- **Ollama Version Detection**: Now works without running Ollama instance
112-
- Parses version from warning messages
107+
- **Amp CLI**: Now supports npm installation and automated upgrades
108+
- **Codex CLI**: Fixed package name from `@openai/codex-cli` to `@openai/codex`
109+
- Added homebrew support: `brew install --cask codex`
113110

114-
🎨 **UI/UX Improvements:**
115-
- **Better Table Display**: Rebalanced column widths for clearer output
116-
- **Clearer Instructions**: Changed from "install" to "upgrade" in messages
111+
📚 **Documentation:**
112+
- Enhanced installation instructions with npm and homebrew options
113+
- Updated Prerequisites with all installation methods
117114

115+
**Previous Release - v0.2.0**: Agent upgrade command and automated version detection
118116
**Previous Release - v0.1.5**: Linting fixes for clean CI/CD builds
119-
**Previous Release - v0.1.4**: JSON output for programmatic agent detection
120117

121118
## Installation
122119

internal/registry/registry_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ func TestIsInstallable(t *testing.T) {
144144
}{
145145
{"Claude", true}, // npm install
146146
{"Ollama", true}, // brew install (darwin) or curl script
147-
{"Amp", false}, // "See https://..." instruction
147+
{"Amp", true}, // npm install
148148
}
149149

150150
for _, tt := range tests {

0 commit comments

Comments
 (0)