ace-llm 0.38.2 → 0.39.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e68c5905da8f776b41366c633f4172533889ef334a4a2e5697ace238427dd724
4
- data.tar.gz: f38899d8cf85c3bbaadf256c995c17c144a610bf5bc8d2f0812b71c075c4e82d
3
+ metadata.gz: 21b07f85a8f897be64d640a899db5db5a675b6d8fb419533fb760357f41b82b7
4
+ data.tar.gz: b6deff8fabd1985c23b17df479a8eca218c709d368baac03ffc04ad1b17f9343
5
5
  SHA512:
6
- metadata.gz: 722641fee270953ca1bd56ccea04c2c8deab37a5ec4aa0e1afefa8e693af79cb38276027c29d139ca1467a19341c38e7786b8a02971350d209383ade7a49f693
7
- data.tar.gz: 780613ebe9fbceedde6f095a9fc4491a320798582dae621a8da46ba29011118283020d702cf9afa7b1bf7198dbeedf6fb9dee11a312ff117fe1b975aaaba2b0c
6
+ metadata.gz: eba5b867d874a2c273bf7ff9f6fcc6bbe5d496ff7d4cf9f606adbeba3dab783fe5f6cd3d5836a17346b859313dabfd6f45c6b6e8f4d4d592216ccf47878829eb
7
+ data.tar.gz: f88f9ea2e20eb7527f41bae17e58a820532db4ef316a37e6ffd3020eace3a2d1a6e59a65e46e1cea93d8a8e3139ee37dd1a3ff5711f6991ea1e0dae47baa6e49
@@ -0,0 +1,3 @@
1
+ timeout: 600
2
+ cli_args:
3
+ - --sandbox
@@ -0,0 +1 @@
1
+ timeout: 600
@@ -0,0 +1,3 @@
1
+ timeout: 600
2
+ cli_args:
3
+ - --dangerously-skip-permissions
data/CHANGELOG.md CHANGED
@@ -6,9 +6,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
+
10
+ ## [0.39.0] - 2026-08-29
11
+
12
+ ### Added
13
+ - Added shipped `agy` presets (`@ro`, `@rw`, `@yolo`) plus provider activation guidance so Antigravity CLI can be selected through the standard `ace-llm` query surface.
14
+
15
+ ### Changed
16
+ - Documented Antigravity CLI aliases, setup flow, and provider examples across the README, usage guide, and LLM query tool reference.
17
+
18
+ ## [0.38.4] - 2026-08-12
19
+
20
+ ### Technical
21
+ - Raised the `ace-support-core` dependency floor to `~> 0.31` after the principles-first bootstrap guidance release.
22
+ ## [0.38.3] - 2026-08-12
23
+
9
24
  ### Fixed
10
25
  - Stubbed the Z.ai endpoint in query command CLI-routing tests so provider fallback no longer triggers blocked real HTTP calls during deterministic suite runs.
11
26
 
27
+ ### Technical
28
+ - Aligned gemspec dependency floors with current ACE package minor release lines and safe external minor dependency bumps (no major version jumps).
29
+
12
30
  ## [0.38.2] - 2026-04-24
13
31
 
14
32
  ### Technical
data/README.md CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  </div>
14
14
 
15
- > Works with: Claude Code, Codex CLI, OpenCode, Gemini CLI, pi-agent, and more.
15
+ > Works with: Claude Code, Codex CLI, OpenCode, Gemini CLI, Antigravity CLI, pi-agent, and more.
16
16
 
17
17
  [Getting Started](docs/getting-started.md) | [Usage Guide](docs/usage.md) | [Handbook - Skills, Agents, Templates](docs/handbook.md)
18
18
 
@@ -35,7 +35,7 @@ Deterministic coverage lives in `test/fast/` and `test/feat/`. Scenario assets s
35
35
 
36
36
  ## How It Works
37
37
 
38
- 1. Select a model by alias, `provider:model`, with a thinking level suffix (`:low`/`:medium`/`:high`), or an `@preset` and submit a prompt.
38
+ 1. Select a model -- by alias, `provider:model`, with a thinking level suffix (`:low`/`:medium`/`:high`), or an `@preset` -- and submit a prompt.
39
39
  2. The provider router resolves the target through [ace-llm-providers-cli](../ace-llm-providers-cli) adapters, applying fallback and retry rules from the [config cascade](../ace-support-config).
40
40
  3. The response is returned as text, markdown, or JSON with optional token usage metadata.
41
41
 
@@ -45,7 +45,7 @@ Deterministic coverage lives in `test/fast/` and `test/feat/`. Scenario assets s
45
45
 
46
46
  **Control reasoning depth** - append a thinking level (`codex:gpt:high`, `claude:sonnet:low`) to tune reasoning budgets. Supported CLI providers: `claude`, `codex` (levels: `low`, `medium`, `high`, `xhigh`).
47
47
 
48
- **Run preset-driven prompts** - apply execution profiles with `@preset` or `--preset`. Built-in presets for CLI providers: `@ro` (read-only), `@rw` (read-write), `@yolo` (full autonomy). Supported by: `claude`, `codex`, `gemini`, `opencode`, `pi`.
48
+ **Run preset-driven prompts** - apply execution profiles with `@preset` or `--preset`. Built-in presets for CLI providers: `@ro` (read-only), `@rw` (read-write), `@yolo` (full autonomy). Supported by: `claude`, `codex`, `gemini`, `opencode`, `pi`, `agy`.
49
49
 
50
50
  **Launch real interactive agents** - use `--interactive` for supported CLI providers so alias resolution, presets, and skill translation still flow through `ace-llm`, but the provider starts its native terminal UI instead of one-shot print mode.
51
51
 
@@ -3,8 +3,8 @@ doc-type: guide
3
3
  title: ace-llm Query Reference Guide
4
4
  purpose: Documentation for ace-llm/handbook/guides/llm-query-tool-reference.g.md
5
5
  ace-docs:
6
- last-updated: 2026-04-23
7
- last-checked: 2026-04-23
6
+ last-updated: 2026-08-29
7
+ last-checked: 2026-08-29
8
8
  ---
9
9
 
10
10
  # ace-llm Query Reference Guide
@@ -28,6 +28,7 @@ Examples:
28
28
  ```bash
29
29
  ace-llm gflash "Summarize this branch"
30
30
  ace-llm google:gemini-2.5-flash "Explain service objects in Ruby"
31
+ ace-llm agy:flash "Summarize the current diff"
31
32
  ace-llm codex:gpt:high "Review this architecture"
32
33
  ace-llm codex:gpt@yolo "/as-assign-drive abc123@010" --interactive
33
34
  ```
@@ -36,7 +37,7 @@ ace-llm codex:gpt@yolo "/as-assign-drive abc123@010" --interactive
36
37
 
37
38
  ### Aliases and explicit models
38
39
 
39
- - Use aliases when you want stable shorthand such as `gflash`, `glite`, `sonnet`, or `codex:mini`.
40
+ - Use aliases when you want stable shorthand such as `gflash`, `glite`, `sonnet`, `codex:mini`, or `agy:flash`.
40
41
  - Use `provider:model` when you need an exact model target.
41
42
  - Use `--model` when the provider is fixed but the model varies per call.
42
43
 
@@ -45,6 +46,7 @@ Examples:
45
46
  ```bash
46
47
  ace-llm gflash "Quick summary"
47
48
  ace-llm gemini:flash-latest "Check provider alias resolution"
49
+ ace-llm agy:flash "Summarize the failing tests"
48
50
  ace-llm google --model gemini-3-flash-preview --prompt "Hi"
49
51
  ```
50
52
 
@@ -75,6 +77,16 @@ ace-llm pi:zai/glm-4.7 "/as-assign-drive abc123@010" --interactive
75
77
 
76
78
  Interactive mode still resolves aliases, presets, and translated skill prompts before launching the provider CLI.
77
79
 
80
+ ### Antigravity headless sessions
81
+
82
+ - `agy:*` targets the Antigravity CLI-backed headless provider from `ace-llm-providers-cli`.
83
+ - Use `--cli-args` to forward documented Antigravity resume flags:
84
+
85
+ - `ace-llm agy:flash "Continue" --cli-args "--continue"`
86
+ - `ace-llm agy:flash "Resume by id" --cli-args "--conversation <conversation-id>"`
87
+
88
+ - Current implementation intentionally excludes `--interactive` for `agy` until ACE has a verified native interactive launch contract for prompt seeding.
89
+
78
90
  ### Exact provider reachability
79
91
 
80
92
  Fallback is enabled by default. Use `--no-fallback` when you want the requested target to succeed or fail directly rather than routing through configured fallback providers.
@@ -109,6 +121,7 @@ ace-llm codex:mini "ping" --no-fallback --json --timeout 15 --max-tokens 4
109
121
  - `google:*` targets API-backed Gemini models.
110
122
  - `gemini:*` targets the Gemini CLI-backed provider from `ace-llm-providers-cli`.
111
123
  - Current CLI alias examples:
124
+
112
125
  - `gemini:flash-latest` -> `gemini:gemini-3-flash-preview`
113
126
  - `gemini:pro-latest` -> `gemini:gemini-3.1-pro-preview`
114
127
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ace
4
4
  module LLM
5
- VERSION = '0.38.2'
5
+ VERSION = "0.39.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ace-llm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.38.2
4
+ version: 0.39.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Czyz
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2026-04-26 00:00:00.000000000 Z
10
+ date: 2026-08-30 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: ace-support-cli
@@ -29,28 +29,28 @@ dependencies:
29
29
  requirements:
30
30
  - - "~>"
31
31
  - !ruby/object:Gem::Version
32
- version: '0.9'
32
+ version: '0.18'
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '0.9'
39
+ version: '0.18'
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: ace-support-core
42
42
  requirement: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '0.29'
46
+ version: '0.31'
47
47
  type: :runtime
48
48
  prerelease: false
49
49
  version_requirements: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '0.29'
53
+ version: '0.31'
54
54
  - !ruby/object:Gem::Dependency
55
55
  name: ace-support-models
56
56
  requirement: !ruby/object:Gem::Requirement
@@ -71,56 +71,56 @@ dependencies:
71
71
  requirements:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
- version: '2.0'
74
+ version: '2.14'
75
75
  type: :runtime
76
76
  prerelease: false
77
77
  version_requirements: !ruby/object:Gem::Requirement
78
78
  requirements:
79
79
  - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: '2.0'
81
+ version: '2.14'
82
82
  - !ruby/object:Gem::Dependency
83
83
  name: addressable
84
84
  requirement: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
- version: '2.8'
88
+ version: '2.9'
89
89
  type: :runtime
90
90
  prerelease: false
91
91
  version_requirements: !ruby/object:Gem::Requirement
92
92
  requirements:
93
93
  - - "~>"
94
94
  - !ruby/object:Gem::Version
95
- version: '2.8'
95
+ version: '2.9'
96
96
  - !ruby/object:Gem::Dependency
97
97
  name: kramdown
98
98
  requirement: !ruby/object:Gem::Requirement
99
99
  requirements:
100
100
  - - "~>"
101
101
  - !ruby/object:Gem::Version
102
- version: '2.0'
102
+ version: '2.5'
103
103
  type: :runtime
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - "~>"
108
108
  - !ruby/object:Gem::Version
109
- version: '2.0'
109
+ version: '2.5'
110
110
  - !ruby/object:Gem::Dependency
111
111
  name: kramdown-parser-gfm
112
112
  requirement: !ruby/object:Gem::Requirement
113
113
  requirements:
114
114
  - - "~>"
115
115
  - !ruby/object:Gem::Version
116
- version: '1.0'
116
+ version: '1.1'
117
117
  type: :runtime
118
118
  prerelease: false
119
119
  version_requirements: !ruby/object:Gem::Requirement
120
120
  requirements:
121
121
  - - "~>"
122
122
  - !ruby/object:Gem::Version
123
- version: '1.0'
123
+ version: '1.1'
124
124
  - !ruby/object:Gem::Dependency
125
125
  name: bundler
126
126
  requirement: !ruby/object:Gem::Requirement
@@ -229,6 +229,9 @@ extensions: []
229
229
  extra_rdoc_files: []
230
230
  files:
231
231
  - ".ace-defaults/llm/config.yml"
232
+ - ".ace-defaults/llm/presets/agy/ro.yml"
233
+ - ".ace-defaults/llm/presets/agy/rw.yml"
234
+ - ".ace-defaults/llm/presets/agy/yolo.yml"
232
235
  - ".ace-defaults/llm/presets/claude/prompt.yml"
233
236
  - ".ace-defaults/llm/presets/claude/ro.yml"
234
237
  - ".ace-defaults/llm/presets/claude/rw.yml"