ace-handbook 0.27.4 → 0.28.1
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 +13 -0
- data/handbook/cookbooks/setup-starting-a-multi-ruby-gem-monorepo-with-ace.cookbook.md +3 -3
- data/handbook/guides/changelog.g.md +1 -1
- data/handbook/guides/meta/workflow-instructions-definition.g.md +3 -2
- data/handbook/skills/as-release/SKILL.md +4 -3
- data/handbook/workflow-instructions/handbook/perform-delivery.wf.md +3 -3
- data/lib/ace/handbook/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5cbc07b0baed92baa1f2a9e74c58312d24c12a6f320af4585ca4c3bcd7a1638
|
|
4
|
+
data.tar.gz: 92e6f8b56f9276c87aa28f72797544c4b0d48efcbbff3b97e91cccf3ac86ee86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1738d08525b525968422776b5cf8357a321cec573d1807da28d3f0c6c3db8f0fd7366255cb1ee13a7f728e2dd27d315113489b6e6c3e558e1af6c51852237d3
|
|
7
|
+
data.tar.gz: 50539492a46b43bc0da61ec4e6434a4521dfd3fd0fb402c02aa05aff2e01a838336f80fc7e83303d40158eb24295948e8ac3ce053caec36debb328e57426d580
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.28.1] - 2026-04-23
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Updated the monorepo setup cookbook to use `ace-config sync ace-llm-providers-cli` before handbook sync.
|
|
14
|
+
|
|
15
|
+
## [0.28.0] - 2026-04-22
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- **ace-handbook v0.28.0**: Added the local release workflow (`release/local`) and switched the package release workflow to a local-only preparation flow.
|
|
19
|
+
|
|
20
|
+
### Technical
|
|
21
|
+
- **ace-handbook v0.28.0**: Kept `as-release` behavior focused on local release prep without publishing to RubyGems.
|
|
22
|
+
|
|
10
23
|
## [0.27.4] - 2026-04-16
|
|
11
24
|
|
|
12
25
|
### Technical
|
|
@@ -32,7 +32,7 @@ This cookbook distills monorepo setup patterns from ACE package conventions and
|
|
|
32
32
|
- Add one monorepo quickstart page that covers prerequisites, workspace bootstrap, and E2E smoke checks.
|
|
33
33
|
- Add a short troubleshooting section for permission and timeout pitfalls during E2E runs.
|
|
34
34
|
- Agent guidance updates to apply:
|
|
35
|
-
- Add concise rules only: "use `ace-test` (not bundle exec)", "run `ace-config
|
|
35
|
+
- Add concise rules only: "use `ace-test` (not bundle exec)", "run `ace-config sync ace-llm-providers-cli` + `ace-handbook sync` before nav/bundle checks", and "scope E2E scenarios to monorepo-level concerns".
|
|
36
36
|
- Summary-only propagation target notes (do not copy full cookbook body):
|
|
37
37
|
- `README.md`
|
|
38
38
|
- `docs/quick-start.md`
|
|
@@ -64,7 +64,7 @@ rg --files | rg "handbook/"
|
|
|
64
64
|
**Commands/Actions:**
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
|
-
ace-config
|
|
67
|
+
ace-config sync ace-llm-providers-cli
|
|
68
68
|
ace-handbook sync
|
|
69
69
|
```
|
|
70
70
|
|
|
@@ -125,7 +125,7 @@ Document these defaults in repo docs and concise agent guidance:
|
|
|
125
125
|
**Validation:**
|
|
126
126
|
|
|
127
127
|
```bash
|
|
128
|
-
rg -n "ace-config
|
|
128
|
+
rg -n "ace-config sync|ace-handbook sync|ace-test-e2e" README.md docs AGENTS.md
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
## Validation & Testing
|
|
@@ -328,6 +328,6 @@ For projects without public repositories, use internal tracking systems or omit
|
|
|
328
328
|
|
|
329
329
|
- [Version Control Message Guide](./version-control-system-message.g.md) (Commit message standards)
|
|
330
330
|
- [Project Management Guide](./project-management.g.md) (Release workflow integration)
|
|
331
|
-
- [
|
|
331
|
+
- [Release Workflow (Local)](wfi://release/local) (Release process overview and step-by-step actions)
|
|
332
332
|
- [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) (External reference)
|
|
333
333
|
- [Semantic Versioning](https://semver.org/) (Versioning standards)
|
|
@@ -236,11 +236,12 @@ Review these refactored workflow instructions that demonstrate self-containment
|
|
|
236
236
|
|
|
237
237
|
### Command Reference Example
|
|
238
238
|
|
|
239
|
-
`wfi://release/
|
|
239
|
+
`wfi://release/local`:
|
|
240
240
|
|
|
241
241
|
- Embeds package registry commands for all major platforms
|
|
242
242
|
- Includes changelog format specification
|
|
243
|
-
- Contains complete release process without external references
|
|
243
|
+
- Contains complete multi-package release preparation process without external references
|
|
244
|
+
- `wfi://release/publish` remains a compatibility alias that forwards to this workflow.
|
|
244
245
|
|
|
245
246
|
## Key Refactoring Principles
|
|
246
247
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: as-release
|
|
3
3
|
description: Release modified ACE packages with coordinated package and root changelog updates
|
|
4
|
-
# bundle: wfi://release/
|
|
4
|
+
# bundle: wfi://release/local
|
|
5
5
|
# agent: general-purpose
|
|
6
6
|
user-invocable: true
|
|
7
7
|
allowed-tools:
|
|
@@ -29,7 +29,7 @@ integration:
|
|
|
29
29
|
skill:
|
|
30
30
|
kind: workflow
|
|
31
31
|
execution:
|
|
32
|
-
workflow: wfi://release/
|
|
32
|
+
workflow: wfi://release/local
|
|
33
33
|
---
|
|
34
34
|
|
|
35
35
|
## Arguments
|
|
@@ -43,7 +43,8 @@ None
|
|
|
43
43
|
## Execution
|
|
44
44
|
|
|
45
45
|
- You are working in the current project.
|
|
46
|
-
-
|
|
46
|
+
- This is a local release-preparation workflow and does **not** publish to RubyGems.
|
|
47
|
+
- Run `ace-bundle wfi://release/local` in the current project to load the workflow instructions.
|
|
47
48
|
- Read the loaded workflow and execute it end-to-end in this project.
|
|
48
49
|
- Follow the workflow as the source of truth.
|
|
49
50
|
- Do the work described by the workflow instead of only summarizing it.
|
|
@@ -39,7 +39,7 @@ Execute complete delivery workflow for a task with automatic step tracking, ensu
|
|
|
39
39
|
* [ ] Enter plan mode if implementation required
|
|
40
40
|
* [ ] Execute implementation via `ace-bundle wfi://task/work` or inline instructions
|
|
41
41
|
* [ ] Commit all changes (`ace-git-commit`)
|
|
42
|
-
* [ ] Release modified packages (`ace-bundle wfi://release/
|
|
42
|
+
* [ ] Release modified packages (`ace-bundle wfi://release/local` if applicable)
|
|
43
43
|
* [ ] Mark task done and push to remote
|
|
44
44
|
|
|
45
45
|
### Phase 2: PR & Initial Review
|
|
@@ -76,7 +76,7 @@ Execute complete delivery workflow for a task with automatic step tracking, ensu
|
|
|
76
76
|
```
|
|
77
77
|
1. Implement task (via `ace-bundle wfi://task/work` or inline)
|
|
78
78
|
2. Commit all changes (`ace-git-commit`)
|
|
79
|
-
3. Release modified packages (`ace-bundle wfi://release/
|
|
79
|
+
3. Release modified packages (`ace-bundle wfi://release/local`)
|
|
80
80
|
4. Mark task done and push to remote
|
|
81
81
|
5. Create/update PR (`ace-bundle wfi://github/pr/create`)
|
|
82
82
|
6. Initial review (`ace-bundle wfi://review/pr`)
|
|
@@ -109,7 +109,7 @@ Execute complete delivery workflow for a task with automatic step tracking, ensu
|
|
|
109
109
|
* Use descriptive commit message
|
|
110
110
|
|
|
111
111
|
5. **Release Packages (if applicable):**
|
|
112
|
-
* Load `ace-bundle wfi://release/
|
|
112
|
+
* Load `ace-bundle wfi://release/local` when a release is required
|
|
113
113
|
* Follow versioning conventions
|
|
114
114
|
|
|
115
115
|
6. **Complete Task:**
|
data/lib/ace/handbook/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-handbook
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.28.1
|
|
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
|