ace-support-core 0.29.5 → 0.29.8

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: a6b708c53652bcab306f9ac32f767818083c2ec3d8d08c250765d333b27f7eee
4
- data.tar.gz: 1761a2ed810b94d59636b52455ca38bef56eceb58b7b752ebeb4199fd7db35fd
3
+ metadata.gz: 42ad3d96ee72755834ba5c9c7ab09270262db526094e9377687c59b86b23dadc
4
+ data.tar.gz: 30276bee679ad5961e477a35ad055235be9da30a8de5aa9050f6ac613de209fd
5
5
  SHA512:
6
- metadata.gz: 7ad2edbaca8fae8c51cfd934608b6e5b7c087764626515ddb1c0a4913d436a4b63f41d5ed07b6670f7c4d6f4d70eecbc01e5ccf0bd47f9ea3a3c8a9c582c8894
7
- data.tar.gz: 2e968110a915140fb18dd5dc8de8044e19c80c6a1b71bc774b146f0b7dc23657873952fd748334906ceb7a188769e8379f441e5359ae79157bc16892b84049dd
6
+ metadata.gz: ec3c10d1ceabf0d8d722c6e144185f7d522d5a2715391eb63e06c05c722134d8dabba023303d9572dfeb937cdd00b6c8ad1f6fd7f8a4e3f2545ed5f935228a15
7
+ data.tar.gz: f137cf374ad87dd9cdf690377208abe3455b856a4f76079a353060200635a02a1d834693c01e59a0fc6e1c809cee77259d6922844f533782e98c655ffdff68e3
@@ -0,0 +1,17 @@
1
+ # Repository Guidelines
2
+
3
+ Read `CLAUDE.md` first.
4
+
5
+ ## ACE CLI Command Integrity
6
+
7
+ Run `ace-*` commands directly. Do not pipe, redirect, or post-process `ace-*` output.
8
+
9
+ - Run `ace-*` commands directly.
10
+ - When an `ace-*` command prints a file path, read that file directly.
11
+ - Use `.ace-local/` for project-local ACE artifacts and `/tmp/` for disposable temporary files.
12
+
13
+ ## Working Rules
14
+
15
+ - Keep repository-specific guidance in this file.
16
+ - Do not overwrite unrelated user-owned content when refreshing generated bootstrap files.
17
+ - Use `ace-test` for tests when ACE packages provide test targets.
@@ -0,0 +1,23 @@
1
+ # CLAUDE.md
2
+
3
+ Agent guidance for this repository.
4
+
5
+ ## Command Types
6
+
7
+ - Slash commands such as `/as-task-work` run inside the chat tool.
8
+ - `ace-*` commands run in the terminal.
9
+
10
+ ## ACE CLI Output Handling
11
+
12
+ - Run `ace-*` commands directly.
13
+ - Do not use pipes, redirects, or shell post-processors on `ace-*` commands.
14
+ - If an `ace-*` command prints a file path, read that file directly.
15
+
16
+ ## Local Artifacts
17
+
18
+ - Use `.ace-local/` for project-local ACE artifacts.
19
+ - Use `/tmp/` for disposable temporary files.
20
+
21
+ ## Testing
22
+
23
+ - Prefer `ace-test` and `ace-test-suite` over raw `bundle exec` test commands when those targets exist.
data/CHANGELOG.md CHANGED
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.29.8] - 2026-04-13
11
+
12
+ ### Technical
13
+ - **ace-support-core v0.29.8**: Added shipped project-root bootstrap templates for `.gitignore`, `AGENTS.md`, and `CLAUDE.md` so freshly initialized ACE projects get local-artifact hygiene and starter agent guidance.
14
+
15
+ ## [0.29.7] - 2026-04-13
16
+
17
+ ### Changed
18
+ - **ace-support-core v0.29.7**: Standardized shared package tests to the fast-only layout and updated testing flow defaults.
19
+
20
+
21
+
22
+ ### Technical
23
+ - Relaxed fast-test version assertions to validate semantic-version shape instead of pinned placeholder values in package/config fixtures.
24
+ ## [0.29.6] - 2026-04-11
25
+
26
+ ### Technical
27
+ - Migrated package tests to `test/fast/` and `test/feat/`, replacing the legacy `test/integration/` layout while keeping deterministic-only coverage.
28
+ - Updated README testing guidance to the public `ace-test ace-support-core` / `feat` / `all` contract and clarified no package-owned `test/e2e/` surface.
29
+
10
30
  ## [0.29.5] - 2026-03-31
11
31
 
12
32
  ### Changed
data/README.md CHANGED
@@ -22,6 +22,16 @@
22
22
  2. Delegate cascaded configuration resolution through [ace-support-config](../ace-support-config) so packages inherit project, user, and gem-level defaults automatically.
23
23
  3. Provide shared runtime/config primitives consumed by `ace-support-config`, which owns the `ace-config` CLI.
24
24
 
25
+ ## Testing
26
+
27
+ This package uses the batch-2 deterministic testing contract:
28
+
29
+ - `ace-test ace-support-core` runs the default `fast` loop from `test/fast/`.
30
+ - `ace-test ace-support-core feat` runs deterministic feature coverage from `test/feat/`.
31
+ - `ace-test ace-support-core all` runs both deterministic layers.
32
+
33
+ `ace-support-core` does not define package-owned `test/e2e/` scenarios in this migration.
34
+
25
35
  ## Use Cases
26
36
 
27
37
  **Create consistent package startup behavior** - initialize config, env, and shared context once with core primitives, so gems like [ace-support-cli](../ace-support-cli) and [ace-support-fs](../ace-support-fs) share a single bootstrap path.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ace
4
4
  module Core
5
- VERSION = '0.29.5'
5
+ VERSION = '0.29.8'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ace-support-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.5
4
+ version: 0.29.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Czyz
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2026-04-01 00:00:00.000000000 Z
10
+ date: 2026-04-20 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: ace-support-config
@@ -62,6 +62,8 @@ extra_rdoc_files: []
62
62
  files:
63
63
  - ".ace-defaults/README.md"
64
64
  - ".ace-defaults/core/settings.yml"
65
+ - ".ace-defaults/project-root/AGENTS.md"
66
+ - ".ace-defaults/project-root/CLAUDE.md"
65
67
  - CHANGELOG.md
66
68
  - LICENSE
67
69
  - README.md