ace-llm 0.38.4 → 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 +4 -4
- data/.ace-defaults/llm/presets/agy/ro.yml +3 -0
- data/.ace-defaults/llm/presets/agy/rw.yml +1 -0
- data/.ace-defaults/llm/presets/agy/yolo.yml +3 -0
- data/CHANGELOG.md +8 -0
- data/README.md +3 -3
- data/handbook/guides/llm-query-tool-reference.g.md +16 -3
- data/lib/ace/llm/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 21b07f85a8f897be64d640a899db5db5a675b6d8fb419533fb760357f41b82b7
|
|
4
|
+
data.tar.gz: b6deff8fabd1985c23b17df479a8eca218c709d368baac03ffc04ad1b17f9343
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eba5b867d874a2c273bf7ff9f6fcc6bbe5d496ff7d4cf9f606adbeba3dab783fe5f6cd3d5836a17346b859313dabfd6f45c6b6e8f4d4d592216ccf47878829eb
|
|
7
|
+
data.tar.gz: f88f9ea2e20eb7527f41bae17e58a820532db4ef316a37e6ffd3020eace3a2d1a6e59a65e46e1cea93d8a8e3139ee37dd1a3ff5711f6991ea1e0dae47baa6e49
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
timeout: 600
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
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
|
+
|
|
10
18
|
## [0.38.4] - 2026-08-12
|
|
11
19
|
|
|
12
20
|
### 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
|
|
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-
|
|
7
|
-
last-checked: 2026-
|
|
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 `
|
|
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
|
|
data/lib/ace/llm/version.rb
CHANGED
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.
|
|
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-08-
|
|
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,14 +29,14 @@ dependencies:
|
|
|
29
29
|
requirements:
|
|
30
30
|
- - "~>"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '0.
|
|
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.
|
|
39
|
+
version: '0.18'
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: ace-support-core
|
|
42
42
|
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"
|