ace-hitl 0.8.0 → 0.8.7
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 +46 -0
- data/README.md +12 -0
- data/docs/demo/ace-hitl-scope-and-answer.tape.yml +2 -2
- data/docs/usage.md +14 -0
- data/lib/ace/hitl/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: 0b84c4b738461e2f6585f37eddc2cd875ea0bb5aa621929102ffe173b5a7a4f9
|
|
4
|
+
data.tar.gz: 30ca33ab6c9773fb0369f1d0bbe3b0bb9f2b46ee7f3a91e0c9d9a4898ef24212
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6858c1205c187a5acf2426af779d1288b1736e8c137fbfe8fad363d325dfd7579375f4f8e4f54fbc3d3fdb6b9e86c331594947af57884772c3ed66e0acab5da
|
|
7
|
+
data.tar.gz: 073e2a0be496ec4f48d76a7f33863297f3296bd5b063fbd2955b3756a6ff25764a631b46df1bb0ff233d303d5bf31c20459b1639381597fd574ed51c82a0d4cf
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,52 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.8.7] - 2026-04-13
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- **ace-hitl v0.8.7**: Published handbook and HITL migration release changes for HitL package.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Technical
|
|
18
|
+
- Replaced the CLI library-contract version assertion with a semantic-version schema check so the fast test validates version shape instead of a pinned release line.
|
|
19
|
+
## [0.8.6] - 2026-04-11
|
|
20
|
+
|
|
21
|
+
### Technical
|
|
22
|
+
|
|
23
|
+
- Updated the CLI contract test assertion to `0.8.6` so it matches the current released line.
|
|
24
|
+
|
|
25
|
+
## [0.8.5] - 2026-04-11
|
|
26
|
+
|
|
27
|
+
### Technical
|
|
28
|
+
|
|
29
|
+
- Updated the CLI contract test version assertion to match the `Ace::Hitl::VERSION` release line (`0.8.5`) after fit-cycle feedback fixes.
|
|
30
|
+
|
|
31
|
+
## [0.8.4] - 2026-04-11
|
|
32
|
+
|
|
33
|
+
### Technical
|
|
34
|
+
|
|
35
|
+
- Updated the CLI contract test to assert `Ace::Hitl::VERSION` (`0.8.4`) after the follow-up review-cycle patch release.
|
|
36
|
+
|
|
37
|
+
## [0.8.3] - 2026-04-11
|
|
38
|
+
|
|
39
|
+
### Technical
|
|
40
|
+
|
|
41
|
+
- Updated the CLI contract test to assert the current released package version after the 0.8.2 batch migration release.
|
|
42
|
+
|
|
43
|
+
## [0.8.2] - 2026-04-11
|
|
44
|
+
|
|
45
|
+
### Technical
|
|
46
|
+
|
|
47
|
+
- Migrated deterministic CLI test coverage to `test/fast/commands/` for fast-only package alignment.
|
|
48
|
+
- Updated package docs and demo test references to document and use the fast-only test contract.
|
|
49
|
+
|
|
50
|
+
## [0.8.1] - 2026-04-05
|
|
51
|
+
|
|
52
|
+
### Changed
|
|
53
|
+
|
|
54
|
+
- Expanded package description wording to use the explicit "human in the loop (HITL)" phrase.
|
|
55
|
+
|
|
10
56
|
## [0.8.0] - 2026-04-02
|
|
11
57
|
|
|
12
58
|
### Changed
|
data/README.md
CHANGED
|
@@ -35,6 +35,18 @@ ace-hitl wait abc123
|
|
|
35
35
|
ace-hitl update abc123 --answer "Use JWT with server-side refresh tokens." --resume
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
+
## Testing
|
|
39
|
+
|
|
40
|
+
This package is **fast-only** in the ACE testing model.
|
|
41
|
+
|
|
42
|
+
- Deterministic test coverage lives under `test/fast/`.
|
|
43
|
+
- This migration does not introduce `test/feat/` or `test/e2e/` for this package.
|
|
44
|
+
|
|
45
|
+
Verification commands:
|
|
46
|
+
|
|
47
|
+
- `ace-test ace-hitl`
|
|
48
|
+
- `ace-test ace-hitl all`
|
|
49
|
+
|
|
38
50
|
## Ownership Boundary
|
|
39
51
|
|
|
40
52
|
`ace-hitl` owns HITL-specific event semantics and markdown contract.
|
|
@@ -29,9 +29,9 @@ scenes:
|
|
|
29
29
|
commands:
|
|
30
30
|
- type: clear
|
|
31
31
|
sleep: 1s
|
|
32
|
-
- type: ace-test test/commands/hitl_cli_test.rb --filter test_show_scope_all_errors_on_ambiguous_ref_with_candidates
|
|
32
|
+
- type: ace-test test/fast/commands/hitl_cli_test.rb --filter test_show_scope_all_errors_on_ambiguous_ref_with_candidates
|
|
33
33
|
sleep: 5s
|
|
34
|
-
- type: ace-test test/commands/hitl_cli_test.rb --filter test_update_answer_preserves_markdown_headings_in_answer_body
|
|
34
|
+
- type: ace-test test/fast/commands/hitl_cli_test.rb --filter test_update_answer_preserves_markdown_headings_in_answer_body
|
|
35
35
|
sleep: 5s
|
|
36
36
|
teardown:
|
|
37
37
|
- cleanup
|
data/docs/usage.md
CHANGED
|
@@ -17,6 +17,20 @@ Canonical handbook resources:
|
|
|
17
17
|
|
|
18
18
|
Runtime store default: `.ace-local/hitl/` (legacy `.ace-hitl/` is no longer used as default).
|
|
19
19
|
|
|
20
|
+
## Testing
|
|
21
|
+
|
|
22
|
+
`ace-hitl` is currently a **fast-only** package in the ACE testing model.
|
|
23
|
+
|
|
24
|
+
- Deterministic coverage lives under `test/fast/`.
|
|
25
|
+
- This package does not introduce `test/feat/` or `test/e2e/` in this migration.
|
|
26
|
+
|
|
27
|
+
Verification commands:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
ace-test ace-hitl
|
|
31
|
+
ace-test ace-hitl all
|
|
32
|
+
```
|
|
33
|
+
|
|
20
34
|
## Create
|
|
21
35
|
|
|
22
36
|
```bash
|
data/lib/ace/hitl/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-hitl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.7
|
|
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-20 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: ace-support-core
|
|
@@ -93,8 +93,8 @@ dependencies:
|
|
|
93
93
|
- - "~>"
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
95
|
version: '0.6'
|
|
96
|
-
description: Provides the dedicated ace-hitl package surface for
|
|
97
|
-
CLI workflows.
|
|
96
|
+
description: Provides the dedicated ace-hitl package surface for human in the loop
|
|
97
|
+
(HITL) semantics and CLI workflows.
|
|
98
98
|
email:
|
|
99
99
|
- mc@cs3b.com
|
|
100
100
|
executables:
|