codeam-cli 2.10.8 → 2.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +53 -0
- package/dist/index.js +1509 -898
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,59 @@ All notable changes to `codeam-cli` are documented here.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [2.11.0] — 2026-05-13
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Add agent type primitives
|
|
12
|
+
- **shared:** Add AGENT_REGISTRY with Claude enabled
|
|
13
|
+
- **shared:** Export agents module + bump minor
|
|
14
|
+
- **cli:** Define RuntimeStrategy + DeployStrategy interfaces
|
|
15
|
+
- **cli:** Implement ClaudeRuntimeStrategy
|
|
16
|
+
- **cli:** Implement ClaudeDeployStrategy + extract credential bridge
|
|
17
|
+
- **cli:** Add agent to SavedSession + preferredAgent to CliConfig
|
|
18
|
+
- **cli:** Add parseAgentFlag + promptForAgent helpers
|
|
19
|
+
- **cli:** Pair accepts --agent flag + prompts + remembers preferredAgent
|
|
20
|
+
- **cli:** Pair-auto consumes agent from API response
|
|
21
|
+
- **cli:** Change_model + summarize handlers route through RuntimeStrategy
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- **vsc-plugin:** Port JetBrains agent-strategy pattern
|
|
26
|
+
- **cli:** Extract Claude history parsing to agents/claude/history.ts
|
|
27
|
+
- **cli:** Extract Claude /usage parsing to agents/claude/quota.ts
|
|
28
|
+
- **cli:** Rename ClaudeService → AgentService, add registry factory
|
|
29
|
+
- **cli:** History + quota services delegate to RuntimeStrategy
|
|
30
|
+
- **cli:** Start.ts uses session.agent for runtime factory
|
|
31
|
+
- **cli:** Deploy uses DeployStrategy + switches to pair-auto
|
|
32
|
+
- **cli:** Pass args to pair command
|
|
33
|
+
|
|
34
|
+
### Documentation
|
|
35
|
+
|
|
36
|
+
- Align CLAUDE.md + bump in-source versions to v2.10.8
|
|
37
|
+
- **cli:** Drop misleading codeam-login note in deploy.ts
|
|
38
|
+
|
|
39
|
+
### Fixed
|
|
40
|
+
|
|
41
|
+
- **cli:** Reload config after addSession to avoid clobbering activeSessionId
|
|
42
|
+
- **cli:** Revert deploy PM2 wrapper to pair --agent=<id> (Phase 1 lacks user-JWT)
|
|
43
|
+
|
|
44
|
+
## [2.10.8] — 2026-05-12
|
|
45
|
+
|
|
46
|
+
### Fixed
|
|
47
|
+
|
|
48
|
+
- **cli:** Exclude pre-existing JSONLs from auto-detect so a fresh pair stays empty
|
|
49
|
+
|
|
50
|
+
### Performance
|
|
51
|
+
|
|
52
|
+
- **cli:** Idle backoff on polling fallback
|
|
53
|
+
- **vsc-plugin:** SSE pull primary with polling fallback
|
|
54
|
+
- **jetbrains-plugin:** SSE pull primary with polling fallback
|
|
55
|
+
|
|
56
|
+
### Tests
|
|
57
|
+
|
|
58
|
+
- **cli:** Update poll-cadence test to reflect idle-backoff behaviour
|
|
59
|
+
|
|
7
60
|
## [2.10.7] — 2026-05-11
|
|
8
61
|
|
|
9
62
|
### Fixed
|