@theokit/agents 9.3.0 → 9.4.0

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
@@ -1,5 +1,140 @@
1
1
  # @theokit/agents
2
2
 
3
+ ## 9.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 299a014: `createDelegateTool` — the agent can now ask the framework to delegate.
8
+
9
+ `@theokit/agents/tools` handed the model 23 tools and none of them delegated to a local sub-agent.
10
+ The capability shipped — `delegate()`, `delegateWithScoring()`, `delegateBackground()`, `Squad` —
11
+ but only the app could reach it. `createA2ATool` did not cover the case: its target is a remote peer,
12
+ inheriting none of the parent's tools, budget or authority.
13
+
14
+ The factory is deliberately thin. `delegate()` already merges the parent's tools, clamps the budget
15
+ and propagates authority; re-deriving any of that here would create a second owner of one rule.
16
+
17
+ It refuses at construction what would otherwise fail on the model's first call: an empty roster,
18
+ duplicate names (which collapse in the enum and dispatch silently to the wrong sub-agent) and a
19
+ missing credential. Budget and timeout failures come back as JSON the model can act on rather than
20
+ ending the parent's turn; an unexpected error propagates.
21
+
22
+ - d6a5928: `CustomCommand.frontmatter` carries the frontmatter lines, so a product can read its own keys.
23
+
24
+ The loader knows one key (`description`). A product's commands declare more, and the sets do not
25
+ agree: the closest consumer reads `model`, `agent`, `subtask` and `hints`, while Claude Code's custom
26
+ commands declare `model` and `argument-hint`. Two vocabularies already, and neither is the
27
+ framework's to adopt.
28
+
29
+ Measured cost of not carrying them: that consumer wrote a 122-line loader — same directories, same
30
+ trust gate, same precedence — because the result gave it nowhere to read its own keys from. The lines
31
+ travel now, and `frontmatterValue` (already exported) reads whichever key the caller cares about.
32
+
33
+ - 7825605: `loadInstructionTree` takes an `order`, so a rules folder is walked the way a rules folder means.
34
+
35
+ The predicate made a rules directory walkable and left the ordering the one an instruction TREE
36
+ needs — every file at a level before descending, because there the outer file states the general rule
37
+ and the inner one refines it. A rules FOLDER is the opposite shape: the files are peers, and the
38
+ contract its users depend on is that the same directory assembles the same prompt on any machine, in
39
+ one alphabetical pass.
40
+
41
+ Half a capability is its own kind of defect: offering the walk without the order left a caller able
42
+ to read a rules folder only in an order that misrepresents it.
43
+
44
+ Additive — `'outward-in'` stays the default, so no existing caller shifts.
45
+
46
+ - c70eadb: `loadInstructionTree` now accepts a predicate for `fileNames`, so a rules DIRECTORY can be walked.
47
+
48
+ `fileNames.includes(entry)` matched a basename, so the walk could only collect files the caller
49
+ could name in advance. A rules directory is the opposite shape: the user drops arbitrarily named
50
+ files in and expects all of them read. That is not one product's idiosyncrasy — Claude Code reads
51
+ `.claude/rules/` and Cursor reads `.cursor/rules/*.mdc`, both arbitrary-name directories.
52
+
53
+ Measured consequence of the gap: the closest consumer wrote its own 112-line walk — budget, depth
54
+ ceiling, cycle guard and all — to ask `entry.endsWith('.md')`. The walk was ours; only the question
55
+ was theirs.
56
+
57
+ Additive: `fileNames` still accepts an array, with unchanged semantics.
58
+
59
+ - 339852d: `loadCustomCommands` reads subdirectories, so a namespaced command is no longer invisible.
60
+
61
+ The loader stopped at `!statSync(path).isFile()`, which means a command in a subdirectory was not
62
+ "unsupported" — it was invisible. No warning, no error: the file sits there and the command does not
63
+ exist.
64
+
65
+ Namespacing is not one product's idea. Claude Code reads `.claude/commands/frontend/component.md` as
66
+ a namespaced command, and the closest consumer names nested files by their relative path for the same
67
+ reason a flat directory stops scaling past a dozen commands.
68
+
69
+ The name is now the path relative to the commands root with the extension removed
70
+ (`frontend/component`). How it is rendered — `frontend:component`, `frontend/component` — stays the
71
+ product's, because the two known products already disagree.
72
+
73
+ - b30fe9f: `projectsRoot(root?)` — one owner for where every project's transcripts live.
74
+
75
+ `join(root, 'projects', …)` was written in three places: twice inside `project-index.ts`, and once in
76
+ the closest consumer, which restated it as `join(transcriptRoot(), 'projects')` to enumerate every
77
+ project for a GC sweep.
78
+
79
+ The failure mode is what makes it worth a function rather than a comment. That consumer guards its
80
+ enumeration with `existsSync(root) ? readdir(root) : []`, so a segment that stops matching does not
81
+ throw — it returns an empty list. The sweep then finds nothing, deletes nothing, and reports success.
82
+ A wrong path that throws is a bug report; a wrong path that returns nothing is a collector that
83
+ quietly stopped collecting.
84
+
85
+ - e7c4d28: `InstructionBlock.scopesUnreadable` — a declared `paths:` that yields nothing is no longer
86
+ indistinguishable from no scope at all.
87
+
88
+ `parsePathsScope` reads lines and never fails, so a `paths:` whose value it cannot extract returned
89
+ `[]` — the same value as a file that declared no scope. A consumer rendering `scopes` then turned a
90
+ rule written for one subtree into a rule applying everywhere, and nothing said so.
91
+
92
+ Widening a scope silently is the one frontmatter failure with a consequence: the model obeys a rule
93
+ outside the files it was written for. The flag lets a product with a fail-closed policy drop the
94
+ block instead of publishing it unscoped, and `onWarn` now reports the case.
95
+
96
+ ### Patch Changes
97
+
98
+ - 6b15741: Frontmatter is read on CRLF files instead of being reported as never closing.
99
+
100
+ `splitFrontmatter` split on `'\n'`, so on a CRLF checkout the closing line is `'---\r'`, which never
101
+ equalled the fence: a perfectly valid file returned "frontmatter never closes" and was skipped. On
102
+ Windows that is every instruction file with frontmatter, silently, with a warning blaming a missing
103
+ `---` that is sitting right there.
104
+
105
+ The trap ran one level deeper. `.` does not match `\r` and `$` does not match before it, so the
106
+ list-item pattern behind `paths:` failed on `' - src/**\r'`. Fixing only the fence would have
107
+ turned "the file is skipped" into "the file is read and silently unscoped" — worse, because a rule
108
+ that applies everywhere looks like it works.
109
+
110
+ Line endings are now normalised at the boundary, and the closing fence is compared trimmed like the
111
+ opening one already was — an asymmetry that let a file open a frontmatter block it could never close.
112
+
113
+ - b8f47a9: Two silent failures in the instruction-tree walk.
114
+
115
+ `paths: [unclosed` produced the scope `unclose`. The inline branch did
116
+ `inline.slice(1, inline.lastIndexOf(']'))`, and `lastIndexOf` returns -1 when the bracket never
117
+ arrives — so the slice quietly dropped the last character and handed back a scope nobody wrote.
118
+ Worse than an empty list, because a scope that exists suppresses `scopesUnreadable`: the block looked
119
+ correctly scoped, to a path matching nothing, so the rule stopped applying anywhere and said nothing.
120
+
121
+ The depth ceiling stopped in silence. The file ceiling already announced itself
122
+ (`instruction budget: stopped at N files`) and this one was a bare `return false` — indistinguishable
123
+ from a directory that had nothing left in it, which sends the reader looking for a typo in a filename
124
+ that is spelled correctly.
125
+
126
+ - b023cef: `deleteSession` now refuses an async `removeFromRegistry` instead of reporting a delete that has not
127
+ happened.
128
+
129
+ The seam is synchronous by contract, and `options.removeFromRegistry?.(id) ?? false` sat at the
130
+ return: hand it an async remover and the field evaluated to a Promise — truthy — so `registryRemoved`
131
+ said the entry was gone before the removal occurred, and any rejection surfaced as an unhandled
132
+ rejection. That is not a corner case. `Agent.delete` returns `Promise<void>` and is the only agent
133
+ registry in the ecosystem, so every real caller has an async remover.
134
+
135
+ The check now runs BEFORE the transcript is unlinked, so a refused call leaves the session intact and
136
+ the caller can retry: await the registry removal first, then pass its outcome.
137
+
3
138
  ## 9.3.0
4
139
 
5
140
  ### Minor Changes
@@ -1,7 +1,6 @@
1
- import { McpServerConfig, SystemPromptResolver, InlineSkill, SettingSource, MemorySettings, SkillsSettings, ContextSettings, TrustPosture, CustomTool } from '@theokit/sdk';
2
- import { z } from 'zod';
1
+ import { McpServerConfig, SystemPromptResolver, InlineSkill, SettingSource, MemorySettings, SkillsSettings, ContextSettings } from '@theokit/sdk';
3
2
  import { TheokitAgentError } from '@theokit/sdk/errors';
4
- import { H as HookHandlers } from './hook-handlers-Cw2FsnE5.js';
3
+ import { z } from 'zod';
5
4
 
6
5
  /**
7
6
  * Provider-agnostic extended-thinking knob (M1 reasoning-visibility). The common set autocompletes;
@@ -401,233 +400,4 @@ interface CompiledAgentOptions {
401
400
  skillsResolver?: SkillsSelection;
402
401
  }
403
402
 
404
- /**
405
- * M68 — the trust gate for `settingSources`.
406
- *
407
- * ## The defect this module closes
408
- *
409
- * `settingSources` enables on-disk config discovery. `'user'` reads `~/.theokit/` — the operator's
410
- * own machine, which no third party controls. `'project'` reads `<cwd>/.theokit/`, **including
411
- * `hooks.json`, which executes shell**.
412
- *
413
- * The previous API took `readonly SettingSource[]`, and its JSDoc justified the risk this way:
414
- * *"it is opt-in because `.theokit/` is the app's own repo (informed consent)"*. That premise holds
415
- * for a web app whose `cwd` is its own deploy. It does **not** hold for the class of product this
416
- * framework addresses — an agent whose `cwd` is a repository the user just cloned. There `.theokit/`
417
- * is attacker-controlled content, and enabling `'project'` is remote code execution on the first
418
- * `build()`.
419
- *
420
- * Documenting it did not prevent it. The measured consumer (TheoCode) did not trust the API: it
421
- * gated from the outside, with a `posture.allows` of its own (`chat.ts:386`, comment B-008). It
422
- * already **had** the right decision and could not pass it through, because the API only accepted
423
- * strings. The gate existed on its side and evaporated at the boundary.
424
- *
425
- * ## The evidence is the SDK's, not one invented here
426
- *
427
- * `TrustPosture` is `@theokit/sdk`'s own trust primitive, and `recordWiring`'s doc says *"a posture
428
- * is the only thing in this package that retains a capability"*. A bespoke type would make two trust
429
- * grammars coexist and drift apart (ADR 0063).
430
- */
431
- /**
432
- * The framework's capability vocabulary — deliberately a single name (ADR 0065).
433
- *
434
- * `allows` is all-or-nothing in the SDK: every declared `K` gets the same boolean. A finer
435
- * vocabulary (`hooks`, `skills`, `subagents`, `mcp`) would promise the consumer it can gate one
436
- * without gating the other, and the primitive does not deliver that. An API that suggests a
437
- * distinction the runtime does not make teaches the wrong thing, and the error only surfaces when
438
- * somebody depends on the distinction.
439
- */
440
- type SettingSourceCapability = 'projectSettings';
441
- /** Authorization to read config from the working directory. Requires the posture, never a claim. */
442
- interface ProjectSettingsGrant {
443
- /**
444
- * Typically the output of `resolveTrustPosture` — which is what gives it `source` (`'env' |
445
- * 'store' | 'default'`) and therefore a refusal that says WHERE the decision came from instead of
446
- * merely denying.
447
- */
448
- readonly trustedBy: TrustPosture<SettingSourceCapability>;
449
- }
450
- /**
451
- * Which on-disk config roots the agent may read.
452
- *
453
- * The asymmetry is the design: `user` is a boolean because `~/.theokit/` belongs to the operator;
454
- * `project` requires evidence because `<cwd>/.theokit/` may not. Omitting a root is not enabling it
455
- * — never "enabling without a gate". The asymmetry is inherited from the SDK itself, whose
456
- * `TrustPostureInput.envOverride` documents that `false` and `undefined` both mean "the operator did
457
- * not turn it on", not "turned it off".
458
- */
459
- interface SettingSourcesSelection {
460
- /** `~/.theokit/` — the operator's machine. No gate: no third party controls it. */
461
- readonly user?: boolean;
462
- /** `<cwd>/.theokit/` — controlled by whoever wrote the open repository. Requires evidence. */
463
- readonly project?: ProjectSettingsGrant;
464
- }
465
- /**
466
- * Refusal to read the working directory for lack of trust.
467
- *
468
- * Descends from `TheokitAgentError` because typed errors are an unbreakable rule here — and because
469
- * `isTransientError` only sees this hierarchy. A class extending plain `Error` would be invisible to
470
- * the predicate that separates recoverable from unrecoverable (the defect M67 fixed in five
471
- * classes).
472
- */
473
- declare class UntrustedSettingSourceError extends TheokitAgentError {
474
- /** Where the trust decision came from: `'env' | 'store' | 'default'`. */
475
- readonly trustSource: string;
476
- /** The refused capability. */
477
- readonly capability: SettingSourceCapability;
478
- readonly name = "UntrustedSettingSourceError";
479
- constructor(message: string,
480
- /** Where the trust decision came from: `'env' | 'store' | 'default'`. */
481
- trustSource: string,
482
- /** The refused capability. */
483
- capability: SettingSourceCapability);
484
- }
485
- /**
486
- * Translate the declared selection into the `SettingSource`s the SDK accepts, refusing what the
487
- * posture does not authorize.
488
- *
489
- * Refuses rather than ignores (ADR 0064). Ignoring would leave the product running in the belief
490
- * that the repository's hooks are active — a silent failure mode, on the wrong side. The SDK already
491
- * picked that side for the same problem: `recordWiring` throws `UngatedCapabilityError` when
492
- * somebody registers a capability the posture does not gate.
493
- *
494
- * @throws {UntrustedSettingSourceError} when `project` is requested and the posture does not grant it.
495
- */
496
- declare function resolveSettingSources(selection: SettingSourcesSelection | undefined): readonly SettingSource[];
497
-
498
- /**
499
- * M2 (theokit-ai-first) — `defineAgent`, the zero-config imperative agent surface.
500
- *
501
- * ADR-B1: `defineAgent({...})` (default-exported from a top-level `agents/<name>.ts`) is
502
- * the canonical zero-config surface; the `@Agent` class decorator stays the advanced/DI
503
- * surface. Both compile to {@link CompiledAgentOptions} and run through the same SDK
504
- * runtime (`createSdkAgentStream`) — one runtime, two syntaxes.
505
- *
506
- * This module is PURE metadata (sdk-runtime.md / G2): `defineAgent` describes an agent, it
507
- * NEVER calls an LLM. It imports only `zod` (types) + the compiler shape — no `theokit`
508
- * core, preserving the agents → (nothing) dependency direction (G1).
509
- */
510
-
511
- /**
512
- * Brand tag for a `defineAgent` value. `Symbol.for` (global registry, not `Symbol()`) so
513
- * the brand survives duplicate module instances (dual-package / bundling) — the scanner's
514
- * brand-check then works regardless of which copy created the definition.
515
- */
516
- declare const AGENT_BRAND: unique symbol;
517
- /** Config accepted by {@link defineAgent}. */
518
- interface DefineAgentConfig<TInput extends z.ZodType = z.ZodType> {
519
- /** Zod schema for the request body — lifted into the typed client (M2, {@link InferAgentInput}). */
520
- input?: TInput;
521
- /** Model id (e.g. `claude-sonnet-4-6`). Falls back to the SDK default when omitted. */
522
- model?: string;
523
- /** Static system prompt. */
524
- system?: string;
525
- /** Extended-thinking effort. */
526
- reasoningEffort?: ReasoningEffort;
527
- /**
528
- * Pre-built tools. Accepts the `@theokit/sdk` `CustomTool` that `defineAgentTool`
529
- * (theokit/server) and every `@theokit/sdk-tools` factory return (issue #81) — they are
530
- * normalized to the internal {@link CompiledTool} shape at compile time.
531
- */
532
- tools?: readonly CustomTool[];
533
- /**
534
- * M7 — run-context: an opaque, per-agent object forwarded to every tool handler's
535
- * `ctx.context` at run time (injected by the theokit adapter's tool wrapper). Set shared config
536
- * (e.g. `{ projectRoot }`) ONCE at the agent level instead of baking it into each tool
537
- * factory. Mirrors ai-sdk `experimental_context`, mastra `RuntimeContext`, and
538
- * openai-agents-js `RunContext`. Distinct from `@Agent`'s context-window `context`.
539
- */
540
- context?: Record<string, unknown>;
541
- /**
542
- * M9 — guardrails: input/output guards applied at the framework boundary (ADR-0040 § D2).
543
- * Input guards run on the user message before the SDK runtime; a `block` fails the run fast.
544
- * Built-ins live in `@theokit/agents` (`promptInjectionDetector`, `piiDetector`, `costGuard`,
545
- * `unicodeNormalizer`, `outputModeration`).
546
- */
547
- guardrails?: readonly Guardrail[];
548
- /**
549
- * M14 — HITL approvals keyed by tool name. Each gated tool pauses the run and emits an
550
- * `approval_required` event until approved (reuses the same `compiled.hitl` wiring the `@Agent`
551
- * + `@HumanInTheLoop` path produces). A key that does not match a declared tool fails fast at
552
- * compile time.
553
- */
554
- approvals?: Record<string, HumanInTheLoopOptions>;
555
- /**
556
- * M13 — skills selection: a static list (compiled straight to the SDK `skills.enabled`) OR a
557
- * per-request resolver `(ctx) => string[]` (carried on `compiled.skillsResolver`, resolved by the
558
- * request path against the run-context). Absent ⇒ the SDK enables every discovered skill.
559
- */
560
- skills?: SkillsSelection;
561
- /**
562
- * theokit-file-based-config — opt into `.theokit/` file-based config (skills, subagents, hooks,
563
- * MCP, context, cron). The SDK discovers config from these roots under the app's `cwd`:
564
- * `project` = `<cwd>/.theokit/`, `user` = `~/.theokit/`. Absent ⇒ inline (code) config only.
565
- *
566
- * SECURITY (M68): `project` reads `.theokit/hooks.json`, which **executes shell**, so it requires
567
- * a `TrustPosture` rather than a string. This field used to take `readonly SettingSource[]`, and
568
- * its own JSDoc justified the risk as *"opt-in because `.theokit/` is the app's own repo (informed
569
- * consent)"*. That premise holds for a web app whose `cwd` is its own deploy; it does not hold for
570
- * an agent whose `cwd` is a repository the user just cloned, where `.theokit/` is
571
- * attacker-controlled content.
572
- *
573
- * `user` stays a plain boolean — `~/.theokit/` is the operator's own machine. Omitting a root is
574
- * not enabling it. The SDK owns discovery + execution (G2 / ADR-0040); theokit resolves the
575
- * selection through `resolveSettingSources` and wires the result into
576
- * `Agent.create({ local.settingSources })`.
577
- */
578
- settingSources?: SettingSourcesSelection;
579
- /**
580
- * M49 — durable memory (the SDK's `.theokit/memory/` subsystem: `Remember:` capture, MEMORY.md
581
- * store, auto-injected `<memory>` block, `memory_search`/`memory_get` tools). The shape is the
582
- * SDK's own `MemorySettings` — the canonical runtime contract. Projected into
583
- * `Agent.create({ memory })` by `assembleM8CreateOptions`.
584
- */
585
- memory?: MemorySettings;
586
- /**
587
- * Code `Plugin` objects forwarded to `Agent.create({ plugins })` — EXTENSION units (tools,
588
- * commands, model providers, memory adapters). For lifecycle interception use {@link hooks}.
589
- */
590
- plugins?: readonly unknown[];
591
- /**
592
- * Lifecycle hooks keyed by `HookName` (`pre_tool_call` may veto via `{ block, message }`). Set by
593
- * the builder's `hooks()`; converted into a code plugin at `build()` and never reaching the SDK
594
- * under this name — the plugin is the TRANSPORT, this is the contract callers write against.
595
- */
596
- hooks?: HookHandlers | Readonly<Record<string, unknown>>;
597
- /**
598
- * MCP servers available to the agent — the builder-chain equivalent of the `@MCP` class
599
- * decorator. Each key is a server name; the value is the server configuration. Forwarded
600
- * unchanged to `Agent.create({ mcpServers })` (the SDK owns MCP execution). Absent ⇒ no MCP.
601
- */
602
- mcpServers?: McpServersMap;
603
- }
604
- /**
605
- * A branded agent definition — the value {@link defineAgent} returns.
606
- *
607
- * `TTools` (M8) is a phantom type parameter carrying the tool-name union: the `AgentBuilder.create()` builder
608
- * threads its accumulated literal tool names here (`.build()` returns `AgentDefinition<TInput,
609
- * 'a' | 'b'>`), so the generated client (`.theokit/agents.d.ts`) can expose them via
610
- * {@link InferAgentToolNames}. `defineAgent` leaves it `string` (its tools array carries no literal
611
- * names). Never present at runtime.
612
- */
613
- type AgentDefinition<TInput extends z.ZodType = z.ZodType, TTools extends string = string> = DefineAgentConfig<TInput> & {
614
- readonly [AGENT_BRAND]: true;
615
- readonly __toolNames?: TTools;
616
- };
617
- /** Infer the request type of an agent definition from its `input` Zod schema. */
618
- type InferAgentInput<T> = T extends AgentDefinition<infer S> ? (S extends z.ZodType ? z.infer<S> : never) : never;
619
- /**
620
- * Infer the tool-name union of an agent definition (M8). Yields the literal union for agents built
621
- * with the `AgentBuilder.create()` builder (`'read_file' | 'count_lines'`), or `string` for `defineAgent` agents
622
- * whose tools array carries no literal names.
623
- */
624
- type InferAgentToolNames<T> = T extends AgentDefinition<z.ZodType, infer N> ? N : never;
625
- /** Brand-check: is `value` a {@link defineAgent} result? */
626
- declare function isAgentDefinition(value: unknown): value is AgentDefinition;
627
- /**
628
- * Lower a definition to the SDK-ready {@link CompiledAgentOptions} — the same shape
629
- * `compileAgent` (decorator path) produces, so both surfaces converge on one runtime.
630
- */
631
- declare function compileAgentDefinition(def: AgentDefinition): CompiledAgentOptions;
632
-
633
- export { type AgentDefinition as A, type BudgetOptions as B, type CompiledAgentOptions as C, type DefineAgentConfig as D, type Guardrail as G, type HumanInTheLoopOptions as H, type InferAgentInput as I, type MainLoopMeta as M, type PolicyHandler as P, type ReasoningEffort as R, type SettingSourcesSelection as S, type ToolOptions as T, UntrustedSettingSourceError as U, type CompiledTool as a, type ApprovalOptions as b, AGENT_BRAND as c, type AgentOptions as d, CostBudgetExceededError as e, type GuardrailAction as f, type GuardrailPhase as g, type GuardrailResult as h, GuardrailViolationError as i, type InferAgentToolNames as j, type MainLoopOptions as k, type McpServersMap as l, type ProjectSettingsGrant as m, type SettingSourceCapability as n, type SkillsRequestContext as o, type SkillsSelection as p, type TimeoutAction as q, type ToolWalkResult as r, type ToolboxOptions as s, type ToolboxWalkResult as t, compileAgentDefinition as u, compileTools as v, isAgentDefinition as w, resolveEnabledSkills as x, resolveSettingSources as y, type ProjectContextOptions as z };
403
+ export { type ApprovalOptions as A, type BudgetOptions as B, type CompiledAgentOptions as C, type Guardrail as G, type HumanInTheLoopOptions as H, type McpServersMap as M, type PolicyHandler as P, type ReasoningEffort as R, type SkillsSelection as S, type ToolOptions as T, type MainLoopMeta as a, type CompiledTool as b, type AgentOptions as c, CostBudgetExceededError as d, type GuardrailAction as e, type GuardrailPhase as f, type GuardrailResult as g, GuardrailViolationError as h, type MainLoopOptions as i, type SkillsRequestContext as j, type TimeoutAction as k, type ToolWalkResult as l, type ToolboxOptions as m, type ToolboxWalkResult as n, compileTools as o, type ProjectContextOptions as p, resolveEnabledSkills as r };