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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d0c98bc100970f002a85c88b253ca71f36de3051d71cc8e3e000a1b1813f3c7
4
- data.tar.gz: ea300d4fa0e979ae94a9218d687ae62aa9c8f65ff95c8427f234acf4faab141f
3
+ metadata.gz: '096c25ea4f181ba26f5a0f6debf4f93ae61253acb015049ad47c0d709aaf6059'
4
+ data.tar.gz: c78ebab6bb4c30ba13e1a038b65941f26558639d66da8f927ce96021d110a71d
5
5
  SHA512:
6
- metadata.gz: f68e39968cc0c02c09e3a13915fa2442bb9b33a1393468ff95f24f7b742d9af43bf5fb81ee2034837691f81aaa4226b0404b0a2da5b278a1de5d4ef02058ac32
7
- data.tar.gz: 16edd69f1d5734e7c02287518ab3fa9b74c8d7e8274e9534de17e5f9199f71d00e8b72898ea4034d9c15e2f6964c2b6cf4d101bdab44e1e6e51b9d63575a3079
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
@@ -2,5 +2,5 @@ module XAeonAgents
2
2
  # @!group Global API
3
3
 
4
4
  # Gem version
5
- VERSION = '1.0.34'
5
+ VERSION = '1.1.0'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: x_aeon_agents
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.34
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Muriel Salvan