x_aeon_agents 1.0.34 → 1.1.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/CHANGELOG.md +12 -0
- data/README.md +7 -0
- data/lib/x_aeon_agents/config_dsl.rb +10 -0
- data/lib/x_aeon_agents/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '096c25ea4f181ba26f5a0f6debf4f93ae61253acb015049ad47c0d709aaf6059'
|
|
4
|
+
data.tar.gz: c78ebab6bb4c30ba13e1a038b65941f26558639d66da8f927ce96021d110a71d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e32d45eab37494203ad86dcf30a7cdf95d645274ffc8559c1811f8b4a4d04b1f6c6a7a898c4b8f626295c2472794f8a28acc0116e1ed7de46a4fe30337790c75
|
|
7
|
+
data.tar.gz: 781b4f7613d2e54236e625b2ea3a3f7f0d6d1029edd388e31f8075ff24741fc5debb1dab633a316e638bb48990184da8234046a5dd31b2b2c1cd6b2c51c3946d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [v1.1.0](https://github.com/Muriel-Salvan/x_aeon_agents/compare/v1.0.34...v1.1.0) (2026-09-11 15:35:31)
|
|
2
|
+
|
|
3
|
+
## Global changes
|
|
4
|
+
### Patches
|
|
5
|
+
|
|
6
|
+
* [feat(config): add data_dir option to the config DSL](https://github.com/Muriel-Salvan/x_aeon_agents/commit/7f01344f96ea904d6e32d3f1d2f0c2aec79ce6b5)
|
|
7
|
+
|
|
8
|
+
## Changes for config
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* [feat(config): add data_dir option to the config DSL](https://github.com/Muriel-Salvan/x_aeon_agents/commit/7f01344f96ea904d6e32d3f1d2f0c2aec79ce6b5)
|
|
12
|
+
|
|
1
13
|
# [v1.0.34](https://github.com/Muriel-Salvan/x_aeon_agents/compare/v1.0.33...v1.0.34) (2026-09-11 14:24:42)
|
|
2
14
|
|
|
3
15
|
### Patches
|
data/README.md
CHANGED
|
@@ -273,6 +273,7 @@ Files are looked up in the following locations and evaluated from the lowest pri
|
|
|
273
273
|
| Method | Description |
|
|
274
274
|
| --- | --- |
|
|
275
275
|
| `debug(value)` | Enable debug logging |
|
|
276
|
+
| `data_dir 'dir'` | Data directory where X-Aeon Agents stores its data |
|
|
276
277
|
| `cline_api_key { ... }` / `openrouter_api_key { ... }` / `github_token { ... }` | Define the code retrieving a secret |
|
|
277
278
|
| `setup_project { ... }` | Steps to install the project's dependencies in a fresh worktree |
|
|
278
279
|
| `test_project_cmd 'cmd'` | Command line running the project's test suite |
|
|
@@ -285,6 +286,12 @@ Files are looked up in the following locations and evaluated from the lowest pri
|
|
|
285
286
|
debug true
|
|
286
287
|
```
|
|
287
288
|
|
|
289
|
+
- **`data_dir(path)`** — set the data directory where X-Aeon Agents stores its data (sessions, etc.). Defaults to `.x_aeon_agents`:
|
|
290
|
+
|
|
291
|
+
```ruby
|
|
292
|
+
data_dir '/var/lib/x_aeon_agents'
|
|
293
|
+
```
|
|
294
|
+
|
|
288
295
|
- **Secret retrieval blocks** — `cline_api_key`, `openrouter_api_key` and `github_token` take a block returning the secret value. Each block is evaluated lazily, only when the secret is needed, and its result is memoized. Secrets are resolved with the precedence *explicit setter ➜ `ENV` variable ➜ config DSL block* (see [`XAeonAgents::Config`](#xaeonagentsconfig)):
|
|
289
296
|
|
|
290
297
|
```ruby
|
|
@@ -15,6 +15,16 @@ module XAeonAgents
|
|
|
15
15
|
|
|
16
16
|
expose :debug
|
|
17
17
|
|
|
18
|
+
# Set the data directory used by X-Aeon Agents to store its data.
|
|
19
|
+
#
|
|
20
|
+
# Parameters::
|
|
21
|
+
# * *path* (String): The data directory to set
|
|
22
|
+
def data_dir(path)
|
|
23
|
+
Config.data_dir = path
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
expose :data_dir
|
|
27
|
+
|
|
18
28
|
# Define the steps to execute in a fresh worktree to install the project's dependencies.
|
|
19
29
|
# The given block is stored and evaluated only when a fresh worktree is created by the
|
|
20
30
|
# start-task command, with the current directory set to the worktree. If this method is
|