ace-support-core 0.30.1 → 0.31.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/project-root/AGENTS.md +12 -11
- data/.ace-defaults/project-root/CLAUDE.md +1 -18
- data/.ace-defaults/project-root/docs/tools.md +1 -0
- data/CHANGELOG.md +10 -0
- data/lib/ace/core/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24d4b0dce143ebd6e3a05238ffa19ba782ccebf08c7a9027db568d641f1a07e3
|
|
4
|
+
data.tar.gz: 2ea4aa3a99418d953d05a4622760d3142fcf2593fce656f9c95da5dc0c3d3227
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16fb57a03877b9e0602606aa6869613a823d09553fd477921d4827ab2d485c1cdb2620a6ce133d55c9aa00fe2931772aa8ded2354ed12b02d2016cc5c8d0e1a9
|
|
7
|
+
data.tar.gz: c5dc7f819ca8bd17eac6b24b1c802befbcda08b320a317c2f3b7ad1527b8f2cb08f64866964aadda87f5036908bd2dc6d2502c43e0f77b3ce26de29d9b6c4405
|
|
@@ -5,21 +5,22 @@ Customize it for your repository-specific rules and workflows.
|
|
|
5
5
|
Refresh the starter version with `bundle exec ace-config sync ace-support-core --force`.
|
|
6
6
|
Run `bundle exec ace-handbook sync` separately to refresh generated `.agents/skills`.
|
|
7
7
|
|
|
8
|
-
Read `CLAUDE.md` first.
|
|
9
8
|
See `docs/tools.md#agent-engineering-practices` for expanded day-to-day agent practices.
|
|
10
9
|
|
|
11
10
|
**Cost Bias Override:** do not optimize for human work-weeks or token budgets — choose the technically correct path (full coverage, proper refactors, robust design) even when it costs more turns.
|
|
12
11
|
|
|
13
|
-
##
|
|
12
|
+
## Principles
|
|
14
13
|
|
|
15
|
-
|
|
14
|
+
- Do not preserve backward compatibility. Remove obsolete paths instead of adding compatibility layers, fallbacks, or migrations.
|
|
15
|
+
- Choose the simplest implementation that fully meets current requirements. Avoid speculative abstractions, configuration, and indirection.
|
|
16
|
+
- Grow the system in layers from a working end-to-end core. Never trade a working product for unfinished complexity.
|
|
17
|
+
- Keep components modular and concerns clearly separated.
|
|
18
|
+
- Prefer established, well-maintained libraries; lean on dependencies already in the project before inventing or adding packages.
|
|
19
|
+
- Make architectural decisions for the long term. Do not accept intentional stopgaps meant to be replaced later.
|
|
20
|
+
- Study how established products solve the problem before designing. Adopt proven patterns rather than inventing from scratch.
|
|
16
21
|
|
|
17
|
-
|
|
18
|
-
- When an `ace-*` command prints a file path, read that file directly.
|
|
19
|
-
- Use `.ace-local/` for project-local ACE artifacts and `/tmp/` for disposable temporary files.
|
|
22
|
+
## Hard rules
|
|
20
23
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
-
|
|
24
|
-
- Do not overwrite unrelated user-owned content when refreshing generated bootstrap files.
|
|
25
|
-
- Use `ace-test` for tests when ACE packages provide test targets.
|
|
24
|
+
- Run `ace-*` commands directly. Do not pipe, redirect, or post-process their output; when they print a path, read that file.
|
|
25
|
+
- Use `.ace-local/` for project-local ACE artifacts and `/tmp/` for disposable temps.
|
|
26
|
+
- Prefer `ace-test` / `ace-test-suite` over raw `bundle exec` tests when those targets exist.
|
|
@@ -5,24 +5,7 @@ Customize it for your repository-specific rules and workflows.
|
|
|
5
5
|
Refresh the starter version with `bundle exec ace-config sync ace-support-core --force`.
|
|
6
6
|
Run `bundle exec ace-handbook sync` separately to refresh generated `.agents/skills`.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Read `AGENTS.md` first.
|
|
9
9
|
See `docs/tools.md#agent-engineering-practices` for expanded day-to-day agent practices.
|
|
10
10
|
|
|
11
11
|
**Cost Bias Override:** do not optimize for human work-weeks or token budgets — choose the technically correct path (full coverage, proper refactors, robust design) even when it costs more turns.
|
|
12
|
-
|
|
13
|
-
## Command Types
|
|
14
|
-
|
|
15
|
-
- Slash commands such as `/as-task-work` run inside the chat tool.
|
|
16
|
-
- `ace-*` commands run in the terminal.
|
|
17
|
-
|
|
18
|
-
## ACE CLI Output Handling
|
|
19
|
-
|
|
20
|
-
- Run `ace-*` commands directly.
|
|
21
|
-
- Do not use pipes, redirects, or shell post-processors on `ace-*` commands.
|
|
22
|
-
- If an `ace-*` command prints a file path, read that file directly.
|
|
23
|
-
|
|
24
|
-
## Local Artifacts and Testing
|
|
25
|
-
|
|
26
|
-
- Use `.ace-local/` for project-local ACE artifacts.
|
|
27
|
-
- Use `/tmp/` for disposable temporary files.
|
|
28
|
-
- Prefer `ace-test` and `ace-test-suite` over raw `bundle exec` test commands when those targets exist.
|
|
@@ -6,6 +6,7 @@ Customize it for repository-specific agent workflows and operational practices.
|
|
|
6
6
|
## Agent Engineering Practices
|
|
7
7
|
|
|
8
8
|
Root agent files should stay short and reserve detail for this page or project skills.
|
|
9
|
+
Add a rule to `AGENTS.md` only after an agent repeatedly gets something wrong; keep the root file under ~30–50 lines.
|
|
9
10
|
|
|
10
11
|
**Cost Bias Override:** do not optimize for human work-weeks or token budgets — choose the technically correct path (full coverage, proper refactors, robust design) even when it costs more turns.
|
|
11
12
|
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.31.0] - 2026-08-12
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Replaced bootstrap `AGENTS.md` with principles-first starter guidance and made generated `CLAUDE.md` a thin pointer to `AGENTS.md`.
|
|
14
|
+
- Documented when to expand root `AGENTS.md` in generated `docs/tools.md` agent engineering practices.
|
|
15
|
+
## [0.30.2] - 2026-08-12
|
|
16
|
+
|
|
17
|
+
### Technical
|
|
18
|
+
- Aligned gemspec dependency floors with current ACE package minor release lines and safe external minor dependency bumps (no major version jumps).
|
|
19
|
+
|
|
10
20
|
## [0.30.1] - 2026-06-30
|
|
11
21
|
|
|
12
22
|
### Fixed
|
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.
|
|
4
|
+
version: 0.31.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-08-12 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: ace-support-config
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '0.
|
|
18
|
+
version: '0.17'
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: '0.
|
|
25
|
+
version: '0.17'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: ace-support-fs
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|