ace-support-nav 0.26.3 → 0.28.2

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: ed41232dd7760bc950cd021c37f847d341a8fcd9b8df73831540337ea75c875d
4
- data.tar.gz: bcfb3ce3a5789e4b9f86a4160edb6828077af05f71a2b9d58600f1f769705c70
3
+ metadata.gz: 85ee08c81f2ee6031ebb6494c4e6362cb9c5cd99fcc2f40fd8edc8ab284519ee
4
+ data.tar.gz: c9c477c8ec3cb1a516cdfd3917599b52e11cfcb95b780ee6f6aee1101ff3352d
5
5
  SHA512:
6
- metadata.gz: fc33fb6006f261617f7c20bc4848b84d298b4779a33fd8a30794c77c7cfb5ee5e1c25d889ffbafa2b7c30bf19d88a2140517c3d3d8fad950bd990763e3b65f56
7
- data.tar.gz: 0e8fd853c79ae03923d740e17ef4d8d12852c0bbe43968b8ab1b6609822628e1171913e34f619f0e78cf123f249cbb9325c8dd35eabc61cc93e1aa8ccc0c0025
6
+ metadata.gz: 6cec2ea42760eb34c86ac9f10d56410449714478a874169e8e60ce0fae0e5efeb5f981c571fb380bea9a397bd28eeb0f2c53aece221892b5992c0d549733c648
7
+ data.tar.gz: 21645a38eab8b20f7629c64574fd75a37e208e5add437104e9f05c58da3501ea0d32d61e9ad2f0597eff0db68e076ebb0e42d0fb3ee6fe678f7a0a3b10ab3179
data/CHANGELOG.md CHANGED
@@ -7,6 +7,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.28.2] - 2026-04-20
11
+
12
+ ### Technical
13
+ - Stabilized `TS-NAV-001` discovery-listing verification by requiring canonical `list.*` captures for the public `ace-nav list` workflow.
14
+
15
+ ## [0.28.1] - 2026-04-16
16
+
17
+ ### Technical
18
+ - Updated `TS-NAV-001` sandbox setup to source `mise.toml` from `${ACE_E2E_SOURCE_ROOT:-$PROJECT_ROOT_PATH}` so resource-navigation smoke runs stay compatible with read-only source-root mounts.
19
+
20
+ ## [0.28.0] - 2026-04-15
21
+
22
+ ### Changed
23
+ - Reworked `TS-NAV-001` E2E coverage to public-surface goal contracts by rewriting discovery/resolve/listing goals around actionable user outcomes instead of extension-priority internals.
24
+ - Added `TC-006 create-from-template public path` coverage to verify end-to-end creation behavior through `ace-nav create` with real filesystem outputs.
25
+ - Updated package Quick Start guidance to include one complete user journey (`resolve -> list -> sources -> create`) and explicit user-facing success signals.
26
+
27
+ ## [0.27.3] - 2026-04-13
28
+
29
+ ### Fixed
30
+ - Deduplicated `cookbook://` listing output by canonicalized resource path while preserving source priority when overlaps occur.
31
+ - Canonicalized dedupe keys with `File.realpath` (with fallback to `File.expand_path`) so symlinked and real source roots collapse to one cookbook entry.
32
+ - Added regression coverage for mixed source types and real-path vs symlink-path overlaps to lock dedupe behavior.
33
+
34
+ ## [0.27.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
+ ### Changed
44
+ - Migrated package tests to the restarted `fast` / `feat` / `e2e` model, moved deterministic coverage into `test/fast` and `test/feat`, refreshed `TS-NAV-001` decision metadata/setup for sandbox reliability, and updated README testing guidance to the new lane contract.
45
+
10
46
  ## [0.26.3] - 2026-04-01
11
47
 
12
48
  ### Fixed
data/README.md CHANGED
@@ -37,10 +37,26 @@
37
37
  ## Quick Start
38
38
 
39
39
  ```bash
40
- ace-nav resolve wfi://setup # Locate a workflow instruction
41
- ace-nav resolve guide://configuration # Find a guide by protocol URI
42
- ace-nav list 'wfi://*test*' # Wildcard search across sources
43
- ace-nav --sources # List all registered handbook sources
40
+ ace-nav resolve guide://markdown-style # Resolve a guide path
41
+ ace-nav list 'wfi://*test*' # Browse candidate workflows
42
+ ace-nav sources # List all registered sources
43
+ ace-nav create wfi://setup ./tmp/setup-copy.wf.md # Create from URI into a file
44
+ ```
45
+
46
+ Expected user-facing success criteria for this journey:
47
+ - `resolve` returns a usable path for the requested resource.
48
+ - `list` and `sources` return actionable entries for follow-up commands.
49
+ - `create` writes the requested file at the provided target path.
50
+
51
+ ## Testing
52
+
53
+ Use the restarted lane model for this package:
54
+
55
+ ```bash
56
+ ace-test ace-support-nav # fast deterministic lane (default)
57
+ ace-test ace-support-nav feat # deterministic feature lane
58
+ ace-test ace-support-nav all # fast + feat
59
+ ace-test-e2e ace-support-nav # retained workflow-value scenarios only
44
60
  ```
45
61
 
46
62
  ---
@@ -280,7 +280,7 @@ module Ace
280
280
  seen = Set.new
281
281
 
282
282
  resources.each_with_object([]) do |resource, unique_resources|
283
- key = [resource[:source].type, resource[:path]]
283
+ key = dedupe_resource_key(resource)
284
284
  next if seen.include?(key)
285
285
 
286
286
  seen.add(key)
@@ -381,6 +381,17 @@ module Ace
381
381
 
382
382
  private
383
383
 
384
+ def dedupe_resource_key(resource)
385
+ protocol = resource[:protocol]
386
+ path = resource[:path].to_s
387
+ canonical_path = begin
388
+ File.realpath(path)
389
+ rescue Errno::ENOENT, Errno::ENOTDIR, Errno::EACCES
390
+ File.expand_path(path)
391
+ end
392
+ [protocol, canonical_path]
393
+ end
394
+
384
395
  def create_resource_info(file_path, search_path, source, protocol)
385
396
  # Ensure search_path ends with a separator for proper substitution
386
397
  normalized_search_path = search_path.end_with?("/") ? search_path : "#{search_path}/"
@@ -3,7 +3,7 @@
3
3
  module Ace
4
4
  module Support
5
5
  module Nav
6
- VERSION = '0.26.3'
6
+ VERSION = '0.28.2'
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ace-support-nav
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.3
4
+ version: 0.28.2
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-04-20 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: ace-support-cli