ace-support-core 0.29.5 → 0.29.11
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/project-root/AGENTS.md +22 -0
- data/.ace-defaults/project-root/CLAUDE.md +28 -0
- data/CHANGELOG.md +33 -0
- data/README.md +10 -0
- data/lib/ace/core/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 34f2b35cb1f2ed86e4c9f20fcb025c11f9497a795e7125482d103679d661de12
|
|
4
|
+
data.tar.gz: ceeab35abee59c794fea8dc256b71d0d1537f15f45e240fc8b38626c62d5e6b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37de1f18daa80ab302776cae0e19751efd2c766b5e9d0cf5f393727b091a8e1afd9c5a2d9e7bc6a7d4d1ba07de667071758a42db81c777432dd1b6c39438f023
|
|
7
|
+
data.tar.gz: b679b1bf4fa42a6b0c5e461e619217449dacb0c28f9d759a2a98c1e37aade84fefa352bf932506a01d602663b330381ef47928d02b3f5a3c384a9be0b69a03d8
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Repository Guidelines
|
|
2
|
+
|
|
3
|
+
ACE generated this starter guidance from `ace-support-core` defaults.
|
|
4
|
+
Customize it for your repository-specific rules and workflows.
|
|
5
|
+
Refresh the starter version with `bundle exec ace-config sync ace-support-core --force`.
|
|
6
|
+
Run `bundle exec ace-handbook sync` separately when you need to refresh projected skill folders.
|
|
7
|
+
|
|
8
|
+
Read `CLAUDE.md` first.
|
|
9
|
+
|
|
10
|
+
## ACE CLI Command Integrity
|
|
11
|
+
|
|
12
|
+
Run `ace-*` commands directly. Do not pipe, redirect, or post-process `ace-*` output.
|
|
13
|
+
|
|
14
|
+
- Run `ace-*` commands directly.
|
|
15
|
+
- When an `ace-*` command prints a file path, read that file directly.
|
|
16
|
+
- Use `.ace-local/` for project-local ACE artifacts and `/tmp/` for disposable temporary files.
|
|
17
|
+
|
|
18
|
+
## Working Rules
|
|
19
|
+
|
|
20
|
+
- Keep repository-specific guidance in this file.
|
|
21
|
+
- Do not overwrite unrelated user-owned content when refreshing generated bootstrap files.
|
|
22
|
+
- Use `ace-test` for tests when ACE packages provide test targets.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# CLAUDE.md
|
|
2
|
+
|
|
3
|
+
ACE generated this starter guidance from `ace-support-core` defaults.
|
|
4
|
+
Customize it for your repository-specific rules and workflows.
|
|
5
|
+
Refresh the starter version with `bundle exec ace-config sync ace-support-core --force`.
|
|
6
|
+
Run `bundle exec ace-handbook sync` separately when you need to refresh projected skill folders.
|
|
7
|
+
|
|
8
|
+
Agent guidance for this repository.
|
|
9
|
+
|
|
10
|
+
## Command Types
|
|
11
|
+
|
|
12
|
+
- Slash commands such as `/as-task-work` run inside the chat tool.
|
|
13
|
+
- `ace-*` commands run in the terminal.
|
|
14
|
+
|
|
15
|
+
## ACE CLI Output Handling
|
|
16
|
+
|
|
17
|
+
- Run `ace-*` commands directly.
|
|
18
|
+
- Do not use pipes, redirects, or shell post-processors on `ace-*` commands.
|
|
19
|
+
- If an `ace-*` command prints a file path, read that file directly.
|
|
20
|
+
|
|
21
|
+
## Local Artifacts
|
|
22
|
+
|
|
23
|
+
- Use `.ace-local/` for project-local ACE artifacts.
|
|
24
|
+
- Use `/tmp/` for disposable temporary files.
|
|
25
|
+
|
|
26
|
+
## Testing
|
|
27
|
+
|
|
28
|
+
- Prefer `ace-test` and `ace-test-suite` over raw `bundle exec` test commands when those targets exist.
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Changed
|
|
11
|
+
- Clarified the first-use bootstrap guidance so root `AGENTS.md` / `CLAUDE.md` starter files are documented as outputs of `ace-support-core` sync, and updated the shipped refresh commands to use `bundle exec` for repo-local installs.
|
|
12
|
+
|
|
13
|
+
## [0.29.10] - 2026-04-24
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Updated the shipped `AGENTS.md` and `CLAUDE.md` bootstrap templates to identify ACE as the starter source, document safe repo-specific customization, and point users to the refresh flow.
|
|
17
|
+
|
|
18
|
+
## [0.29.9] - 2026-04-23
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- Updated config documentation examples from `ace-config init` to `ace-config sync`.
|
|
22
|
+
|
|
23
|
+
## [0.29.8] - 2026-04-13
|
|
24
|
+
|
|
25
|
+
### Technical
|
|
26
|
+
- **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.
|
|
27
|
+
|
|
28
|
+
## [0.29.7] - 2026-04-13
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
- **ace-support-core v0.29.7**: Standardized shared package tests to the fast-only layout and updated testing flow defaults.
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
### Technical
|
|
36
|
+
- Relaxed fast-test version assertions to validate semantic-version shape instead of pinned placeholder values in package/config fixtures.
|
|
37
|
+
## [0.29.6] - 2026-04-11
|
|
38
|
+
|
|
39
|
+
### Technical
|
|
40
|
+
- Migrated package tests to `test/fast/` and `test/feat/`, replacing the legacy `test/integration/` layout while keeping deterministic-only coverage.
|
|
41
|
+
- Updated README testing guidance to the public `ace-test ace-support-core` / `feat` / `all` contract and clarified no package-owned `test/e2e/` surface.
|
|
42
|
+
|
|
10
43
|
## [0.29.5] - 2026-03-31
|
|
11
44
|
|
|
12
45
|
### 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.
|
data/lib/ace/core/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.29.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-04-
|
|
10
|
+
date: 2026-04-26 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
|