@cubis/foundry 0.3.72 → 0.3.73

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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to this project are documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.3.73] - 2026-03-13
8
+
9
+ ### Fixed
10
+
11
+ - Fixed skill loading protocol across all platforms (Codex, Copilot, Claude, Antigravity): agents now load skills recommended by `route_resolve` (`primarySkillHint`, `primarySkills[0]`, `detectedLanguageSkill`) before executing non-trivial tasks instead of ignoring them.
12
+ - Added TIER 1b to the managed skill-routing block so `cbx workflows sync-rules` propagates the post-route skill loading rule to installed projects.
13
+ - Corrected the Codex sandbox override note to explicitly name the Foundry MCP tools and the expected post-route loading behavior.
14
+
7
15
  ## [0.3.72] - 2026-03-13
8
16
 
9
17
  ### Fixed
@@ -287,5 +295,3 @@ All notable changes to this project are documented in this file.
287
295
  - Added centralized Postman config via `cbx_config.json`.
288
296
  - Added MCP scope controls (`project/workspace/global/user`) with platform-aware runtime placement.
289
297
  - Kept rules/engineering artifacts in workspace scope while defaulting skills/powers install to global scope.
290
-
291
-
package/dist/cli/core.js CHANGED
@@ -3193,10 +3193,11 @@ function buildManagedWorkflowBlock(platformId, workflows) {
3193
3193
  lines.push("");
3194
3194
  lines.push("<!-- cbx:managed:skill-routing start -->");
3195
3195
  lines.push("Classify intent before any MCP call.");
3196
- lines.push("- TIER 1 DIRECT: `skill_get <exact-skill-id>` when domain and skill are obvious.");
3197
- lines.push("- TIER 2 TARGETED SEARCH: one `skill_search <1-3 word noun>` max, then `skill_validate` -> `skill_get`.");
3198
- lines.push("- TIER 3 SKIP: no MCP call for conversational, same-session, or native-tool-sufficient work.");
3199
- lines.push("- Never pre-load skills or agents speculatively.");
3196
+ lines.push("- TIER 1 DIRECT: `skill_get <exact-skill-id>` when skill ID is known from route or context.");
3197
+ lines.push("- TIER 1b ROUTE-RECOMMENDED: after `route_resolve`, load `primarySkillHint` or first `primarySkills` entry via `skill_validate` -> `skill_get` before executing non-trivial tasks.");
3198
+ lines.push("- TIER 2 TARGETED SEARCH: one `skill_search <1-3 word noun>` max when domain is unclear, then `skill_validate` -> `skill_get`.");
3199
+ lines.push("- TIER 3 SKIP: no MCP call for conversational replies, trivial one-liners, or identical skill already loaded this session.");
3200
+ lines.push("- Never pre-load skills or agents speculatively before route resolution.");
3200
3201
  lines.push("- Keep one primary agent and one primary skill by default.");
3201
3202
  lines.push("- Add supporting skills only when the active task explicitly crosses domains.");
3202
3203
  lines.push("- Direct skill-package creation or repair work to `skill-creator` instead of starting with `skill_search`.");