agentty 0.10.6 → 0.11.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 +39 -0
- package/README.md +65 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,45 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.11.0] - 2026-06-28
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- agentty: store raw session conversation messages in durable transcripts.
|
|
15
|
+
- agentty: show review request authors.
|
|
16
|
+
- agentty: show sync status for draft and interactive sessions.
|
|
17
|
+
- agentty: show project branch names in project rows.
|
|
18
|
+
- ci: add merge queue validation for release workflows and GitHub Actions analysis with
|
|
19
|
+
zizmor.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- agentty: centralize UI render caches and narrow post-turn workflow dependencies.
|
|
24
|
+
- agentty: support stacked parent sync and replies when review-ready children are
|
|
25
|
+
present, including restacking children after parent merges and archiving canceled
|
|
26
|
+
children by display group.
|
|
27
|
+
- agentty: restore direct Gemini CLI/backend support alongside Antigravity.
|
|
28
|
+
- agentty: prefer `.agents` skills in session commit prompts.
|
|
29
|
+
- docs: clarify provider CLI authentication and delegation guidance, including supported
|
|
30
|
+
CLI agents.
|
|
31
|
+
- ci: scope workspace source tests and exclude agentty integration test targets from
|
|
32
|
+
source hooks.
|
|
33
|
+
- Bump workspace crate metadata and lockfile package versions to `0.11.0`.
|
|
34
|
+
|
|
35
|
+
### Removed
|
|
36
|
+
|
|
37
|
+
- ag-xtask: remove repository roadmap lint and digest commands.
|
|
38
|
+
- skills: remove the `implementation-plan` skill and repository planning roadmap.
|
|
39
|
+
|
|
40
|
+
### Security
|
|
41
|
+
|
|
42
|
+
- ci: harden GitHub workflow security.
|
|
43
|
+
|
|
44
|
+
### Contributors
|
|
45
|
+
|
|
46
|
+
- @dependabot
|
|
47
|
+
- @minev-dev
|
|
48
|
+
|
|
10
49
|
## [v0.10.6] - 2026-06-21
|
|
11
50
|
|
|
12
51
|
### Added
|
package/README.md
CHANGED
|
@@ -50,6 +50,71 @@ cargo install agentty
|
|
|
50
50
|
|
|
51
51
|
</details>
|
|
52
52
|
|
|
53
|
+
## Supported CLI Agents
|
|
54
|
+
|
|
55
|
+
Agentty currently supports Codex, Claude, Antigravity, and Gemini. Install and
|
|
56
|
+
authenticate at least one provider CLI before starting a session:
|
|
57
|
+
|
|
58
|
+
- Codex (`codex`, recommended; supports subscription usage): install the
|
|
59
|
+
[Codex CLI](https://github.com/openai/codex) and run `codex login`.
|
|
60
|
+
|
|
61
|
+
> [!NOTE]
|
|
62
|
+
>
|
|
63
|
+
> Codex is the recommended CLI agent for Agentty when you want subscription-backed
|
|
64
|
+
> usage. Codex supports signing in with ChatGPT for subscription access, including in
|
|
65
|
+
> the CLI, and Agentty uses the Codex `app-server` integration surface. Usage remains
|
|
66
|
+
> subject to the [OpenAI Terms of Use](https://openai.com/policies/terms-of-use/).
|
|
67
|
+
> OpenClaw documents ChatGPT/Codex subscription sign-in as the normal
|
|
68
|
+
> [Codex harness](https://docs.openclaw.ai/plugins/codex-harness) path, and opencode
|
|
69
|
+
> recommends ChatGPT Plus or Pro authentication for its
|
|
70
|
+
> [OpenAI provider](https://opencode.ai/docs/providers/#openai).
|
|
71
|
+
|
|
72
|
+
- Claude (`claude`): install [Claude Code](https://github.com/anthropics/claude-code)
|
|
73
|
+
and run `claude auth login`.
|
|
74
|
+
|
|
75
|
+
> [!WARNING]
|
|
76
|
+
>
|
|
77
|
+
> For Agentty usage through `claude -p`, use API key authentication through Claude
|
|
78
|
+
> Console or a supported cloud provider instead of a Claude Free, Pro, or Max
|
|
79
|
+
> subscription sign-in. Anthropic's
|
|
80
|
+
> [Claude Code legal and compliance docs](https://code.claude.com/docs/en/legal-and-compliance)
|
|
81
|
+
> describe subscription OAuth as intended for ordinary use of Claude Code and native
|
|
82
|
+
> Anthropic applications, while developer integrations should use API keys or supported
|
|
83
|
+
> cloud providers. Theo's
|
|
84
|
+
> [explanation video](https://www.youtube.com/watch?v=RIkSlHgQYog) discusses the same
|
|
85
|
+
> uncertainty, but commentary does not guarantee that subscription-backed usage is safe
|
|
86
|
+
> for third-party tool invocation.
|
|
87
|
+
|
|
88
|
+
- Antigravity (`agy`): install the
|
|
89
|
+
[Antigravity CLI](https://github.com/google-antigravity/antigravity-cli) and run `agy`
|
|
90
|
+
to sign in when prompted.
|
|
91
|
+
|
|
92
|
+
> [!WARNING]
|
|
93
|
+
>
|
|
94
|
+
> For Agentty usage through `agy --print`, use authentication backed by a Google Cloud
|
|
95
|
+
> project or an API key when available for your Antigravity setup, rather than a Google
|
|
96
|
+
> Account subscription sign-in. The
|
|
97
|
+
> [Antigravity terms](https://antigravity.google/terms) do not yet clearly describe how
|
|
98
|
+
> subscription access applies when `agy --print` is invoked by third-party tools.
|
|
99
|
+
|
|
100
|
+
- Gemini (`gemini`): install the
|
|
101
|
+
[Gemini CLI](https://github.com/google-gemini/gemini-cli) and authenticate with an API
|
|
102
|
+
key or Vertex AI.
|
|
103
|
+
|
|
104
|
+
> [!WARNING]
|
|
105
|
+
>
|
|
106
|
+
> "Sign in with Google" (Google Account OAuth) no longer works for the Gemini CLI after
|
|
107
|
+
> Google's
|
|
108
|
+
> [transition of the Gemini CLI to the Antigravity CLI](https://developers.googleblog.com/an-important-update-transitioning-gemini-cli-to-antigravity-cli/).
|
|
109
|
+
> API key (`GEMINI_API_KEY`) and Vertex AI authentication still work, so use one of
|
|
110
|
+
> those for the Gemini backend, or use the Antigravity (`agy`) backend instead.
|
|
111
|
+
|
|
112
|
+
Agentty uses each provider's official non-interactive CLI or app-server surface
|
|
113
|
+
(`claude -p`, `agy --print`, `codex app-server`, or `gemini --acp`) after you
|
|
114
|
+
authenticate with that provider's CLI. It does not implement OAuth flows, read provider
|
|
115
|
+
OAuth tokens directly, or call private provider APIs. You are responsible for choosing
|
|
116
|
+
an authentication method that is permitted for your account, plan, and usage pattern.
|
|
117
|
+
|
|
53
118
|
## Usage
|
|
54
119
|
|
|
55
120
|
```sh
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"name": "agentty",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.11.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/cliui": {
|
|
29
29
|
"engines": {
|
|
@@ -542,5 +542,5 @@
|
|
|
542
542
|
}
|
|
543
543
|
},
|
|
544
544
|
"requires": true,
|
|
545
|
-
"version": "0.
|
|
545
|
+
"version": "0.11.0"
|
|
546
546
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"artifactDownloadUrls": [
|
|
3
|
-
"https://github.com/agentty-xyz/agentty/releases/download/v0.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.11.0"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
6
|
"agentty": "run-agentty.js"
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"zipExt": ".tar.xz"
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"version": "0.
|
|
71
|
+
"version": "0.11.0",
|
|
72
72
|
"volta": {
|
|
73
73
|
"node": "18.14.1",
|
|
74
74
|
"npm": "9.5.0"
|