ace-docs 0.32.0 → 0.34.3

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: a6e19efbddfdca76c2740925ec5f832d9c7b4175c3e229653e1373b6aed8aad0
4
- data.tar.gz: 464c5c0600bad2f2db54043e60c04500ee73c295e744dac01cfbeb5d282ab546
3
+ metadata.gz: b5a28e8890253a0ea241c0c6979cc77c4950d0ba6a76924295880ba0b07bb7c9
4
+ data.tar.gz: d4c28a29279e6a4783babaf6e089261fec2cce7ae9b5317d544b436dd56ce47f
5
5
  SHA512:
6
- metadata.gz: 9ec32d915500b4f8f83adb9ae39af524e641db6ff2fe4efd00ec2bdd6d468de5f261e9f93904764add88090fd9a2f5c54760d9fb8e14a8b4dde70c948431f65e
7
- data.tar.gz: 5e4be4df1834c16efc7ab1f30ef14aefcb28f33b5ccc84db185e0eb7467de4298b83efeb3f5eee76df023dc921c201acb6654c7a68c808fef7e9817d9c3a73f0
6
+ metadata.gz: 387f082f8c331e57fd05ce216532d00eccf2efa88321ec91c0621a6f92cd3107604f784d8c84a5756700ee5893142306b070bb3413504c381a01e50823de8f97
7
+ data.tar.gz: 4088b8345338f9f504339391085e783b2d51f284e8a932edea5dba96342d65fd794f567a492073a007b74874803cdd2f76c06a3afd402ac5ea3db0c0a0124c20
data/CHANGELOG.md CHANGED
@@ -7,6 +7,49 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.34.3] - 2026-08-12
11
+
12
+ ### Technical
13
+ - Raised the `ace-support-core` dependency floor to `~> 0.31` after the principles-first bootstrap guidance release.
14
+ ## [0.34.2] - 2026-08-12
15
+
16
+ ### Technical
17
+ - Aligned gemspec dependency floors with current ACE package minor release lines and safe external minor dependency bumps (no major version jumps).
18
+
19
+ ## [0.34.1] - 2026-04-16
20
+
21
+ ### Fixed
22
+ - Made `analyze-consistency` fail closed when no report file is produced and aligned E2E verification with explicit provider-unavailable evidence.
23
+
24
+ ## [0.34.0] - 2026-04-14
25
+
26
+ ### Added
27
+ - Added a new goal-style `TS-DOCS-002-analysis-workflows` E2E scenario covering `ace-docs analyze` and `ace-docs analyze-consistency` command journeys with impact-first verification guidance.
28
+
29
+ ### Changed
30
+ - Hardened `TS-DOCS-001` verifier expectations for discover/validate/status to prioritize seeded state and stable outcome semantics over brittle phrasing checks.
31
+ - Expanded usage guidance for `analyze` and `analyze-consistency` with deterministic artifact/report location notes for reproducible CLI workflows.
32
+ - Updated `analyze` and `analyze-consistency` command help text to document output/report artifact locations and accurate exit-code behavior.
33
+
34
+ ## [0.33.1] - 2026-04-13
35
+
36
+ ### Changed
37
+ - Completed the batch i05 migration follow-through for this package and aligned it with the restarted `fast` / `feat` / `e2e` verification model.
38
+
39
+ ### Technical
40
+ - Included in the coordinated assignment-driven patch release for batch i05 package updates.
41
+
42
+
43
+ ## [0.33.0] - 2026-04-12
44
+
45
+ ### Changed
46
+ - Migrated `ace-docs` to the `fast` / `feat` / `e2e` testing model by moving deterministic coverage from legacy test paths into `test/fast` and `test/feat`, and aligning TS-DOCS-001 scenario metadata and runner/verifier assets with the new artifact contract.
47
+
48
+ ## [0.32.1] - 2026-04-10
49
+
50
+ ### Fixed
51
+ - Restored docs-management ignore coverage for legacy `test/e2e/**/*.md` scenario markdown paths during the E2E path migration.
52
+
10
53
  ## [0.32.0] - 2026-04-01
11
54
 
12
55
  ### Changed
data/README.md CHANGED
@@ -36,5 +36,28 @@
36
36
 
37
37
  **Enforce docs quality in release loops** - pair with [ace-lint](../ace-lint) for markdown checks and use `ace-docs` update workflows to keep guides, READMEs, and references in sync.
38
38
 
39
+ For concrete analyze/update entry points and deterministic CLI examples, see the [Usage Guide](docs/usage.md#analyze) and the [analyze-and-update workflow examples](docs/usage.md#analyze-and-update-workflow).
40
+
41
+ ## Testing Contract
42
+
43
+ Run deterministic package coverage with:
44
+
45
+ ```bash
46
+ ace-test ace-docs
47
+ ace-test ace-docs all
48
+ ```
49
+
50
+ Run deterministic feature coverage:
51
+
52
+ ```bash
53
+ ace-test ace-docs feat
54
+ ```
55
+
56
+ Run retained workflow scenarios in E2E:
57
+
58
+ ```bash
59
+ ace-test-e2e ace-docs
60
+ ```
61
+
39
62
  ---
40
63
  [Getting Started](docs/getting-started.md) | [Usage Guide](docs/usage.md) | [Handbook - Skills, Agents, Templates](docs/handbook.md) | Part of [ACE](https://github.com/cs3b/ace)
@@ -11,13 +11,13 @@ ace-docs:
11
11
 
12
12
  ## Goal
13
13
 
14
- Synchronize the project roadmap (`.ace-taskflow/roadmap.md`) with the current state of releases and tasks in the `.ace-taskflow/` directory structure. This workflow analyzes release folders, updates the Planned Major Releases table, synchronizes cross-release dependencies, and maintains roadmap format compliance per the Roadmap Definition Guide.
14
+ Synchronize the project roadmap (`.ace-task/roadmap.md`) with the current state of releases and tasks in the `.ace-task/` directory structure. This workflow analyzes release folders, updates the Planned Major Releases table, synchronizes cross-release dependencies, and maintains roadmap format compliance per the Roadmap Definition Guide.
15
15
 
16
16
  ## Prerequisites
17
17
 
18
- * `.ace-taskflow/roadmap.md` exists and follows roadmap-definition.g.md structure
19
- * `.ace-taskflow/` directory contains release folders with release.md files
20
- * `ace-taskflow` CLI tool available for release queries
18
+ * `.ace-task/roadmap.md` exists and follows roadmap-definition.g.md structure
19
+ * `.ace-task/` directory contains release folders with release.md files
20
+ * `ace-task` CLI tool available for release queries
21
21
  * `ace-nav` available for workflow protocol support
22
22
  * Git repository in clean state for committing changes
23
23
 
@@ -33,7 +33,7 @@ Synchronize the project roadmap (`.ace-taskflow/roadmap.md`) with the current st
33
33
 
34
34
  ```bash
35
35
  # Get roadmap path
36
- cat .ace-taskflow/roadmap.md
36
+ cat .ace-task/roadmap.md
37
37
  ```
38
38
 
39
39
  **Capture current state:**
@@ -73,14 +73,14 @@ cat .ace-taskflow/roadmap.md
73
73
 
74
74
  ### 3. Analyze Release State
75
75
 
76
- **Discover all releases in .ace-taskflow structure:**
76
+ **Discover all releases in .ace-task structure:**
77
77
 
78
78
  ```bash
79
79
  # Get current release
80
80
  ace-release
81
81
 
82
82
  # List all release directories
83
- ls -d .ace-taskflow/v.*/ 2>/dev/null || echo "No releases found"
83
+ ls -d .ace-task/v.*/ 2>/dev/null || echo "No releases found"
84
84
  ```
85
85
 
86
86
  **For each release found, extract:**
@@ -101,17 +101,17 @@ ls -d .ace-taskflow/v.*/ 2>/dev/null || echo "No releases found"
101
101
  **Synchronization Rules:**
102
102
 
103
103
  1. **Add New Releases:**
104
- - If release exists in `.ace-taskflow/` but NOT in roadmap table
104
+ - If release exists in `.ace-task/` but NOT in roadmap table
105
105
  - Extract release information from release.md
106
106
  - Add row to Planned Major Releases table with proper format
107
107
 
108
108
  2. **Update Existing Releases:**
109
- - If release exists in both roadmap and `.ace-taskflow/`
109
+ - If release exists in both roadmap and `.ace-task/`
110
110
  - Compare current information with release.md
111
111
  - Update any changed fields (goals, target window, epics)
112
112
 
113
113
  3. **Remove Completed Releases:**
114
- - If release is marked done/completed in `.ace-taskflow/`
114
+ - If release is marked done/completed in `.ace-task/`
115
115
  - Remove entire row from Planned Major Releases table
116
116
  - Ensure release information captured in changelog
117
117
  - Document removal in Update History
@@ -140,7 +140,7 @@ ls -d .ace-taskflow/v.*/ 2>/dev/null || echo "No releases found"
140
140
  - Remove or update obsolete statements
141
141
 
142
142
  2. **Add new dependencies:**
143
- - Analyze task dependencies from `.ace-taskflow/` structure
143
+ - Analyze task dependencies from `.ace-task/` structure
144
144
  - Identify cross-release blocking dependencies
145
145
  - Add clear dependency statements to Section 5
146
146
 
@@ -199,7 +199,7 @@ Add new row to Update History table (Section 6) at the TOP:
199
199
  - Version numbers use semantic versioning
200
200
 
201
201
  3. **Consistency Check:**
202
- - Releases in table match `.ace-taskflow/` structure
202
+ - Releases in table match `.ace-task/` structure
203
203
  - Dependencies reference valid releases/epics
204
204
  - Update history reflects changes made
205
205
 
@@ -214,10 +214,10 @@ Add new row to Update History table (Section 6) at the TOP:
214
214
 
215
215
  ```bash
216
216
  # Review changes before committing
217
- git diff .ace-taskflow/roadmap.md
217
+ git diff .ace-task/roadmap.md
218
218
 
219
219
  # Stage roadmap file
220
- git add .ace-taskflow/roadmap.md
220
+ git add .ace-task/roadmap.md
221
221
 
222
222
  # Commit with descriptive message
223
223
  git commit -m "docs(roadmap): update planned releases and synchronize with current state"
@@ -229,7 +229,7 @@ git commit -m "docs(roadmap): update planned releases and synchronize with curre
229
229
  - Examples:
230
230
  - `docs(roadmap): add v.0.9.0 Mono-Repo to planned releases`
231
231
  - `docs(roadmap): remove completed v.0.8.0 from planned releases`
232
- - `docs(roadmap): synchronize release status with .ace-taskflow structure`
232
+ - `docs(roadmap): synchronize release status with .ace-task structure`
233
233
 
234
234
  ## Error Handling
235
235
 
@@ -254,8 +254,8 @@ git commit -m "docs(roadmap): update planned releases and synchronize with curre
254
254
  - Inconsistent release naming
255
255
 
256
256
  **Recovery Steps:**
257
- 1. Report discrepancies between `.ace-taskflow/` and roadmap
258
- 2. Determine authoritative source (usually `.ace-taskflow/` structure)
257
+ 1. Report discrepancies between `.ace-task/` and roadmap
258
+ 2. Determine authoritative source (usually `.ace-task/` structure)
259
259
  3. Update roadmap to match actual release state
260
260
  4. Document assumptions in Update History
261
261
 
@@ -328,7 +328,7 @@ git commit -m "docs(roadmap): update planned releases and synchronize with curre
328
328
  ## Success Criteria
329
329
 
330
330
  - [ ] Roadmap format validated against roadmap-definition.g.md
331
- - [ ] Planned Major Releases table synchronized with `.ace-taskflow/` structure
331
+ - [ ] Planned Major Releases table synchronized with `.ace-task/` structure
332
332
  - [ ] Completed releases removed from roadmap table
333
333
  - [ ] Cross-release dependencies updated and accurate
334
334
  - [ ] Front matter `last_reviewed` date updated to today
@@ -411,10 +411,10 @@ status: [draft|active|archived]
411
411
  ## References
412
412
 
413
413
  - **Roadmap Definition Guide**: `dev-handbook/guides/roadmap-definition.g.md`
414
- - **Current Roadmap**: `.ace-taskflow/roadmap.md`
414
+ - **Current Roadmap**: `.ace-task/roadmap.md`
415
415
  - **Draft Release Workflow**: `wfi://release/draft`
416
416
  - **Publish Release Workflow**: `wfi://release/publish`
417
- - **ace-taskflow CLI**: For release queries and task analysis
417
+ - **ace-task CLI**: For release queries and task analysis
418
418
 
419
419
  ---
420
420
 
@@ -42,7 +42,7 @@ Systematically update usage documentation files based on user feedback, task req
42
42
  find . -name "usage.md" -path "*/ux/*" -o -name "usage.md" -path "*/docs/*"
43
43
 
44
44
  # Or check specific task folder
45
- ls -la .ace-taskflow/v.*/t/*/ux/usage.md
45
+ ls -la .ace-task/v.*/t/*/ux/usage.md
46
46
  ```
47
47
  * Extract key requirements:
48
48
  - What needs to be documented
@@ -102,7 +102,7 @@ Systematically update usage documentation files based on user feedback, task req
102
102
  **Commands/Steps**:
103
103
  ```bash
104
104
  # Command with comments
105
- ace-taskflow command --flag value
105
+ ace-task command --flag value
106
106
  ```
107
107
 
108
108
  **Expected Output**:
@@ -159,7 +159,7 @@ Systematically update usage documentation files based on user feedback, task req
159
159
  ### Bash CLI Commands
160
160
  Commands without `/` are terminal/bash commands:
161
161
  ```bash
162
- ace-taskflow command
162
+ ace-task command
163
163
  ```
164
164
 
165
165
  ### Claude Code Commands (Slash Commands)
@@ -469,7 +469,7 @@ feature:
469
469
  **Available Commands:**
470
470
  - `/ace:[command1]` - [Description]
471
471
  - `/ace:[command2]` - [Description]
472
- - `ace-taskflow [command]` - [CLI equivalent if exists]
472
+ - `ace-task [command]` - [CLI equivalent if exists]
473
473
 
474
474
  ## Command Types
475
475
 
@@ -482,7 +482,7 @@ Commands starting with `/` are executed **within Claude Code**:
482
482
  ### Bash CLI Commands
483
483
  Commands without `/` are **terminal/bash commands**:
484
484
  ```bash
485
- ace-taskflow [command]
485
+ ace-task [command]
486
486
  ```
487
487
 
488
488
  ## Usage Scenarios
@@ -493,7 +493,7 @@ ace-taskflow [command]
493
493
 
494
494
  ```bash
495
495
  # Step 1: Preparation (bash command)
496
- ace-taskflow list
496
+ ace-task list
497
497
 
498
498
  # Step 2: Execution (Claude command)
499
499
  /ace:[command]
@@ -538,13 +538,13 @@ Summary: 2 items completed
538
538
  [Sample output]
539
539
  ```
540
540
 
541
- ### `ace-taskflow [command]`
541
+ ### `ace-task [command]`
542
542
 
543
543
  **Purpose**: [CLI tool purpose]
544
544
 
545
545
  **Usage**:
546
546
  ```bash
547
- ace-taskflow [command] [options]
547
+ ace-task [command] [options]
548
548
  ```
549
549
 
550
550
  **Options**:
@@ -590,7 +590,7 @@ Friday: [Review]
590
590
  **Solution**:
591
591
  ```bash
592
592
  # Verify installation
593
- which ace-taskflow
593
+ which ace-task
594
594
 
595
595
  # Check workflow exists
596
596
  ace-bundle wfi://[workflow] --verify
@@ -44,8 +44,9 @@ module Ace
44
44
  Project config: .ace/docs/config.yml
45
45
 
46
46
  Output:
47
- Analysis results printed to stdout
48
- Exit codes: 0 (success), 1 (error)
47
+ Prints an analysis summary and writes session artifacts to .ace-local/docs/analyze-<id>/
48
+ Key files: analysis.md, metadata.yml, prompt-system.md, prompt-user.md
49
+ Exit codes: 0 (success), 1 (error), 2 (no changes), 3 (analysis error)
49
50
  DESC
50
51
 
51
52
  example [
@@ -34,8 +34,9 @@ module Ace
34
34
  Project config: .ace/docs/config.yml
35
35
 
36
36
  Output:
37
- Consistency report in markdown format (default)
38
- Exit codes: 0 (success), 1 (issues found with --strict), 2 (error)
37
+ Prints report location and writes artifacts under .ace-local/docs/sessions/analyze-consistency-<timestamp>/
38
+ Key files: report.md, metadata.yml, documents.json
39
+ Exit codes: 0 (success), 1 (error)
39
40
  DESC
40
41
 
41
42
  example [
@@ -76,7 +76,9 @@ module Ace
76
76
  puts "This may take a few minutes for large document sets..." if documents.count > 10
77
77
  response = execute_llm_query(prompts, session_dir)
78
78
 
79
- # Response is already saved to report.md by ace-llm's output option
79
+ unless response && File.exist?(response) && !File.read(response).strip.empty?
80
+ raise "Consistency analysis did not produce a completed report"
81
+ end
80
82
 
81
83
  # Save metadata for reference
82
84
  save_metadata(documents, pattern, session_dir)
@@ -230,7 +230,7 @@ module Ace
230
230
  %r{^#{Regexp.escape(tmp_dir)}/}, # Only ignore <project_root>/tmp/
231
231
  %r{/coverage/},
232
232
  %r{/_legacy/},
233
- %r{/\.ace-taskflow/done/}
233
+ %r{/\.ace-task/done/}
234
234
  ]
235
235
 
236
236
  # Add patterns from config if available
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ace
4
4
  module Docs
5
- VERSION = '0.32.0'
5
+ VERSION = "0.34.3"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ace-docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.34.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Czyz
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2026-04-05 00:00:00.000000000 Z
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,70 +15,70 @@ dependencies:
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: '0.9'
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.9'
25
+ version: '0.17'
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: ace-support-core
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
30
  - - "~>"
31
31
  - !ruby/object:Gem::Version
32
- version: '0.29'
32
+ version: '0.31'
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '0.29'
39
+ version: '0.31'
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: ace-git
42
42
  requirement: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '0.19'
46
+ version: '0.22'
47
47
  type: :runtime
48
48
  prerelease: false
49
49
  version_requirements: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '0.19'
53
+ version: '0.22'
54
54
  - !ruby/object:Gem::Dependency
55
55
  name: ace-b36ts
56
56
  requirement: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '0.13'
60
+ version: '0.14'
61
61
  type: :runtime
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '0.13'
67
+ version: '0.14'
68
68
  - !ruby/object:Gem::Dependency
69
69
  name: ace-llm
70
70
  requirement: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
- version: '0.30'
74
+ version: '0.38'
75
75
  type: :runtime
76
76
  prerelease: false
77
77
  version_requirements: !ruby/object:Gem::Requirement
78
78
  requirements:
79
79
  - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: '0.30'
81
+ version: '0.38'
82
82
  - !ruby/object:Gem::Dependency
83
83
  name: ace-support-markdown
84
84
  requirement: !ruby/object:Gem::Requirement
@@ -113,14 +113,14 @@ dependencies:
113
113
  requirements:
114
114
  - - "~>"
115
115
  - !ruby/object:Gem::Version
116
- version: '0.3'
116
+ version: '0.4'
117
117
  type: :runtime
118
118
  prerelease: false
119
119
  version_requirements: !ruby/object:Gem::Requirement
120
120
  requirements:
121
121
  - - "~>"
122
122
  - !ruby/object:Gem::Version
123
- version: '0.3'
123
+ version: '0.4'
124
124
  - !ruby/object:Gem::Dependency
125
125
  name: colorize
126
126
  requirement: !ruby/object:Gem::Requirement
@@ -155,14 +155,14 @@ dependencies:
155
155
  requirements:
156
156
  - - "~>"
157
157
  - !ruby/object:Gem::Version
158
- version: '1.7'
158
+ version: '1.8'
159
159
  type: :runtime
160
160
  prerelease: false
161
161
  version_requirements: !ruby/object:Gem::Requirement
162
162
  requirements:
163
163
  - - "~>"
164
164
  - !ruby/object:Gem::Version
165
- version: '1.7'
165
+ version: '1.8'
166
166
  - !ruby/object:Gem::Dependency
167
167
  name: minitest
168
168
  requirement: !ruby/object:Gem::Requirement
@@ -197,14 +197,14 @@ dependencies:
197
197
  requirements:
198
198
  - - "~>"
199
199
  - !ruby/object:Gem::Version
200
- version: '1.57'
200
+ version: '1.88'
201
201
  type: :development
202
202
  prerelease: false
203
203
  version_requirements: !ruby/object:Gem::Requirement
204
204
  requirements:
205
205
  - - "~>"
206
206
  - !ruby/object:Gem::Version
207
- version: '1.57'
207
+ version: '1.88'
208
208
  - !ruby/object:Gem::Dependency
209
209
  name: simplecov
210
210
  requirement: !ruby/object:Gem::Requirement