@xemahq/llm-registry-api-client 0.7.4 → 0.7.7

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.
@@ -258,6 +258,7 @@ export * from './renderedMountPlanDto';
258
258
  export * from './rescopeDto';
259
259
  export * from './resolveFullResponseDto';
260
260
  export * from './resolveFullResponseDtoDataEnvelope';
261
+ export * from './resolveFullResponseDtoIntrinsicSubAgentPins';
261
262
  export * from './resolveFullResponseDtoModelClass';
262
263
  export * from './resolvedAgentKernelResponseDto';
263
264
  export * from './resolvedAgentKernelResponseDtoDataEnvelope';
@@ -275,6 +275,7 @@ __exportStar(require("./renderedMountPlanDto"), exports);
275
275
  __exportStar(require("./rescopeDto"), exports);
276
276
  __exportStar(require("./resolveFullResponseDto"), exports);
277
277
  __exportStar(require("./resolveFullResponseDtoDataEnvelope"), exports);
278
+ __exportStar(require("./resolveFullResponseDtoIntrinsicSubAgentPins"), exports);
278
279
  __exportStar(require("./resolveFullResponseDtoModelClass"), exports);
279
280
  __exportStar(require("./resolvedAgentKernelResponseDto"), exports);
280
281
  __exportStar(require("./resolvedAgentKernelResponseDtoDataEnvelope"), exports);
@@ -8,6 +8,7 @@ import type { ResolvedAgentToolProfileDto } from './resolvedAgentToolProfileDto.
8
8
  import type { ResolvedModelSelectionDto } from './resolvedModelSelectionDto.js';
9
9
  import type { ResolvedModelStubDto } from './resolvedModelStubDto.js';
10
10
  import type { ResolvedSkillEntryDto } from './resolvedSkillEntryDto.js';
11
+ import type { ResolveFullResponseDtoIntrinsicSubAgentPins } from './resolveFullResponseDtoIntrinsicSubAgentPins.js';
11
12
  import type { ResolveFullResponseDtoModelClass } from './resolveFullResponseDtoModelClass.js';
12
13
  export interface ResolveFullResponseDto {
13
14
  /** Agent definition slug. */
@@ -30,11 +31,6 @@ export interface ResolveFullResponseDto {
30
31
  * @nullable
31
32
  */
32
33
  temperature?: number | null;
33
- /**
34
- * AGENTS.md default content.
35
- * @nullable
36
- */
37
- agentsmdDefault?: string | null;
38
34
  /** Merged tool profiles. */
39
35
  toolProfiles: ResolvedAgentToolProfileDto[];
40
36
  /** Skills resolved (system-wide + base + pinned). */
@@ -51,6 +47,8 @@ export interface ResolveFullResponseDto {
51
47
  resolvedConfigHash: string;
52
48
  /** Sub-agent slugs the primary may delegate to (parsed from its source manifest's `permission.task` map). These are intrinsic to the agent's design and form the FLOOR of the runtime sub-agent set — workspace/session/step bindings layer on top but never remove from this list. */
53
49
  intrinsicSubAgents: string[];
50
+ /** Definition PIN per intrinsic sub-agent slug: the content address of the agent definition that slug resolves to in this org/project scope, folded over its `extends` chain — the same value the resolver stamps as `AgentNodeDto.agentContentHash`. It reaches the warm-pool static template fingerprint, so editing an intrinsic delegate's prompt retires the pods primed against the previous one instead of serving it silently for the whole idle TTL. A slug with no active definition in scope is ABSENT from the map rather than carrying a substituted value: absent is the pre-pin identity, and an invented one would name a definition that does not exist. */
51
+ intrinsicSubAgentPins: ResolveFullResponseDtoIntrinsicSubAgentPins;
54
52
  /** Built-in OpenCode tool keys the agent may invoke directly (parsed from its source manifest's `permission.<toolKey>` map, excluding `task`). Tools like `edit` / `write` / `read` / `bash` / `glob` / `grep` / `webfetch` / `question`. Separate from `toolProfiles` which carries the MCP-served catalog bindings. */
55
53
  intrinsicTools: string[];
56
54
  /** Full LLM routing record (modelId + providerSlug + opencodeProviderId + temperature + contextWindow). Carries the same data as `model` plus the worker-side `opencodeProviderId`. Decoupled from `structuralConfigHash` on purpose. */
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by @xemahq/api-client-generator — do not edit manually.
3
+ * LLM Registry API
4
+ * OpenAPI spec version: 0.1.3
5
+ */
6
+ /**
7
+ * Definition PIN per intrinsic sub-agent slug: the content address of the agent definition that slug resolves to in this org/project scope, folded over its `extends` chain — the same value the resolver stamps as `AgentNodeDto.agentContentHash`. It reaches the warm-pool static template fingerprint, so editing an intrinsic delegate's prompt retires the pods primed against the previous one instead of serving it silently for the whole idle TTL. A slug with no active definition in scope is ABSENT from the map rather than carrying a substituted value: absent is the pre-pin identity, and an invented one would name a definition that does not exist.
8
+ */
9
+ export type ResolveFullResponseDtoIntrinsicSubAgentPins = {
10
+ [key: string]: string;
11
+ };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by @xemahq/api-client-generator — do not edit manually.
4
+ * LLM Registry API
5
+ * OpenAPI spec version: 0.1.3
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xemahq/llm-registry-api-client",
3
- "version": "0.7.4",
3
+ "version": "0.7.7",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "files": [