@agentxm/registry-protocol 0.28.4 → 0.28.6

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.
@@ -6,15 +6,15 @@
6
6
  * gate ignores workspace overrides; this config affects `axm lint` only.
7
7
  *
8
8
  * Keys are **exact** rule ids (`<namespace>/<name>`). No glob, wildcard, or
9
- * regex syntax is accepted in v1. The accepted-key set is built at schema
10
- * construction time from rule ids registered via `registerLintRuleIds` the
11
- * three v1 catalogs (`skill/*`, `pack/*`, `workspace/*`) each register their
12
- * ids so adding a catalog in a later phase extends the set by construction.
9
+ * regex syntax is accepted. The accepted-key set comes from the static lint
10
+ * catalog metadata, so validation never depends on which executable catalog
11
+ * modules happened to be imported first.
13
12
  *
14
13
  * @experimental This API is unstable and may change without notice.
15
14
  * @packageDocumentation
16
15
  */
17
16
  import * as Schema from "effect/Schema";
17
+ import { allLintCatalogRuleIds } from "./catalog-metadata.js";
18
18
  // -----------------------------------------------------------------------------
19
19
  // Config value schema
20
20
  // -----------------------------------------------------------------------------
@@ -32,55 +32,14 @@ export const LintRuleSeveritySchema = Schema.Literals(["off", "info", "warn", "e
32
32
  title: "Lint Rule Severity",
33
33
  description: "Severity override for a lint rule: 'off' silences it, 'info'/'warn'/'error' raise or lower severity.",
34
34
  });
35
- // -----------------------------------------------------------------------------
36
- // Registered rule-id allowlist
37
- // -----------------------------------------------------------------------------
38
- /**
39
- * Internal mutable registry of accepted rule ids, populated at module-load
40
- * time by each rule catalog's side-effecting `registerLintRuleIds` call.
41
- *
42
- * The registry is module-local so callers in other packages can't extend it
43
- * without going through `registerLintRuleIds`; the v1 catalogs register from
44
- * `./catalog/skill.ts`, `./catalog/pack.ts`, and `./catalog/workspace.ts` in
45
- * Phases 3a/3b/3c.
46
- */
47
- const registeredRuleIds = new Set();
48
- /**
49
- * Register one or more rule ids into the config allowlist.
50
- *
51
- * Each v1 rule catalog calls this once at module-load to extend the set of
52
- * accepted `lint.rules` keys. Calls are additive and idempotent — registering
53
- * an id twice is a no-op. A rule id that isn't registered will cause
54
- * `SettingsSchema` decode to fail at the `lint.rules` key, surfacing the
55
- * unknown id in the error path.
56
- *
57
- * Consumers (Phases 3a/3b/3c) should register from the catalog module by
58
- * iterating the catalog's own rule array: no copy-paste of rule ids into this
59
- * file.
60
- *
61
- * @experimental This API is unstable and may change without notice.
62
- */
63
- export const registerLintRuleIds = (ids) => {
64
- for (const id of ids) {
65
- registeredRuleIds.add(id);
66
- }
67
- };
68
- /**
69
- * Read-only view of the currently-registered rule ids.
70
- *
71
- * Mainly useful for tests and snapshots; production callers should not depend
72
- * on ordering.
73
- *
74
- * @experimental This API is unstable and may change without notice.
75
- */
76
- export const registeredLintRuleIds = () => registeredRuleIds;
35
+ const acceptedRuleIds = new Set(allLintCatalogRuleIds);
77
36
  // -----------------------------------------------------------------------------
78
37
  // Rules map schema
79
38
  // -----------------------------------------------------------------------------
80
39
  const ruleIdKeyFilter = Schema.makeFilter((input) => {
81
40
  const invalid = [];
82
41
  for (const key of Object.keys(input)) {
83
- if (!registeredRuleIds.has(key)) {
42
+ if (!acceptedRuleIds.has(key)) {
84
43
  invalid.push(key);
85
44
  }
86
45
  }
@@ -6,13 +6,9 @@
6
6
  * consume accessors as ordinary property access (no Layer wiring); tests pass
7
7
  * literal fakes.
8
8
  *
9
- * Phase 2 pins the context shapes and accessor interfaces. Phases 3a, 3b, and
10
- * 3c land the concrete `subject` decoders and VFT-/platform-backed accessor
11
- * implementations.
12
- *
13
9
  * Accessor surfaces are intentionally minimal — rules SHALL see only the
14
- * methods the v1 catalog requires. Extending a surface is a Phase 3a/3b/3c
15
- * action with a documented rule consumer, not a free action.
10
+ * methods the current catalog requires. Extend a surface only for a documented
11
+ * rule consumer.
16
12
  *
17
13
  * @experimental This API is unstable and may change without notice.
18
14
  * @packageDocumentation
@@ -24,8 +20,7 @@ import type { KnowledgeInspection } from "../knowledge/okf.js";
24
20
  * read fails for reasons other than "file not found" (which is represented
25
21
  * by `exists -> false`).
26
22
  *
27
- * Concrete implementations live in Phases 3a/3b; this interface fixes the
28
- * error shape rules can rely on.
23
+ * This interface fixes the error shape rules can rely on.
29
24
  *
30
25
  * @experimental This API is unstable and may change without notice.
31
26
  */
@@ -88,9 +83,7 @@ export interface KnowledgeFileAccessor {
88
83
  * Context passed to `skill/*` rules.
89
84
  *
90
85
  * `subject` is the caller-decoded skill content (SKILL.md frontmatter +
91
- * optional skill.json). Phase 3a refines the `subject` type to the concrete
92
- * `SkillContent` shape; Phase 2 leaves it structurally open so the rule
93
- * primitives don't need a circular dependency on the skill module.
86
+ * optional skill.json).
94
87
  *
95
88
  * `displayRoot` is posix and relative; `""` means the accessor root is the
96
89
  * rendering base. See `./compose-path.ts` for the four documented cases.
@@ -6,13 +6,9 @@
6
6
  * consume accessors as ordinary property access (no Layer wiring); tests pass
7
7
  * literal fakes.
8
8
  *
9
- * Phase 2 pins the context shapes and accessor interfaces. Phases 3a, 3b, and
10
- * 3c land the concrete `subject` decoders and VFT-/platform-backed accessor
11
- * implementations.
12
- *
13
9
  * Accessor surfaces are intentionally minimal — rules SHALL see only the
14
- * methods the v1 catalog requires. Extending a surface is a Phase 3a/3b/3c
15
- * action with a documented rule consumer, not a free action.
10
+ * methods the current catalog requires. Extend a surface only for a documented
11
+ * rule consumer.
16
12
  *
17
13
  * @experimental This API is unstable and may change without notice.
18
14
  * @packageDocumentation
@@ -2,8 +2,8 @@
2
2
  * Pure evaluator for the lint engine.
3
3
  *
4
4
  * `evaluateContexts(rules, contexts, config)` pairs each rule with each context,
5
- * invokes `rule.check`, applies permitted severity overrides from
6
- * `config.rules`, and drops warning findings configured `"off"`.
5
+ * invokes `rule.check`, applies severity overrides from `config.rules`, and
6
+ * drops findings from rules configured `"off"`.
7
7
  *
8
8
  * Both functions are plain `Effect` values; neither requires a Layer or an
9
9
  * ambient service. See the `lint-engine` design doc §3 for the rationale
@@ -2,8 +2,8 @@
2
2
  * Pure evaluator for the lint engine.
3
3
  *
4
4
  * `evaluateContexts(rules, contexts, config)` pairs each rule with each context,
5
- * invokes `rule.check`, applies permitted severity overrides from
6
- * `config.rules`, and drops warning findings configured `"off"`.
5
+ * invokes `rule.check`, applies severity overrides from `config.rules`, and
6
+ * drops findings from rules configured `"off"`.
7
7
  *
8
8
  * Both functions are plain `Effect` values; neither requires a Layer or an
9
9
  * ambient service. See the `lint-engine` design doc §3 for the rationale
@@ -34,16 +34,7 @@ const translateConfigValue = (value) => {
34
34
  return value;
35
35
  }
36
36
  };
37
- const applyOverride = (defaultSeverity, override) => {
38
- if (defaultSeverity === "error") {
39
- return "error";
40
- }
41
- if (override === undefined) {
42
- return defaultSeverity;
43
- }
44
- const translated = translateConfigValue(override);
45
- return defaultSeverity === "warning" && translated === "info" ? "warning" : translated;
46
- };
37
+ const resolveEffectiveSeverity = (defaultSeverity, override) => (override === undefined ? defaultSeverity : translateConfigValue(override));
47
38
  const withSeverity = (finding, severity) => ({
48
39
  ...finding,
49
40
  severity,
@@ -73,7 +64,7 @@ const evaluateOne = (rule, context, config) => Effect.map(rule.check(context), (
73
64
  }));
74
65
  const applySeverityConfig = (rule, findings, config) => {
75
66
  const override = config.rules?.[rule.id];
76
- const effective = applyOverride(rule.severity, override);
67
+ const effective = resolveEffectiveSeverity(rule.severity, override);
77
68
  if (effective === "off") {
78
69
  return [];
79
70
  }
@@ -8,8 +8,7 @@
8
8
  *
9
9
  * Rule ids follow `<namespace>/<subject>-<predicate>` with lowercase letters,
10
10
  * digits, and hyphens; ids leak into settings files, CI logs, and agent
11
- * transcripts, so they are public API stable under a deprecation-alias policy
12
- * per the `lint-engine` design doc.
11
+ * transcripts, so changing one is an explicit product-contract change.
13
12
  *
14
13
  * @experimental This API is unstable and may change without notice.
15
14
  * @packageDocumentation
@@ -8,8 +8,7 @@
8
8
  *
9
9
  * Rule ids follow `<namespace>/<subject>-<predicate>` with lowercase letters,
10
10
  * digits, and hyphens; ids leak into settings files, CI logs, and agent
11
- * transcripts, so they are public API stable under a deprecation-alias policy
12
- * per the `lint-engine` design doc.
11
+ * transcripts, so changing one is an explicit product-contract change.
13
12
  *
14
13
  * @experimental This API is unstable and may change without notice.
15
14
  * @packageDocumentation
@@ -6,7 +6,7 @@
6
6
  import * as Schema from "effect/Schema";
7
7
  export declare const DiscoveryResolvedExtensionSchema: Schema.Struct<{
8
8
  readonly owner: Schema.Union<readonly [Schema.brand<Schema.String, "Handle">, Schema.brand<Schema.String, "Slug">]>;
9
- readonly type: Schema.Literals<readonly ("rules" | "skill" | "mcp-server" | "subagent" | "rule" | "hook" | "knowledge" | "pack" | "skills" | "mcps" | "subagents" | "hooks" | "packs")[]>;
9
+ readonly type: Schema.Literals<readonly ("skill" | "mcp-server" | "subagent" | "rule" | "hook" | "knowledge" | "pack" | "rules" | "skills" | "mcps" | "subagents" | "hooks" | "packs")[]>;
10
10
  readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
11
11
  readonly installVersion: Schema.brand<Schema.String, "Version">;
12
12
  }>;
@@ -16,7 +16,7 @@ export declare const DiscoveryExtensionResultSchema: Schema.Struct<{
16
16
  readonly resolved: Schema.Boolean;
17
17
  readonly extension: Schema.optional<Schema.Struct<{
18
18
  readonly owner: Schema.Union<readonly [Schema.brand<Schema.String, "Handle">, Schema.brand<Schema.String, "Slug">]>;
19
- readonly type: Schema.Literals<readonly ("rules" | "skill" | "mcp-server" | "subagent" | "rule" | "hook" | "knowledge" | "pack" | "skills" | "mcps" | "subagents" | "hooks" | "packs")[]>;
19
+ readonly type: Schema.Literals<readonly ("skill" | "mcp-server" | "subagent" | "rule" | "hook" | "knowledge" | "pack" | "rules" | "skills" | "mcps" | "subagents" | "hooks" | "packs")[]>;
20
20
  readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
21
21
  readonly installVersion: Schema.brand<Schema.String, "Version">;
22
22
  }>>;
@@ -34,7 +34,7 @@ export declare const DiscoveryPackageResultSchema: Schema.Struct<{
34
34
  readonly resolved: Schema.Boolean;
35
35
  readonly extension: Schema.optional<Schema.Struct<{
36
36
  readonly owner: Schema.Union<readonly [Schema.brand<Schema.String, "Handle">, Schema.brand<Schema.String, "Slug">]>;
37
- readonly type: Schema.Literals<readonly ("rules" | "skill" | "mcp-server" | "subagent" | "rule" | "hook" | "knowledge" | "pack" | "skills" | "mcps" | "subagents" | "hooks" | "packs")[]>;
37
+ readonly type: Schema.Literals<readonly ("skill" | "mcp-server" | "subagent" | "rule" | "hook" | "knowledge" | "pack" | "rules" | "skills" | "mcps" | "subagents" | "hooks" | "packs")[]>;
38
38
  readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
39
39
  readonly installVersion: Schema.brand<Schema.String, "Version">;
40
40
  }>>;
@@ -54,7 +54,7 @@ export declare const DiscoverPackagesResponseSchema: Schema.Struct<{
54
54
  readonly resolved: Schema.Boolean;
55
55
  readonly extension: Schema.optional<Schema.Struct<{
56
56
  readonly owner: Schema.Union<readonly [Schema.brand<Schema.String, "Handle">, Schema.brand<Schema.String, "Slug">]>;
57
- readonly type: Schema.Literals<readonly ("rules" | "skill" | "mcp-server" | "subagent" | "rule" | "hook" | "knowledge" | "pack" | "skills" | "mcps" | "subagents" | "hooks" | "packs")[]>;
57
+ readonly type: Schema.Literals<readonly ("skill" | "mcp-server" | "subagent" | "rule" | "hook" | "knowledge" | "pack" | "rules" | "skills" | "mcps" | "subagents" | "hooks" | "packs")[]>;
58
58
  readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
59
59
  readonly installVersion: Schema.brand<Schema.String, "Version">;
60
60
  }>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentxm/registry-protocol",
3
- "version": "0.28.4",
3
+ "version": "0.28.6",
4
4
  "description": "AgentXM Registry wire contracts and shared publication validation rules. Unstable and unsupported — use the axm.sh CLI.",
5
5
  "type": "module",
6
6
  "license": "FSL-1.1-MIT",
@@ -17,170 +17,217 @@
17
17
  "exports": {
18
18
  "./unstable/content": {
19
19
  "types": "./dist/src/unstable/content/index.d.ts",
20
+ "axm-source": "./src/unstable/content/index.ts",
20
21
  "default": "./dist/src/unstable/content/index.js"
21
22
  },
22
23
  "./unstable/content/agent-skills-standard": {
23
24
  "types": "./dist/src/unstable/content/agent-skills-standard.d.ts",
25
+ "axm-source": "./src/unstable/content/agent-skills-standard.ts",
24
26
  "default": "./dist/src/unstable/content/agent-skills-standard.js"
25
27
  },
26
28
  "./unstable/content/frontmatter": {
27
29
  "types": "./dist/src/unstable/content/frontmatter.d.ts",
30
+ "axm-source": "./src/unstable/content/frontmatter.ts",
28
31
  "default": "./dist/src/unstable/content/frontmatter.js"
29
32
  },
30
33
  "./unstable/content/skill-content": {
31
34
  "types": "./dist/src/unstable/content/skill-content.d.ts",
35
+ "axm-source": "./src/unstable/content/skill-content.ts",
32
36
  "default": "./dist/src/unstable/content/skill-content.js"
33
37
  },
34
38
  "./unstable/content/skill-types": {
35
39
  "types": "./dist/src/unstable/content/skill-types.d.ts",
40
+ "axm-source": "./src/unstable/content/skill-types.ts",
36
41
  "default": "./dist/src/unstable/content/skill-types.js"
37
42
  },
38
43
  "./unstable/content/subagent-content": {
39
44
  "types": "./dist/src/unstable/content/subagent-content.d.ts",
45
+ "axm-source": "./src/unstable/content/subagent-content.ts",
40
46
  "default": "./dist/src/unstable/content/subagent-content.js"
41
47
  },
42
48
  "./unstable/knowledge": {
43
49
  "types": "./dist/src/unstable/knowledge/index.d.ts",
50
+ "axm-source": "./src/unstable/knowledge/index.ts",
44
51
  "default": "./dist/src/unstable/knowledge/index.js"
45
52
  },
46
53
  "./unstable/knowledge/knowledge-search": {
47
54
  "types": "./dist/src/unstable/knowledge/knowledge-search.d.ts",
55
+ "axm-source": "./src/unstable/knowledge/knowledge-search.ts",
48
56
  "default": "./dist/src/unstable/knowledge/knowledge-search.js"
49
57
  },
50
58
  "./unstable/knowledge/okf": {
51
59
  "types": "./dist/src/unstable/knowledge/okf.d.ts",
60
+ "axm-source": "./src/unstable/knowledge/okf.ts",
52
61
  "default": "./dist/src/unstable/knowledge/okf.js"
53
62
  },
54
63
  "./unstable/lint/catalog/hook": {
55
64
  "types": "./dist/src/unstable/lint/catalog/hook.d.ts",
65
+ "axm-source": "./src/unstable/lint/catalog/hook.ts",
56
66
  "default": "./dist/src/unstable/lint/catalog/hook.js"
57
67
  },
58
68
  "./unstable/lint/catalog/knowledge": {
59
69
  "types": "./dist/src/unstable/lint/catalog/knowledge.d.ts",
70
+ "axm-source": "./src/unstable/lint/catalog/knowledge.ts",
60
71
  "default": "./dist/src/unstable/lint/catalog/knowledge.js"
61
72
  },
62
73
  "./unstable/lint/catalog/knowledge/diagnostics": {
63
74
  "types": "./dist/src/unstable/lint/catalog/knowledge/diagnostics.d.ts",
75
+ "axm-source": "./src/unstable/lint/catalog/knowledge/diagnostics.ts",
64
76
  "default": "./dist/src/unstable/lint/catalog/knowledge/diagnostics.js"
65
77
  },
66
78
  "./unstable/lint/catalog/mcp-server": {
67
79
  "types": "./dist/src/unstable/lint/catalog/mcp-server.d.ts",
80
+ "axm-source": "./src/unstable/lint/catalog/mcp-server.ts",
68
81
  "default": "./dist/src/unstable/lint/catalog/mcp-server.js"
69
82
  },
70
83
  "./unstable/lint/catalog/pack": {
71
84
  "types": "./dist/src/unstable/lint/catalog/pack.d.ts",
85
+ "axm-source": "./src/unstable/lint/catalog/pack.ts",
72
86
  "default": "./dist/src/unstable/lint/catalog/pack.js"
73
87
  },
74
88
  "./unstable/lint/catalog/pack-accessor/contexts": {
75
89
  "types": "./dist/src/unstable/lint/catalog/pack-accessor/contexts.d.ts",
90
+ "axm-source": "./src/unstable/lint/catalog/pack-accessor/contexts.ts",
76
91
  "default": "./dist/src/unstable/lint/catalog/pack-accessor/contexts.js"
77
92
  },
78
93
  "./unstable/lint/catalog/pack-accessor/vft": {
79
94
  "types": "./dist/src/unstable/lint/catalog/pack-accessor/vft.d.ts",
95
+ "axm-source": "./src/unstable/lint/catalog/pack-accessor/vft.ts",
80
96
  "default": "./dist/src/unstable/lint/catalog/pack-accessor/vft.js"
81
97
  },
82
98
  "./unstable/lint/catalog/rule": {
83
99
  "types": "./dist/src/unstable/lint/catalog/rule.d.ts",
100
+ "axm-source": "./src/unstable/lint/catalog/rule.ts",
84
101
  "default": "./dist/src/unstable/lint/catalog/rule.js"
85
102
  },
86
103
  "./unstable/lint/catalog/shared/manifest-json": {
87
104
  "types": "./dist/src/unstable/lint/catalog/shared/manifest-json.d.ts",
105
+ "axm-source": "./src/unstable/lint/catalog/shared/manifest-json.ts",
88
106
  "default": "./dist/src/unstable/lint/catalog/shared/manifest-json.js"
89
107
  },
90
108
  "./unstable/lint/catalog/skill": {
91
109
  "types": "./dist/src/unstable/lint/catalog/skill.d.ts",
110
+ "axm-source": "./src/unstable/lint/catalog/skill.ts",
92
111
  "default": "./dist/src/unstable/lint/catalog/skill.js"
93
112
  },
94
113
  "./unstable/lint/catalog/skill-accessor/contexts": {
95
114
  "types": "./dist/src/unstable/lint/catalog/skill-accessor/contexts.d.ts",
115
+ "axm-source": "./src/unstable/lint/catalog/skill-accessor/contexts.ts",
96
116
  "default": "./dist/src/unstable/lint/catalog/skill-accessor/contexts.js"
97
117
  },
98
118
  "./unstable/lint/catalog/skill-accessor/vft": {
99
119
  "types": "./dist/src/unstable/lint/catalog/skill-accessor/vft.d.ts",
120
+ "axm-source": "./src/unstable/lint/catalog/skill-accessor/vft.ts",
100
121
  "default": "./dist/src/unstable/lint/catalog/skill-accessor/vft.js"
101
122
  },
102
123
  "./unstable/lint/catalog/subagent": {
103
124
  "types": "./dist/src/unstable/lint/catalog/subagent.d.ts",
125
+ "axm-source": "./src/unstable/lint/catalog/subagent.ts",
104
126
  "default": "./dist/src/unstable/lint/catalog/subagent.js"
105
127
  },
106
128
  "./unstable/lint/compose-path": {
107
129
  "types": "./dist/src/unstable/lint/compose-path.d.ts",
130
+ "axm-source": "./src/unstable/lint/compose-path.ts",
108
131
  "default": "./dist/src/unstable/lint/compose-path.js"
109
132
  },
133
+ "./unstable/lint/catalog-metadata": {
134
+ "types": "./dist/src/unstable/lint/catalog-metadata.d.ts",
135
+ "axm-source": "./src/unstable/lint/catalog-metadata.ts",
136
+ "default": "./dist/src/unstable/lint/catalog-metadata.js"
137
+ },
110
138
  "./unstable/lint/config": {
111
139
  "types": "./dist/src/unstable/lint/config.d.ts",
140
+ "axm-source": "./src/unstable/lint/config.ts",
112
141
  "default": "./dist/src/unstable/lint/config.js"
113
142
  },
114
143
  "./unstable/lint/context": {
115
144
  "types": "./dist/src/unstable/lint/context.d.ts",
145
+ "axm-source": "./src/unstable/lint/context.ts",
116
146
  "default": "./dist/src/unstable/lint/context.js"
117
147
  },
118
148
  "./unstable/lint/evaluate": {
119
149
  "types": "./dist/src/unstable/lint/evaluate.d.ts",
150
+ "axm-source": "./src/unstable/lint/evaluate.ts",
120
151
  "default": "./dist/src/unstable/lint/evaluate.js"
121
152
  },
122
153
  "./unstable/lint/issues-to-findings": {
123
154
  "types": "./dist/src/unstable/lint/issues-to-findings.d.ts",
155
+ "axm-source": "./src/unstable/lint/issues-to-findings.ts",
124
156
  "default": "./dist/src/unstable/lint/issues-to-findings.js"
125
157
  },
126
158
  "./unstable/lint/publish": {
127
159
  "types": "./dist/src/unstable/lint/publish.d.ts",
160
+ "axm-source": "./src/unstable/lint/publish.ts",
128
161
  "default": "./dist/src/unstable/lint/publish.js"
129
162
  },
130
163
  "./unstable/lint/rule": {
131
164
  "types": "./dist/src/unstable/lint/rule.d.ts",
165
+ "axm-source": "./src/unstable/lint/rule.ts",
132
166
  "default": "./dist/src/unstable/lint/rule.js"
133
167
  },
134
168
  "./unstable/publish": {
135
169
  "types": "./dist/src/unstable/publish/index.d.ts",
170
+ "axm-source": "./src/unstable/publish/index.ts",
136
171
  "default": "./dist/src/unstable/publish/index.js"
137
172
  },
138
173
  "./unstable/publish/archive-guardrails": {
139
174
  "types": "./dist/src/unstable/publish/archive-guardrails.d.ts",
175
+ "axm-source": "./src/unstable/publish/archive-guardrails.ts",
140
176
  "default": "./dist/src/unstable/publish/archive-guardrails.js"
141
177
  },
142
178
  "./unstable/publish/filtered-package-validation": {
143
179
  "types": "./dist/src/unstable/publish/filtered-package-validation.d.ts",
180
+ "axm-source": "./src/unstable/publish/filtered-package-validation.ts",
144
181
  "default": "./dist/src/unstable/publish/filtered-package-validation.js"
145
182
  },
146
183
  "./unstable/publish/ingest-limits": {
147
184
  "types": "./dist/src/unstable/publish/ingest-limits.d.ts",
185
+ "axm-source": "./src/unstable/publish/ingest-limits.ts",
148
186
  "default": "./dist/src/unstable/publish/ingest-limits.js"
149
187
  },
150
188
  "./unstable/publish/input-normalization": {
151
189
  "types": "./dist/src/unstable/publish/input-normalization.d.ts",
190
+ "axm-source": "./src/unstable/publish/input-normalization.ts",
152
191
  "default": "./dist/src/unstable/publish/input-normalization.js"
153
192
  },
154
193
  "./unstable/publish/manifest-policy": {
155
194
  "types": "./dist/src/unstable/publish/manifest-policy.d.ts",
195
+ "axm-source": "./src/unstable/publish/manifest-policy.ts",
156
196
  "default": "./dist/src/unstable/publish/manifest-policy.js"
157
197
  },
158
198
  "./unstable/publish/visibility": {
159
199
  "types": "./dist/src/unstable/publish/visibility.d.ts",
200
+ "axm-source": "./src/unstable/publish/visibility.ts",
160
201
  "default": "./dist/src/unstable/publish/visibility.js"
161
202
  },
162
203
  "./unstable/registry": {
163
204
  "types": "./dist/src/unstable/registry/index.d.ts",
205
+ "axm-source": "./src/unstable/registry/index.ts",
164
206
  "default": "./dist/src/unstable/registry/index.js"
165
207
  },
166
208
  "./unstable/registry/discover-schema": {
167
209
  "types": "./dist/src/unstable/registry/discover-schema.d.ts",
210
+ "axm-source": "./src/unstable/registry/discover-schema.ts",
168
211
  "default": "./dist/src/unstable/registry/discover-schema.js"
169
212
  },
170
213
  "./unstable/registry/publication-set": {
171
214
  "types": "./dist/src/unstable/registry/publication-set.d.ts",
215
+ "axm-source": "./src/unstable/registry/publication-set.ts",
172
216
  "default": "./dist/src/unstable/registry/publication-set.js"
173
217
  },
174
218
  "./unstable/registry/release-age-policy": {
175
219
  "types": "./dist/src/unstable/registry/release-age-policy.d.ts",
220
+ "axm-source": "./src/unstable/registry/release-age-policy.ts",
176
221
  "default": "./dist/src/unstable/registry/release-age-policy.js"
177
222
  },
178
223
  "./unstable/registry/schema": {
179
224
  "types": "./dist/src/unstable/registry/schema.d.ts",
225
+ "axm-source": "./src/unstable/registry/schema.ts",
180
226
  "default": "./dist/src/unstable/registry/schema.js"
181
227
  },
182
228
  "./unstable/suggested-action": {
183
229
  "types": "./dist/src/unstable/suggested-action.d.ts",
230
+ "axm-source": "./src/unstable/suggested-action.ts",
184
231
  "default": "./dist/src/unstable/suggested-action.js"
185
232
  }
186
233
  },
@@ -201,7 +248,7 @@
201
248
  "effect": "4.0.0-rc.112",
202
249
  "semver": "^7.8.5",
203
250
  "yaml": "^2.9.0",
204
- "@agentxm/extension-model": "^0.28.4"
251
+ "@agentxm/extension-model": "^0.28.6"
205
252
  },
206
253
  "devDependencies": {
207
254
  "@effect/platform-node": "4.0.0-rc.112",