@kybernesis/brain-llm-claude 0.8.1 → 0.8.3
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/LICENSE +21 -0
- package/README.md +55 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +38 -4
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Kybernesis
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# @kybernesis/brain-llm-claude
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@kybernesis/brain-llm-claude)
|
|
4
|
+
|
|
5
|
+
The default **`LLMProvider`** for [Cortex](../../README.md) — runs Claude through the local
|
|
6
|
+
[`claude` CLI](https://docs.claude.com/en/docs/claude-code) as a subprocess. It powers the
|
|
7
|
+
kernel's reasoning features: relationship and fact extraction, contradiction detection, user
|
|
8
|
+
profiles, and sleep-cycle reasoning.
|
|
9
|
+
|
|
10
|
+
**Used with [`@kybernesis/brain-core`](../brain-core).** It satisfies the `LLMProvider`
|
|
11
|
+
interface; you inject it, the kernel calls `callClaude` / `callClaudeJSON` through it.
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pnpm add @kybernesis/brain-llm-claude @kybernesis/brain-core
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Requires the `claude` CLI on `PATH` (authenticated). The kernel works without an LLM seam —
|
|
20
|
+
the reasoning features simply skip — so this provider is optional.
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
```ts
|
|
25
|
+
import { createSubprocessProvider, isClaudeAvailable } from '@kybernesis/brain-llm-claude';
|
|
26
|
+
import { setLLMProvider } from '@kybernesis/brain-core';
|
|
27
|
+
|
|
28
|
+
if (await isClaudeAvailable()) {
|
|
29
|
+
setLLMProvider(createSubprocessProvider());
|
|
30
|
+
}
|
|
31
|
+
// brain-core's LLM-backed steps now run; without it they no-op.
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Behaviour
|
|
35
|
+
|
|
36
|
+
- Shells out to `claude --print` per call; resolves the model from
|
|
37
|
+
`CLAUDE_MODEL_ALIASES` in [`@kybernesis/brain-contracts`](../brain-contracts).
|
|
38
|
+
- **Never throws into the kernel** — spawn errors, non-zero exits, empty output, and timeouts
|
|
39
|
+
all resolve to `null` (the kernel treats a `null` LLM result as "skip"). Surface failures
|
|
40
|
+
via the `onError` hook (`reason: 'spawn' | 'exit' | 'empty' | 'timeout'`).
|
|
41
|
+
- `timeoutMs` (default `60_000`) sends `SIGTERM` to a hung process so a stuck `claude` can't
|
|
42
|
+
wedge a sleep cycle.
|
|
43
|
+
|
|
44
|
+
```ts
|
|
45
|
+
setLLMProvider(createSubprocessProvider({
|
|
46
|
+
timeoutMs: 30_000,
|
|
47
|
+
onError: (reason, detail) => log.warn(`claude ${reason}`, detail),
|
|
48
|
+
}));
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Notes
|
|
52
|
+
|
|
53
|
+
- ESM-only, TypeScript strict.
|
|
54
|
+
- `maxTokens` is not supported by the CLI surface and is documented as a no-op.
|
|
55
|
+
- Part of [Cortex](../../README.md) — `@kybernesis/brain-*`.
|
package/dist/index.d.ts
CHANGED
|
@@ -13,11 +13,32 @@
|
|
|
13
13
|
*/
|
|
14
14
|
import type { ClaudeCallOpts, LLMProvider } from '@kybernesis/brain-core';
|
|
15
15
|
export type { ClaudeCallOpts, LLMProvider };
|
|
16
|
+
/** Why a `call()` resolved `null`, for the optional onError hook. */
|
|
17
|
+
export interface SubprocessFailure {
|
|
18
|
+
reason: 'spawn' | 'exit' | 'empty' | 'timeout';
|
|
19
|
+
/** Process exit code, when the failure came from a close event. */
|
|
20
|
+
code?: number | null;
|
|
21
|
+
/** Trimmed stderr preview (non-zero exits only). */
|
|
22
|
+
stderr?: string;
|
|
23
|
+
}
|
|
16
24
|
export interface SubprocessProviderOptions {
|
|
17
25
|
/** Claude CLI binary name or path. Defaults to 'claude'. */
|
|
18
26
|
binary?: string;
|
|
19
27
|
/** Working directory for the spawned subprocess. */
|
|
20
28
|
cwd?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Kill the subprocess (SIGTERM) and resolve `null` if it hasn't exited after
|
|
31
|
+
* this many ms. Default 60_000. Set to 0 to disable (not recommended — a hung
|
|
32
|
+
* `claude` would otherwise hang the caller forever).
|
|
33
|
+
*/
|
|
34
|
+
timeoutMs?: number;
|
|
35
|
+
/**
|
|
36
|
+
* Optional failure hook, called once before each `null` resolution. Without it
|
|
37
|
+
* failures degrade silently — a missing binary, a non-zero exit, an empty
|
|
38
|
+
* response and a timeout all look identical. Wire it to your logger to tell
|
|
39
|
+
* them apart. Do not log the prompt/output (may be large/sensitive).
|
|
40
|
+
*/
|
|
41
|
+
onError?: (info: SubprocessFailure) => void;
|
|
21
42
|
}
|
|
22
43
|
/**
|
|
23
44
|
* Create a subprocess-backed LLMProvider.
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAKH,OAAO,KAAK,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAE1E,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,CAAC;AAE5C,MAAM,WAAW,yBAAyB;IACxC,4DAA4D;IAC5D,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,oDAAoD;IACpD,GAAG,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAKH,OAAO,KAAK,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAE1E,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,CAAC;AAE5C,qEAAqE;AACrE,MAAM,WAAW,iBAAiB;IAChC,MAAM,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;IAC/C,mEAAmE;IACnE,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,oDAAoD;IACpD,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,yBAAyB;IACxC,4DAA4D;IAC5D,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,oDAAoD;IACpD,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE,iBAAiB,KAAK,IAAI,CAAC;CAC7C;AAmBD;;;;;;GAMG;AACH,wBAAgB,wBAAwB,CAAC,IAAI,GAAE,yBAA8B,GAAG,WAAW,CAwE1F;AAED,gEAAgE;AAChE,wBAAsB,iBAAiB,CAAC,MAAM,SAAW,GAAG,OAAO,CAAC,OAAO,CAAC,CAM3E"}
|
package/dist/index.js
CHANGED
|
@@ -38,6 +38,8 @@ function resolveModel(raw) {
|
|
|
38
38
|
export function createSubprocessProvider(opts = {}) {
|
|
39
39
|
const binary = opts.binary ?? 'claude';
|
|
40
40
|
const cwd = opts.cwd;
|
|
41
|
+
const timeoutMs = opts.timeoutMs ?? 60_000;
|
|
42
|
+
const onError = opts.onError;
|
|
41
43
|
return {
|
|
42
44
|
call(prompt, callOpts = {}) {
|
|
43
45
|
return new Promise((resolve) => {
|
|
@@ -46,6 +48,9 @@ export function createSubprocessProvider(opts = {}) {
|
|
|
46
48
|
if (callOpts.system) {
|
|
47
49
|
args.push('--system-prompt', String(callOpts.system));
|
|
48
50
|
}
|
|
51
|
+
// NOTE: callOpts.maxTokens has no `claude --print` equivalent — the CLI
|
|
52
|
+
// exposes no max-tokens flag (verified against `claude --help`), so it is
|
|
53
|
+
// intentionally unused here rather than silently mis-applied.
|
|
49
54
|
const proc = spawn(binary, args, {
|
|
50
55
|
env: { ...process.env, CLAUDECODE: '', CLAUDE_CODE_ENTRYPOINT: '' },
|
|
51
56
|
cwd,
|
|
@@ -53,7 +58,29 @@ export function createSubprocessProvider(opts = {}) {
|
|
|
53
58
|
});
|
|
54
59
|
const out = [];
|
|
55
60
|
const err = [];
|
|
61
|
+
let settled = false;
|
|
62
|
+
let timer = null;
|
|
63
|
+
const finish = (value, failure) => {
|
|
64
|
+
if (settled)
|
|
65
|
+
return;
|
|
66
|
+
settled = true;
|
|
67
|
+
if (timer)
|
|
68
|
+
clearTimeout(timer);
|
|
69
|
+
out.length = 0;
|
|
70
|
+
err.length = 0;
|
|
71
|
+
if (failure)
|
|
72
|
+
onError?.(failure);
|
|
73
|
+
resolve(value);
|
|
74
|
+
};
|
|
75
|
+
if (timeoutMs > 0) {
|
|
76
|
+
timer = setTimeout(() => {
|
|
77
|
+
proc.kill('SIGTERM');
|
|
78
|
+
finish(null, { reason: 'timeout' });
|
|
79
|
+
}, timeoutMs);
|
|
80
|
+
}
|
|
56
81
|
if (proc.stdin) {
|
|
82
|
+
// Swallow EPIPE when the proc exits before we finish writing.
|
|
83
|
+
proc.stdin.on('error', () => { });
|
|
57
84
|
proc.stdin.write(prompt);
|
|
58
85
|
proc.stdin.end();
|
|
59
86
|
}
|
|
@@ -61,12 +88,19 @@ export function createSubprocessProvider(opts = {}) {
|
|
|
61
88
|
proc.stdout.on('data', (c) => out.push(c));
|
|
62
89
|
if (proc.stderr)
|
|
63
90
|
proc.stderr.on('data', (c) => err.push(c));
|
|
64
|
-
proc.on('error', () => {
|
|
91
|
+
proc.on('error', () => finish(null, { reason: 'spawn' }));
|
|
65
92
|
proc.on('close', (code) => {
|
|
66
93
|
const text = Buffer.concat(out).toString().trim();
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
94
|
+
const stderr = Buffer.concat(err).toString().trim();
|
|
95
|
+
if (code === 0 && text) {
|
|
96
|
+
finish(text);
|
|
97
|
+
}
|
|
98
|
+
else if (code === 0) {
|
|
99
|
+
finish(null, { reason: 'empty', code });
|
|
100
|
+
}
|
|
101
|
+
else {
|
|
102
|
+
finish(null, { reason: 'exit', code, stderr: stderr.slice(0, 500) });
|
|
103
|
+
}
|
|
70
104
|
});
|
|
71
105
|
});
|
|
72
106
|
},
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kybernesis/brain-llm-claude",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "Claude subprocess LLM provider for brain-core",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "David Cruwys (AppyDave)",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"README.md"
|
|
28
28
|
],
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@kybernesis/brain-core": "0.8.
|
|
30
|
+
"@kybernesis/brain-core": "0.8.3"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@kybernesis/brain-core": "0.8.
|
|
33
|
+
"@kybernesis/brain-core": "0.8.3"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|