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 +4 -4
- data/CHANGELOG.md +36 -0
- data/README.md +20 -4
- data/lib/ace/support/nav/molecules/protocol_scanner.rb +12 -1
- data/lib/ace/support/nav/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: 85ee08c81f2ee6031ebb6494c4e6362cb9c5cd99fcc2f40fd8edc8ab284519ee
|
|
4
|
+
data.tar.gz: c9c477c8ec3cb1a516cdfd3917599b52e11cfcb95b780ee6f6aee1101ff3352d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
41
|
-
ace-nav
|
|
42
|
-
ace-nav
|
|
43
|
-
ace-nav
|
|
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 =
|
|
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}/"
|
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.
|
|
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-
|
|
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
|