@theokit/sdk 4.63.2 → 4.63.4-next.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.
Files changed (43) hide show
  1. package/CHANGELOG.md +48 -0
  2. package/dist/{agent-2COLCVOJ.js → agent-3JK7VXNN.js} +5 -5
  3. package/dist/{agent-2COLCVOJ.js.map → agent-3JK7VXNN.js.map} +1 -1
  4. package/dist/{agent-EXAN5EYJ.cjs → agent-PVINJTUR.cjs} +6 -6
  5. package/dist/{agent-EXAN5EYJ.cjs.map → agent-PVINJTUR.cjs.map} +1 -1
  6. package/dist/{chunk-WHFUZMIC.js → chunk-25BD2R5G.js} +4 -4
  7. package/dist/{chunk-WHFUZMIC.js.map → chunk-25BD2R5G.js.map} +1 -1
  8. package/dist/{chunk-DKD3MH6A.js → chunk-ACDLHN3W.js} +3 -3
  9. package/dist/{chunk-DKD3MH6A.js.map → chunk-ACDLHN3W.js.map} +1 -1
  10. package/dist/{chunk-RMIWHYC7.js → chunk-GPKAF7SG.js} +3 -3
  11. package/dist/{chunk-RMIWHYC7.js.map → chunk-GPKAF7SG.js.map} +1 -1
  12. package/dist/{chunk-6RKUO7AW.cjs → chunk-IAHZCGBE.cjs} +5 -4
  13. package/dist/chunk-IAHZCGBE.cjs.map +1 -0
  14. package/dist/{chunk-DKK5QY4C.cjs → chunk-JJ3OVRUM.cjs} +19 -19
  15. package/dist/{chunk-DKK5QY4C.cjs.map → chunk-JJ3OVRUM.cjs.map} +1 -1
  16. package/dist/{chunk-UEXIJTLC.js → chunk-L3MTL4NA.js} +3 -3
  17. package/dist/{chunk-UEXIJTLC.js.map → chunk-L3MTL4NA.js.map} +1 -1
  18. package/dist/{chunk-GEEXBYFL.js → chunk-L4BDVXIM.js} +4 -3
  19. package/dist/chunk-L4BDVXIM.js.map +1 -0
  20. package/dist/{chunk-HOXVQ5FR.cjs → chunk-OFRFZRQ4.cjs} +8 -8
  21. package/dist/{chunk-HOXVQ5FR.cjs.map → chunk-OFRFZRQ4.cjs.map} +1 -1
  22. package/dist/{chunk-ITYQ6VBP.cjs → chunk-VLVVJLDH.cjs} +14 -14
  23. package/dist/{chunk-ITYQ6VBP.cjs.map → chunk-VLVVJLDH.cjs.map} +1 -1
  24. package/dist/{chunk-VX4SQ2LY.cjs → chunk-ZWRG4NWT.cjs} +4 -4
  25. package/dist/{chunk-VX4SQ2LY.cjs.map → chunk-ZWRG4NWT.cjs.map} +1 -1
  26. package/dist/cron.cjs +5 -5
  27. package/dist/cron.js +4 -4
  28. package/dist/eval.cjs +4 -4
  29. package/dist/eval.js +3 -3
  30. package/dist/{index-manager-UZBF22BJ.cjs → index-manager-2SRX45WJ.cjs} +6 -5
  31. package/dist/{index-manager-UZBF22BJ.cjs.map → index-manager-2SRX45WJ.cjs.map} +1 -1
  32. package/dist/{index-manager-RBDHP3PM.js → index-manager-SP4ISSDX.js} +5 -4
  33. package/dist/{index-manager-RBDHP3PM.js.map → index-manager-SP4ISSDX.js.map} +1 -1
  34. package/dist/index.cjs +26 -26
  35. package/dist/index.js +8 -8
  36. package/dist/internal/memory/storage/index.cjs +31 -30
  37. package/dist/internal/memory/storage/index.js +3 -2
  38. package/dist/internal/memory/storage/memory-root.d.cts +10 -0
  39. package/dist/internal/memory/storage/memory-root.d.ts +10 -0
  40. package/docs/error-codes.md +1 -1
  41. package/package.json +1 -1
  42. package/dist/chunk-6RKUO7AW.cjs.map +0 -1
  43. package/dist/chunk-GEEXBYFL.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,53 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.63.4-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 01630ec: The README explains that three unrelated things in this ecosystem are called "plugin", and that
8
+ two of them share one option.
9
+
10
+ A **framework plugin** (`@theokit/plugin-canvas`, `@theokit/auth-github`, …) extends a `theokit`
11
+ application — routes, UI, devtools, CLI verbs. An **SDK code plugin** (`PermissionPlugin.create(…)`,
12
+ `Handoff.asPlugin(…)`) extends an agent and is passed as `Agent.create({ plugins: [ … ] })`. The
13
+ same option also accepts `{ enabled: ["name"] }`, which selects **file-discovered** plugins under
14
+ `.theokit/plugins/` and is mutually exclusive with the array form.
15
+
16
+ Reaching for the wrong one raises no error; it simply has no effect. Installing `plugin-payments`
17
+ does nothing for an agent, and passing `PermissionPlugin` does nothing for a route.
18
+
19
+ It also records the observation that sends people looking for a bug that is not there:
20
+ `agent.pluginsManager` only ever holds the file-discovered form, so it reports `plugins: []` while
21
+ a code plugin is registered and working. An empty manager beside a populated `options.plugins` is
22
+ the normal shape.
23
+
24
+ ## 4.63.3
25
+
26
+ ### Patch Changes
27
+
28
+ - 076e1b3: The Claude Code interop memory read is keyed by the git repository root, matching the CLI.
29
+
30
+ `claudeProjectMemoryDir` keyed the auto-memory store by `cwd`. The CLI keys it by the repository:
31
+ _"the `<project>` path is derived from the git repository, so all worktrees and subdirectories within
32
+ the same repo share one auto memory directory. Outside a git repo, the project root is used
33
+ instead."_
34
+
35
+ So an agent running from any directory below the root — a monorepo package, a script in `tools/`, a
36
+ test in a subfolder, which is the ordinary case — read a directory the CLI never writes to. It found
37
+ nothing and reported nothing, and that observation is identical to an empty store, which is why it
38
+ survived the interop change that introduced it.
39
+
40
+ Confirmed from disk before the fix: of the CLI project directories that resolve to a SUBDIRECTORY of
41
+ a git repository, none had a `memory/` at all, while their repository root held three fact files.
42
+ The subdirectory directories contained only session transcripts.
43
+
44
+ **Transcripts are the trap and stay as they were.** The CLI keys those by `cwd`, correctly, and
45
+ `encodeProjectDir` is right for them. One encoder serving two axes is what made the two
46
+ indistinguishable in the code; the encoder is still shared, the path it is given is not.
47
+
48
+ `.git` as a FILE — a worktree or a submodule — counts as a repository, so the read does not miss
49
+ again in the layout that most needs it.
50
+
3
51
  ## 4.63.2
4
52
 
5
53
  ### Patch Changes
@@ -1,14 +1,14 @@
1
- export { Agent } from './chunk-WHFUZMIC.js';
1
+ export { Agent } from './chunk-25BD2R5G.js';
2
2
  import './chunk-A46SWMIF.js';
3
3
  import './chunk-4FFBAUFS.js';
4
4
  import './chunk-K2BQQ445.js';
5
- import './chunk-UEXIJTLC.js';
5
+ import './chunk-L3MTL4NA.js';
6
6
  import './chunk-K5OJUYSZ.js';
7
7
  import './chunk-2SFBB54R.js';
8
8
  import './chunk-UBDMVMBZ.js';
9
9
  import './chunk-H73MEMQB.js';
10
10
  import './chunk-XO4SOZN6.js';
11
- import './chunk-GEEXBYFL.js';
11
+ import './chunk-L4BDVXIM.js';
12
12
  import './chunk-BP46RJ5X.js';
13
13
  import './chunk-DN2PACRI.js';
14
14
  import './chunk-TAZVKYWJ.js';
@@ -53,5 +53,5 @@ import './chunk-3OR54XG4.js';
53
53
  import './chunk-ZZMZWBR6.js';
54
54
  import './chunk-D4CUGAKZ.js';
55
55
  import './chunk-XEQ3TM66.js';
56
- //# sourceMappingURL=agent-2COLCVOJ.js.map
57
- //# sourceMappingURL=agent-2COLCVOJ.js.map
56
+ //# sourceMappingURL=agent-3JK7VXNN.js.map
57
+ //# sourceMappingURL=agent-3JK7VXNN.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"agent-2COLCVOJ.js"}
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"agent-3JK7VXNN.js"}
@@ -1,16 +1,16 @@
1
1
  'use strict';
2
2
 
3
- var chunkDKK5QY4C_cjs = require('./chunk-DKK5QY4C.cjs');
3
+ var chunkJJ3OVRUM_cjs = require('./chunk-JJ3OVRUM.cjs');
4
4
  require('./chunk-3FFAEAUJ.cjs');
5
5
  require('./chunk-RMWTPV3M.cjs');
6
6
  require('./chunk-BUUUWQMB.cjs');
7
- require('./chunk-ITYQ6VBP.cjs');
7
+ require('./chunk-VLVVJLDH.cjs');
8
8
  require('./chunk-ZCIRZE37.cjs');
9
9
  require('./chunk-BV2MWEMV.cjs');
10
10
  require('./chunk-KQ7TS7WW.cjs');
11
11
  require('./chunk-GHX4P3V2.cjs');
12
12
  require('./chunk-GKEFRLU7.cjs');
13
- require('./chunk-6RKUO7AW.cjs');
13
+ require('./chunk-IAHZCGBE.cjs');
14
14
  require('./chunk-ZLQSWSJ2.cjs');
15
15
  require('./chunk-KYAJINUI.cjs');
16
16
  require('./chunk-O7DK5PBJ.cjs');
@@ -60,7 +60,7 @@ require('./chunk-EG4QM7ZJ.cjs');
60
60
 
61
61
  Object.defineProperty(exports, "Agent", {
62
62
  enumerable: true,
63
- get: function () { return chunkDKK5QY4C_cjs.Agent; }
63
+ get: function () { return chunkJJ3OVRUM_cjs.Agent; }
64
64
  });
65
- //# sourceMappingURL=agent-EXAN5EYJ.cjs.map
66
- //# sourceMappingURL=agent-EXAN5EYJ.cjs.map
65
+ //# sourceMappingURL=agent-PVINJTUR.cjs.map
66
+ //# sourceMappingURL=agent-PVINJTUR.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"agent-EXAN5EYJ.cjs"}
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"agent-PVINJTUR.cjs"}
@@ -1,11 +1,11 @@
1
1
  import { submit, emitRunEvent } from './chunk-A46SWMIF.js';
2
2
  import { enqueueSessionWrite, hydrateSession, persistTurnToTranscript, flushSessionWrites, appendSessionMessage, getSessionMessages, discardSession, clearSession } from './chunk-4FFBAUFS.js';
3
- import { IndexManager } from './chunk-UEXIJTLC.js';
3
+ import { IndexManager } from './chunk-L3MTL4NA.js';
4
4
  import { loadHookConfig, warnOnce, currentPersonalityContext, warnPersonalitySwitchInsideFork } from './chunk-K5OJUYSZ.js';
5
5
  import { extractCodePlugins } from './chunk-2SFBB54R.js';
6
6
  import { createOpenAiCompatibleRuntime } from './chunk-UBDMVMBZ.js';
7
7
  import { persistActiveMemoryTranscript } from './chunk-XO4SOZN6.js';
8
- import { resolveMemoryRoot, writeSessionSummary, MEMORY_KINDS, appendFact, readFacts, legacyMemoryJsonPath, memoryMdPath, appendFactToMarkdown } from './chunk-GEEXBYFL.js';
8
+ import { resolveMemoryRoot, writeSessionSummary, MEMORY_KINDS, appendFact, readFacts, legacyMemoryJsonPath, memoryMdPath, appendFactToMarkdown } from './chunk-L4BDVXIM.js';
9
9
  import { FsSessionStore } from './chunk-BP46RJ5X.js';
10
10
  import { discoverProviderPlugins, getConfiguredBaseUrl, httpRequest, isFixtureApiKey, presentProviderCredentialEnvVars, CircuitBreaker, buildDefaultSummarizer, shouldUseRealLocalRuntime, parseSseStream, resolveProviderChain, inferProviderFromApiKey, detectPrimaryProvider, warnProviderPrecedenceOnce, tryFirstEvent, relayStream, renderToolResultContentText } from './chunk-DN2PACRI.js';
11
11
  import { resolveChildEnv } from './chunk-HKCKOAIO.js';
@@ -10794,5 +10794,5 @@ async function openLocalStore(reg) {
10794
10794
  }
10795
10795
 
10796
10796
  export { Agent, AgentBuilder, DEFAULT_AGENTIC_MODEL_ID, MEMORY_EMBEDDING_ADAPTERS, Tool, ToolError, UsageAccumulator, computeCost, generateCronId, getPricingEntry, openRouterMemoryEmbeddingProviderAdapter };
10797
- //# sourceMappingURL=chunk-WHFUZMIC.js.map
10798
- //# sourceMappingURL=chunk-WHFUZMIC.js.map
10797
+ //# sourceMappingURL=chunk-25BD2R5G.js.map
10798
+ //# sourceMappingURL=chunk-25BD2R5G.js.map