aw-ecc 1.4.25 → 1.4.32

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.
@@ -18,8 +18,11 @@ resolve_rules_root() {
18
18
  local candidate
19
19
 
20
20
  for candidate in \
21
+ "$root/.aw/.aw_rules/platform" \
21
22
  "$root/.aw_rules/platform" \
23
+ "$cwd_dir/.aw/.aw_rules/platform" \
22
24
  "$cwd_dir/.aw_rules/platform" \
25
+ "$HOME/.aw/.aw_rules/platform" \
23
26
  "$HOME/.aw_rules/platform" \
24
27
  "$HOME/.aw/.aw_registry/.aw_rules/platform"
25
28
  do
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aw-ecc",
3
- "version": "1.4.25",
3
+ "version": "1.4.32",
4
4
  "description": "GoHighLevel Agentic Workspace Engine — forked from Everything Claude Code (ecc-universal)",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -112,6 +112,8 @@
112
112
  "orchestrate:tmux": "node scripts/orchestrate-worktrees.js",
113
113
  "test:hook-contracts": "node tests/hooks/harness-hook-output-contracts.test.js",
114
114
  "eval:aw:fresh-env-cli-smoke": "bash tests/evals/run-aw-fresh-env-cli-smoke.sh",
115
+ "eval:aw:published-package-e2e": "bash tests/evals/run-aw-published-package-e2e.sh",
116
+ "eval:aw:release-gate": "bash tests/evals/run-aw-release-gate.sh",
115
117
  "test": "node scripts/ci/validate-agents.js && node scripts/ci/validate-commands.js && node scripts/ci/validate-rules.js && node scripts/ci/validate-skills.js && node scripts/ci/validate-hooks.js && node scripts/ci/validate-install-manifests.js && node scripts/ci/validate-no-personal-paths.js && node scripts/ci/catalog.js --text && node tests/run-all.js",
116
118
  "coverage": "c8 --all --include=\"scripts/**/*.js\" --check-coverage --lines 80 --functions 80 --branches 80 --statements 80 --reporter=text --reporter=lcov node tests/run-all.js"
117
119
  },
@@ -18,8 +18,11 @@ resolve_rules_root() {
18
18
  local candidate
19
19
 
20
20
  for candidate in \
21
+ "$root/.aw/.aw_rules/platform" \
21
22
  "$root/.aw_rules/platform" \
23
+ "$cwd_dir/.aw/.aw_rules/platform" \
22
24
  "$cwd_dir/.aw_rules/platform" \
25
+ "$HOME/.aw/.aw_rules/platform" \
23
26
  "$HOME/.aw_rules/platform" \
24
27
  "$HOME/.aw/.aw_registry/.aw_rules/platform"
25
28
  do
@@ -55,6 +55,13 @@ module.exports = createInstallTargetAdapter({
55
55
  ];
56
56
  }
57
57
 
58
+ // Codex home installs should only materialize Codex-owned root files.
59
+ // Other harness roots like .cursor/, .claude-plugin/, or .opencode/
60
+ // must not be copied into nested folders under ~/.codex.
61
+ if (sourceRelativePath.startsWith('.')) {
62
+ return [];
63
+ }
64
+
58
65
  return [adapter.createScaffoldOperation(module.id, sourceRelativePath, planningInput)];
59
66
  });
60
67
  });