@braidhq/agent-claude-code 0.1.0 → 0.2.1
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 +41 -0
- package/dist/ClaudeCodeAgentBinding.d.ts +3 -2
- package/dist/ClaudeCodeAgentBinding.d.ts.map +1 -1
- package/dist/ClaudeCodeAgentBinding.js +24 -10
- package/dist/ClaudeCodeAgentBinding.js.map +1 -1
- package/dist/ClaudeCodeAgentPlugin.d.ts +6 -6
- package/dist/ClaudeCodeAgentPlugin.js +6 -6
- package/dist/claudeMcpConfig.d.ts +22 -0
- package/dist/claudeMcpConfig.d.ts.map +1 -0
- package/dist/claudeMcpConfig.js +51 -0
- package/dist/claudeMcpConfig.js.map +1 -0
- package/dist/claudeStream.d.ts +15 -0
- package/dist/claudeStream.d.ts.map +1 -0
- package/dist/claudeStream.js +125 -0
- package/dist/claudeStream.js.map +1 -0
- package/package.json +26 -26
- package/dist/.tsbuildinfo +0 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 mroops0111
|
|
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,41 @@
|
|
|
1
|
+
# @braidhq/agent-claude-code
|
|
2
|
+
|
|
3
|
+
Braid runs each skill by spawning a coding agent as a subprocess. `@braidhq/agent-claude-code` is the default agent. It drives the `claude` CLI, turning a SKILL.md prompt into a stream of graph events, and it keeps everything Claude-specific out of the rest of Braid.
|
|
4
|
+
|
|
5
|
+
## Role
|
|
6
|
+
|
|
7
|
+
The package is the Claude Code adapter behind core's `AgentBinding` port. Core knows how to orchestrate an agent, this package knows how to talk to one.
|
|
8
|
+
|
|
9
|
+
- **The Binding**: `resolveSpawn` builds the `claude` command line and environment for a skill run, and `parseLine` maps each output line back into a `SkillEvent`.
|
|
10
|
+
- **The Plugin**: An `AgentPlugin` that registers the binding under the `claude-code` kind, so the composition root selects it by config rather than by import.
|
|
11
|
+
- **The Claude Specifics**: The `--mcp-config` file shape and the `stream-json` envelope parsing, the two things that would differ for any other agent.
|
|
12
|
+
|
|
13
|
+
## Structure
|
|
14
|
+
|
|
15
|
+
The package is flat. Every module sits under `src/` and re-exports through `index.ts`.
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
src/
|
|
19
|
+
├── ClaudeCodeAgentPlugin.ts the AgentPlugin, registered by kind
|
|
20
|
+
├── ClaudeCodeAgentBinding.ts resolveSpawn and parseLine
|
|
21
|
+
├── claudeMcpConfig.ts the `--mcp-config` file claude reads
|
|
22
|
+
├── claudeStream.ts one stream-json line into SkillEvents
|
|
23
|
+
└── index.ts
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
- **ClaudeCodeAgentPlugin**: The thin `defineAgentPlugin` wrapper. Its `createBinding` hands back one `ClaudeCodeAgentBinding` per server.
|
|
27
|
+
- **ClaudeCodeAgentBinding**: Assembles the spawn command, prompt or resume, model, effort, MCP config, and add-dirs, then threads `parseLine` into the runner's drain loop.
|
|
28
|
+
- **claudeMcpConfig**: Builds and writes the JSON `claude --mcp-config` expects, translating Braid's MCP server config and resolving `${VAR}` references from the environment.
|
|
29
|
+
- **claudeStream**: A pure parser from one `claude` stream-json line to zero or more `SkillEvent`s.
|
|
30
|
+
|
|
31
|
+
## Boundaries
|
|
32
|
+
|
|
33
|
+
- **Claude Lives Here**: Every Claude-specific detail, the CLI flags, the MCP config shape, the stream-json envelopes, is confined to this package. Core and server stay agent-agnostic.
|
|
34
|
+
- **One Port**: The only contract with Braid is core's `AgentBinding` and `AgentPlugin`. A different agent, such as anthropic-api, cursor, or codex, is a sibling package implementing the same port.
|
|
35
|
+
- **Wiring Elsewhere**: The composition root registers the plugin and picks the active kind. Nothing here is imported directly by server code.
|
|
36
|
+
- **Pure Parsing**: `parseLine` does no I/O and reads no clock, the timestamp is passed in, so a line maps to events deterministically under test.
|
|
37
|
+
|
|
38
|
+
## Dependencies
|
|
39
|
+
|
|
40
|
+
- **Depends On**: `@braidhq/core` for the port types, `@braidhq/schema` for `SkillEvent` and the config shapes, and `@braidhq/sdk` for `defineAgentPlugin`.
|
|
41
|
+
- **Consumed By**: `server`, at its composition root, as the default agent bundle.
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import type { AgentBinding, AgentSpawnInput, SpawnInvocation } from '@braidhq/core';
|
|
2
|
-
import type { AgentBindingDescriptor } from '@braidhq/schema';
|
|
2
|
+
import type { AgentBindingDescriptor, SkillEvent } from '@braidhq/schema';
|
|
3
3
|
export declare class ClaudeCodeAgentBinding implements AgentBinding {
|
|
4
4
|
readonly descriptor: AgentBindingDescriptor;
|
|
5
5
|
constructor(descriptor: AgentBindingDescriptor);
|
|
6
|
-
resolveSpawn(input: AgentSpawnInput): SpawnInvocation
|
|
6
|
+
resolveSpawn(input: AgentSpawnInput): Promise<SpawnInvocation>;
|
|
7
|
+
parseLine: (line: string, now: string) => SkillEvent[];
|
|
7
8
|
}
|
|
8
9
|
//# sourceMappingURL=ClaudeCodeAgentBinding.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClaudeCodeAgentBinding.d.ts","sourceRoot":"","sources":["../src/ClaudeCodeAgentBinding.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,eAAe,CAAA;AACnF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAA;
|
|
1
|
+
{"version":3,"file":"ClaudeCodeAgentBinding.d.ts","sourceRoot":"","sources":["../src/ClaudeCodeAgentBinding.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,eAAe,CAAA;AACnF,OAAO,KAAK,EAAE,sBAAsB,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA;AAKzE,qBAAa,sBAAuB,YAAW,YAAY;IAC7C,QAAQ,CAAC,UAAU,EAAE,sBAAsB;gBAAlC,UAAU,EAAE,sBAAsB;IAMjD,YAAY,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAyDpE,SAAS,GAAI,MAAM,MAAM,EAAE,KAAK,MAAM,KAAG,UAAU,EAAE,CAA8B;CACpF"}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import process from 'node:process';
|
|
2
|
+
import { writeClaudeMcpConfig } from './claudeMcpConfig.js';
|
|
3
|
+
import { parseClaudeLine } from './claudeStream.js';
|
|
2
4
|
export class ClaudeCodeAgentBinding {
|
|
3
5
|
descriptor;
|
|
4
6
|
constructor(descriptor) {
|
|
@@ -7,12 +9,20 @@ export class ClaudeCodeAgentBinding {
|
|
|
7
9
|
throw new Error(`ClaudeCodeAgentBinding expects kind="claude-code", got "${descriptor.kind}"`);
|
|
8
10
|
}
|
|
9
11
|
}
|
|
10
|
-
resolveSpawn(input) {
|
|
11
|
-
//
|
|
12
|
-
//
|
|
12
|
+
async resolveSpawn(input) {
|
|
13
|
+
// On resume the prompt is just the follow-up text,
|
|
14
|
+
// since claude still holds the conversation and slash command from earlier.
|
|
15
|
+
// A fresh run invokes the slash command, and for a skill with an EXTEND.md,
|
|
16
|
+
// point claude at that file rather than inline it so its *.md links resolve.
|
|
17
|
+
// The skill id is already `namespace:verb`,
|
|
18
|
+
// claude's plugin-skill invocation once `--plugin-dir` loads the bundles.
|
|
19
|
+
const slashCommand = `/${input.skillId} ${input.args}`;
|
|
20
|
+
const extensionPath = input.manifest.extensionPath;
|
|
13
21
|
const promptArg = input.resumeSessionId
|
|
14
22
|
? input.args
|
|
15
|
-
:
|
|
23
|
+
: extensionPath
|
|
24
|
+
? `${slashCommand}\n\nThis workspace extends this skill. Read and follow ${extensionPath} before you begin.`
|
|
25
|
+
: slashCommand;
|
|
16
26
|
const baseArgs = [
|
|
17
27
|
'-p',
|
|
18
28
|
promptArg,
|
|
@@ -29,8 +39,13 @@ export class ClaudeCodeAgentBinding {
|
|
|
29
39
|
if (this.descriptor.effort) {
|
|
30
40
|
baseArgs.push('--effort', this.descriptor.effort);
|
|
31
41
|
}
|
|
32
|
-
if (input.
|
|
33
|
-
|
|
42
|
+
if (input.mcpServers.length > 0) {
|
|
43
|
+
const mcpConfigFile = await writeClaudeMcpConfig(input.sessionDir, input.workspace.id, input.mcpServers);
|
|
44
|
+
baseArgs.push('--mcp-config', mcpConfigFile);
|
|
45
|
+
}
|
|
46
|
+
// Load each namespace's skill bundle, so `/namespace:verb` resolves.
|
|
47
|
+
for (const bundleDir of input.skillBundleDirs) {
|
|
48
|
+
baseArgs.push('--plugin-dir', bundleDir);
|
|
34
49
|
}
|
|
35
50
|
for (const dir of input.workspace.resolveAddDirs()) {
|
|
36
51
|
baseArgs.push('--add-dir', dir);
|
|
@@ -45,11 +60,10 @@ export class ClaudeCodeAgentBinding {
|
|
|
45
60
|
BRAID_WORKSPACE_ID: input.workspace.id,
|
|
46
61
|
BRAID_API_URL: input.apiUrl,
|
|
47
62
|
};
|
|
48
|
-
|
|
49
|
-
? { bin: 'claude', args: baseArgs, env, mcpConfigFile: input.mcpConfigFile }
|
|
50
|
-
: { bin: 'claude', args: baseArgs, env };
|
|
51
|
-
return invocation;
|
|
63
|
+
return { bin: 'claude', args: baseArgs, env };
|
|
52
64
|
}
|
|
65
|
+
// Claude streams newline-delimited JSON, so the runner hands each line here.
|
|
66
|
+
parseLine = (line, now) => parseClaudeLine(line, now);
|
|
53
67
|
}
|
|
54
68
|
function filterEnv(source) {
|
|
55
69
|
const result = {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClaudeCodeAgentBinding.js","sourceRoot":"","sources":["../src/ClaudeCodeAgentBinding.ts"],"names":[],"mappings":"AAEA,OAAO,OAAO,MAAM,cAAc,CAAA;
|
|
1
|
+
{"version":3,"file":"ClaudeCodeAgentBinding.js","sourceRoot":"","sources":["../src/ClaudeCodeAgentBinding.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,12 +2,12 @@ import type { AgentPlugin } from '@braidhq/core';
|
|
|
2
2
|
import type { AgentKind } from '@braidhq/schema';
|
|
3
3
|
declare const CLAUDE_CODE_KIND: AgentKind;
|
|
4
4
|
/**
|
|
5
|
-
* AgentPlugin wrapper for the Claude Code subprocess binding.
|
|
6
|
-
* root registers
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* under a different
|
|
5
|
+
* AgentPlugin wrapper for the Claude Code subprocess binding.
|
|
6
|
+
* The composition root registers it against the PluginRegistry,
|
|
7
|
+
* and composeFsApp builds one server-wide binding for the active agent,
|
|
8
|
+
* rather than importing ClaudeCodeAgentBinding directly.
|
|
9
|
+
* Other agents, such as anthropic-api, cursor, ollama, or codex,
|
|
10
|
+
* register the same way under a different kind.
|
|
11
11
|
*/
|
|
12
12
|
export declare const claudeCodeAgentPlugin: AgentPlugin;
|
|
13
13
|
export { CLAUDE_CODE_KIND };
|
|
@@ -2,12 +2,12 @@ import { defineAgentPlugin } from '@braidhq/sdk';
|
|
|
2
2
|
import { ClaudeCodeAgentBinding } from './ClaudeCodeAgentBinding.js';
|
|
3
3
|
const CLAUDE_CODE_KIND = 'claude-code';
|
|
4
4
|
/**
|
|
5
|
-
* AgentPlugin wrapper for the Claude Code subprocess binding.
|
|
6
|
-
* root registers
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* under a different
|
|
5
|
+
* AgentPlugin wrapper for the Claude Code subprocess binding.
|
|
6
|
+
* The composition root registers it against the PluginRegistry,
|
|
7
|
+
* and composeFsApp builds one server-wide binding for the active agent,
|
|
8
|
+
* rather than importing ClaudeCodeAgentBinding directly.
|
|
9
|
+
* Other agents, such as anthropic-api, cursor, ollama, or codex,
|
|
10
|
+
* register the same way under a different kind.
|
|
11
11
|
*/
|
|
12
12
|
export const claudeCodeAgentPlugin = defineAgentPlugin({
|
|
13
13
|
kind: CLAUDE_CODE_KIND,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { McpServerConfig } from '@braidhq/schema';
|
|
2
|
+
interface McpStreamableHttpEntry {
|
|
3
|
+
readonly type: 'http';
|
|
4
|
+
readonly url: string;
|
|
5
|
+
readonly headers?: Record<string, string>;
|
|
6
|
+
}
|
|
7
|
+
interface McpStdioEntry {
|
|
8
|
+
readonly type: 'stdio';
|
|
9
|
+
readonly command: string;
|
|
10
|
+
readonly args?: readonly string[];
|
|
11
|
+
readonly env?: Record<string, string>;
|
|
12
|
+
}
|
|
13
|
+
type McpServerEntry = McpStreamableHttpEntry | McpStdioEntry;
|
|
14
|
+
export interface ClaudeMcpConfig {
|
|
15
|
+
readonly mcpServers: Readonly<Record<string, McpServerEntry>>;
|
|
16
|
+
}
|
|
17
|
+
/** Later entries win on id, so a workspace server overrides a built-in of the same id. */
|
|
18
|
+
export declare function buildClaudeMcpConfig(servers: readonly McpServerConfig[]): ClaudeMcpConfig;
|
|
19
|
+
/** Write the config claude reads and return its path. */
|
|
20
|
+
export declare function writeClaudeMcpConfig(sessionDir: string, workspaceId: string, servers: readonly McpServerConfig[]): Promise<string>;
|
|
21
|
+
export {};
|
|
22
|
+
//# sourceMappingURL=claudeMcpConfig.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claudeMcpConfig.d.ts","sourceRoot":"","sources":["../src/claudeMcpConfig.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAUtD,UAAU,sBAAsB;IAC9B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;IACrB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;CAC1C;AAED,UAAU,aAAa;IACrB,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAA;IACtB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,IAAI,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;IACjC,QAAQ,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;CACtC;AAED,KAAK,cAAc,GAAG,sBAAsB,GAAG,aAAa,CAAA;AAE5D,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,UAAU,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC,CAAA;CAC9D;AAED,0FAA0F;AAC1F,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,SAAS,eAAe,EAAE,GAAG,eAAe,CAKzF;AAED,yDAAyD;AACzD,wBAAsB,oBAAoB,CACxC,UAAU,EAAE,MAAM,EAClB,WAAW,EAAE,MAAM,EACnB,OAAO,EAAE,SAAS,eAAe,EAAE,GAClC,OAAO,CAAC,MAAM,CAAC,CAMjB"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { mkdir, writeFile } from 'node:fs/promises';
|
|
2
|
+
import { dirname, join } from 'node:path';
|
|
3
|
+
import process from 'node:process';
|
|
4
|
+
/** Later entries win on id, so a workspace server overrides a built-in of the same id. */
|
|
5
|
+
export function buildClaudeMcpConfig(servers) {
|
|
6
|
+
const entries = {};
|
|
7
|
+
for (const server of servers)
|
|
8
|
+
entries[server.id] = toEntry(server);
|
|
9
|
+
return { mcpServers: entries };
|
|
10
|
+
}
|
|
11
|
+
/** Write the config claude reads and return its path. */
|
|
12
|
+
export async function writeClaudeMcpConfig(sessionDir, workspaceId, servers) {
|
|
13
|
+
const config = buildClaudeMcpConfig(servers);
|
|
14
|
+
const targetPath = join(sessionDir, `.braid-mcp-${workspaceId}.json`);
|
|
15
|
+
await mkdir(dirname(targetPath), { recursive: true });
|
|
16
|
+
await writeFile(targetPath, `${JSON.stringify(config, null, 2)}\n`, 'utf-8');
|
|
17
|
+
return targetPath;
|
|
18
|
+
}
|
|
19
|
+
function toEntry(server) {
|
|
20
|
+
if (server.transport === 'stdio') {
|
|
21
|
+
return {
|
|
22
|
+
type: 'stdio',
|
|
23
|
+
command: server.command,
|
|
24
|
+
...(server.args ? { args: [...server.args] } : {}),
|
|
25
|
+
...(server.env ? { env: resolveEnv(server.env) } : {}),
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
return {
|
|
29
|
+
type: 'http',
|
|
30
|
+
url: server.url,
|
|
31
|
+
...(server.headers ? { headers: resolveEnv(server.headers) } : {}),
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
// Replace `${VAR}` references in header and env values with the parent env var.
|
|
35
|
+
// Throw when a referenced var is missing,
|
|
36
|
+
// so the user gets a clear error at config-write time,
|
|
37
|
+
// not a confusing 401 from the MCP server or a misconfigured subprocess.
|
|
38
|
+
function resolveEnv(values) {
|
|
39
|
+
const out = {};
|
|
40
|
+
for (const [name, value] of Object.entries(values)) {
|
|
41
|
+
out[name] = value.replace(/\$\{([A-Z_][A-Z0-9_]*)\}/g, (_match, varName) => {
|
|
42
|
+
const resolved = process.env[varName];
|
|
43
|
+
if (resolved === undefined) {
|
|
44
|
+
throw new Error(`MCP entry "${name}": environment variable "${varName}" is not set`);
|
|
45
|
+
}
|
|
46
|
+
return resolved;
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
return out;
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=claudeMcpConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claudeMcpConfig.js","sourceRoot":"","sources":["../src/claudeMcpConfig.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AACnD,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AACzC,OAAO,OAAO,MAAM,cAAc,CAAA;AA0BlC,0FAA0F;AAC1F,MAAM,UAAU,oBAAoB,CAAC,OAAmC;IACtE,MAAM,OAAO,GAAmC,EAAE,CAAA;IAClD,KAAK,MAAM,MAAM,IAAI,OAAO;QAC1B,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;IACtC,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,CAAA;AAChC,CAAC;AAED,yDAAyD;AACzD,MAAM,CAAC,KAAK,UAAU,oBAAoB,CACxC,UAAkB,EAClB,WAAmB,EACnB,OAAmC;IAEnC,MAAM,MAAM,GAAG,oBAAoB,CAAC,OAAO,CAAC,CAAA;IAC5C,MAAM,UAAU,GAAG,IAAI,CAAC,UAAU,EAAE,cAAc,WAAW,OAAO,CAAC,CAAA;IACrE,MAAM,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAA;IACrD,MAAM,SAAS,CAAC,UAAU,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,OAAO,CAAC,CAAA;IAC5E,OAAO,UAAU,CAAA;AACnB,CAAC;AAED,SAAS,OAAO,CAAC,MAAuB;IACtC,IAAI,MAAM,CAAC,SAAS,KAAK,OAAO,EAAE,CAAC;QACjC,OAAO;YACL,IAAI,EAAE,OAAO;YACb,OAAO,EAAE,MAAM,CAAC,OAAO;YACvB,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,GAAG,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;YAClD,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;SACvD,CAAA;IACH,CAAC;IACD,OAAO;QACL,IAAI,EAAE,MAAM;QACZ,GAAG,EAAE,MAAM,CAAC,GAAG;QACf,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;KACnE,CAAA;AACH,CAAC;AAED,gFAAgF;AAChF,0CAA0C;AAC1C,uDAAuD;AACvD,yEAAyE;AACzE,SAAS,UAAU,CAAC,MAA8B;IAChD,MAAM,GAAG,GAA2B,EAAE,CAAA;IACtC,KAAK,MAAM,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC;QACnD,GAAG,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC,2BAA2B,EAAE,CAAC,MAAM,EAAE,OAAe,EAAE,EAAE;YACjF,MAAM,QAAQ,GAAG,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;YACrC,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;gBAC3B,MAAM,IAAI,KAAK,CAAC,cAAc,IAAI,4BAA4B,OAAO,cAAc,CAAC,CAAA;YACtF,CAAC;YACD,OAAO,QAAQ,CAAA;QACjB,CAAC,CAAC,CAAA;IACJ,CAAC;IACD,OAAO,GAAG,CAAA;AACZ,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { SkillEvent } from '@braidhq/schema';
|
|
2
|
+
/**
|
|
3
|
+
* Map one `claude --output-format stream-json` line into zero or more
|
|
4
|
+
* SkillEvents. Claude emits these envelope shapes:
|
|
5
|
+
* - `system` subtype `init`: session metadata, only `session_id` is kept.
|
|
6
|
+
* - `assistant`: content parts, `text`, `tool_use`, and `thinking` surface.
|
|
7
|
+
* - `user`: echoes a `tool_result`, only its `is_error` flag surfaces.
|
|
8
|
+
* - `result`: the outcome, `is_error` picks a message or error, plus usage.
|
|
9
|
+
* - `rate_limit_event`: surfaced only when the run is actually throttled.
|
|
10
|
+
*
|
|
11
|
+
* Legacy flat shapes are kept for tests and older tools,
|
|
12
|
+
* `text`, `tool_use`, `artifact-written`, and `error`.
|
|
13
|
+
*/
|
|
14
|
+
export declare function parseClaudeLine(line: string, now: string): SkillEvent[];
|
|
15
|
+
//# sourceMappingURL=claudeStream.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claudeStream.d.ts","sourceRoot":"","sources":["../src/claudeStream.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA;AAMjD;;;;;;;;;;;GAWG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,UAAU,EAAE,CAmHvE"}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { SkillEvent as SkillEventSchema } from '@braidhq/schema';
|
|
2
|
+
/**
|
|
3
|
+
* Map one `claude --output-format stream-json` line into zero or more
|
|
4
|
+
* SkillEvents. Claude emits these envelope shapes:
|
|
5
|
+
* - `system` subtype `init`: session metadata, only `session_id` is kept.
|
|
6
|
+
* - `assistant`: content parts, `text`, `tool_use`, and `thinking` surface.
|
|
7
|
+
* - `user`: echoes a `tool_result`, only its `is_error` flag surfaces.
|
|
8
|
+
* - `result`: the outcome, `is_error` picks a message or error, plus usage.
|
|
9
|
+
* - `rate_limit_event`: surfaced only when the run is actually throttled.
|
|
10
|
+
*
|
|
11
|
+
* Legacy flat shapes are kept for tests and older tools,
|
|
12
|
+
* `text`, `tool_use`, `artifact-written`, and `error`.
|
|
13
|
+
*/
|
|
14
|
+
export function parseClaudeLine(line, now) {
|
|
15
|
+
const trimmed = line.trim();
|
|
16
|
+
if (trimmed.length === 0)
|
|
17
|
+
return [];
|
|
18
|
+
let raw;
|
|
19
|
+
try {
|
|
20
|
+
raw = JSON.parse(trimmed);
|
|
21
|
+
}
|
|
22
|
+
catch {
|
|
23
|
+
return [];
|
|
24
|
+
}
|
|
25
|
+
const out = [];
|
|
26
|
+
if (raw.type === 'system' && raw.subtype === 'init' && typeof raw.session_id === 'string') {
|
|
27
|
+
out.push(SkillEventSchema.parse({ type: 'session-started', sessionId: raw.session_id }));
|
|
28
|
+
return out;
|
|
29
|
+
}
|
|
30
|
+
if (raw.type === 'rate_limit_event') {
|
|
31
|
+
const info = raw.rate_limit_info;
|
|
32
|
+
// Emitted on every run, so only surface it when a limit actually bites.
|
|
33
|
+
if (info && typeof info.status === 'string' && info.status !== 'allowed') {
|
|
34
|
+
out.push(SkillEventSchema.parse({
|
|
35
|
+
type: 'rate-limit',
|
|
36
|
+
status: info.status,
|
|
37
|
+
...(typeof info.resetsAt === 'number' ? { resetsAt: info.resetsAt } : {}),
|
|
38
|
+
}));
|
|
39
|
+
}
|
|
40
|
+
return out;
|
|
41
|
+
}
|
|
42
|
+
if (raw.type === 'assistant') {
|
|
43
|
+
for (const part of readContent(raw)) {
|
|
44
|
+
if (part?.type === 'text' && typeof part.text === 'string' && part.text.length > 0) {
|
|
45
|
+
out.push(SkillEventSchema.parse({ type: 'message', text: part.text }));
|
|
46
|
+
}
|
|
47
|
+
else if (part?.type === 'tool_use' && typeof part.name === 'string') {
|
|
48
|
+
const event = {
|
|
49
|
+
type: 'tool-call',
|
|
50
|
+
tool: part.name,
|
|
51
|
+
args: part.input ?? null,
|
|
52
|
+
};
|
|
53
|
+
if (typeof part.id === 'string' && part.id.length > 0)
|
|
54
|
+
event.toolCallId = part.id;
|
|
55
|
+
out.push(SkillEventSchema.parse(event));
|
|
56
|
+
}
|
|
57
|
+
else if (part?.type === 'thinking' && typeof part.thinking === 'string' && part.thinking.length > 0) {
|
|
58
|
+
out.push(SkillEventSchema.parse({ type: 'thinking', text: part.thinking }));
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
return out;
|
|
62
|
+
}
|
|
63
|
+
if (raw.type === 'user') {
|
|
64
|
+
for (const part of readContent(raw)) {
|
|
65
|
+
if (part?.type === 'tool_result' && typeof part.tool_use_id === 'string') {
|
|
66
|
+
const output = typeof part.content === 'string'
|
|
67
|
+
? part.content
|
|
68
|
+
: JSON.stringify(part.content ?? '');
|
|
69
|
+
out.push(SkillEventSchema.parse({
|
|
70
|
+
type: 'tool-result',
|
|
71
|
+
toolCallId: part.tool_use_id,
|
|
72
|
+
output,
|
|
73
|
+
isError: part.is_error === true,
|
|
74
|
+
}));
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
return out;
|
|
78
|
+
}
|
|
79
|
+
if (raw.type === 'result') {
|
|
80
|
+
const isError = raw.is_error === true;
|
|
81
|
+
const text = typeof raw.result === 'string' ? raw.result : '';
|
|
82
|
+
if (isError)
|
|
83
|
+
out.push(SkillEventSchema.parse({ type: 'error', message: text || 'skill run failed', at: now }));
|
|
84
|
+
else if (text.length > 0)
|
|
85
|
+
out.push(SkillEventSchema.parse({ type: 'message', text }));
|
|
86
|
+
const usage = raw.usage;
|
|
87
|
+
const usageEvent = { type: 'usage' };
|
|
88
|
+
if (typeof raw.total_cost_usd === 'number')
|
|
89
|
+
usageEvent.costUsd = raw.total_cost_usd;
|
|
90
|
+
if (typeof raw.duration_ms === 'number')
|
|
91
|
+
usageEvent.durationMs = raw.duration_ms;
|
|
92
|
+
if (typeof raw.num_turns === 'number')
|
|
93
|
+
usageEvent.turns = raw.num_turns;
|
|
94
|
+
if (usage && typeof usage.input_tokens === 'number')
|
|
95
|
+
usageEvent.inputTokens = usage.input_tokens;
|
|
96
|
+
if (usage && typeof usage.output_tokens === 'number')
|
|
97
|
+
usageEvent.outputTokens = usage.output_tokens;
|
|
98
|
+
// Only emit when the envelope actually carried a metric.
|
|
99
|
+
if (Object.keys(usageEvent).length > 1)
|
|
100
|
+
out.push(SkillEventSchema.parse(usageEvent));
|
|
101
|
+
return out;
|
|
102
|
+
}
|
|
103
|
+
if (raw.type === 'text' && typeof raw.text === 'string')
|
|
104
|
+
return [SkillEventSchema.parse({ type: 'message', text: raw.text })];
|
|
105
|
+
if (raw.type === 'tool_use' && typeof raw.name === 'string')
|
|
106
|
+
return [SkillEventSchema.parse({ type: 'tool-call', tool: raw.name, args: raw.input ?? null })];
|
|
107
|
+
if (raw.type === 'artifact-written' && typeof raw.artifactKind === 'string') {
|
|
108
|
+
return [SkillEventSchema.parse({
|
|
109
|
+
type: 'artifact-written',
|
|
110
|
+
artifactKind: raw.artifactKind,
|
|
111
|
+
artifactId: raw.artifactId,
|
|
112
|
+
path: raw.path,
|
|
113
|
+
})];
|
|
114
|
+
}
|
|
115
|
+
if (raw.type === 'error' && typeof raw.message === 'string')
|
|
116
|
+
return [SkillEventSchema.parse({ type: 'error', message: raw.message, at: now })];
|
|
117
|
+
return out;
|
|
118
|
+
}
|
|
119
|
+
function readContent(raw) {
|
|
120
|
+
const message = raw.message;
|
|
121
|
+
if (!message || !Array.isArray(message.content))
|
|
122
|
+
return [];
|
|
123
|
+
return message.content;
|
|
124
|
+
}
|
|
125
|
+
//# sourceMappingURL=claudeStream.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claudeStream.js","sourceRoot":"","sources":["../src/claudeStream.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@braidhq/agent-claude-code",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1
|
|
4
|
+
"version": "0.2.1",
|
|
5
5
|
"description": "Claude Code agent plugin for Braid. Spawns the `claude` CLI to run SKILL.md prompts; the default LLM backend.",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/mroops0111/braid.git",
|
|
10
|
+
"directory": "packages/agent-claude-code"
|
|
11
|
+
},
|
|
7
12
|
"exports": {
|
|
8
|
-
".":
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"default": "./dist/index.js"
|
|
16
|
+
}
|
|
9
17
|
},
|
|
10
|
-
"main": "./
|
|
11
|
-
"types": "./
|
|
18
|
+
"main": "./dist/index.js",
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
12
20
|
"files": [
|
|
13
21
|
"README.md",
|
|
14
22
|
"dist"
|
|
15
23
|
],
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "tsc -p tsconfig.json",
|
|
18
|
-
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json",
|
|
19
|
-
"test": "vitest run",
|
|
20
|
-
"clean": "rm -rf dist .turbo *.tsbuildinfo coverage"
|
|
21
|
-
},
|
|
22
24
|
"dependencies": {
|
|
23
|
-
"
|
|
24
|
-
"@braidhq/
|
|
25
|
-
"@braidhq/sdk": "
|
|
26
|
-
"
|
|
25
|
+
"zod": "^4.2.1",
|
|
26
|
+
"@braidhq/core": "0.2.1",
|
|
27
|
+
"@braidhq/sdk": "0.2.1",
|
|
28
|
+
"@braidhq/schema": "0.2.1"
|
|
27
29
|
},
|
|
28
30
|
"devDependencies": {
|
|
29
|
-
"@braidhq/test-utils": "workspace:*",
|
|
30
31
|
"typescript": "^6.0.3",
|
|
31
|
-
"vitest": "^4.1.
|
|
32
|
+
"vitest": "^4.1.10",
|
|
33
|
+
"@braidhq/test-utils": "0.2.1"
|
|
32
34
|
},
|
|
33
35
|
"publishConfig": {
|
|
34
|
-
"access": "public"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
}
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "tsc -p tsconfig.json",
|
|
40
|
+
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json",
|
|
41
|
+
"test": "vitest run",
|
|
42
|
+
"clean": "rm -rf dist .turbo *.tsbuildinfo coverage"
|
|
43
43
|
}
|
|
44
|
-
}
|
|
44
|
+
}
|
package/dist/.tsbuildinfo
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/typealiases.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/util.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/index.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/zoderror.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/locales/en.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/errors.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/parseutil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/enumutil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/errorutil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/partialutil.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/standard-schema.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/types.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/external.d.cts","../../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/index.d.cts","../../schema/src/common.ts","../../schema/src/agent.ts","../../schema/src/batch.ts","../../schema/src/drift.ts","../../schema/src/ontology.ts","../../schema/src/model.ts","../../schema/src/proposal.ts","../../schema/src/clarify.ts","../../schema/src/decision.ts","../../schema/src/validation.ts","../../schema/src/errors.ts","../../schema/src/history.ts","../../schema/src/mcp.ts","../../schema/src/source.ts","../../schema/src/plugin.ts","../../schema/src/proposal-preview.ts","../../schema/src/qa.ts","../../schema/src/storage.ts","../../schema/src/workspace.ts","../../schema/src/skill.ts","../../schema/src/source-unit-state.ts","../../schema/src/user.ts","../../schema/src/view.ts","../../schema/src/index.ts","../../core/src/domain/errors.ts","../../core/src/domain/workspace/workspace.ts","../../core/src/domain/batch/batchplan.ts","../../core/src/domain/batch/batchplanrepository.ts","../../core/src/domain/clock.ts","../../core/src/domain/events/workspaceevent.ts","../../core/src/domain/hitl/clarifyticket.ts","../../core/src/domain/hitl/clarifyticketrepository.ts","../../core/src/domain/hitl/proposal.ts","../../core/src/domain/hitl/proposalrepository.ts","../../core/src/domain/plugin/plugin.ts","../../core/src/domain/plugin/ontology.ts","../../core/src/domain/skill/skillmanifest.ts","../../core/src/domain/agent/agentbinding.ts","../../core/src/domain/plugin/agentplugin.ts","../../core/src/domain/plugin/generator.ts","../../core/src/domain/plugin/sourceloader.ts","../../core/src/domain/model/modelrepository.ts","../../core/src/domain/plugin/storageplugin.ts","../../core/src/domain/plugin/pluginregistry.ts","../../core/src/domain/skill/skillrunner.ts","../../core/src/domain/history/workspacehistory.ts","../../core/src/domain/skill/runrepository.ts","../../core/src/domain/users/userdirectory.ts","../../core/src/application/perworkspacelock.ts","../../core/src/domain/model/graphserializer.ts","../../core/src/application/workspacebootstrap.ts","../../core/src/application/workspaceeventbus.ts","../../core/src/domain/workspace/workspacerepository.ts","../../core/src/application/workspaceservice.ts","../../core/src/application/enrichcommitauthor.ts","../../core/src/application/historyservice.ts","../../core/src/domain/hitl/decisionrepository.ts","../../core/src/domain/ids.ts","../../core/src/domain/model/model.ts","../../core/src/infrastructure/validation/evidencevalidator.ts","../../core/src/infrastructure/validation/orphanedgevalidator.ts","../../core/src/application/validationservice.ts","../../core/src/application/hitlservice.ts","../../core/src/domain/source/sourceunitdigest.ts","../../core/src/domain/source/sourceunitstaterepository.ts","../../core/src/domain/source/computesourceunitdiff.ts","../../core/src/application/sourceunitstateservice.ts","../../core/src/application/batchservice.ts","../../core/src/application/modelservice.ts","../../core/src/application/sourceloaderrunner.ts","../../core/src/builtinskillsroot.ts","../../core/src/domain/paginate.ts","../../core/src/domain/skill/skillregistry.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/client-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/socks5-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.24.6/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/path/posix.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/path/win32.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/quic.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/stream/iter.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/test/reporters.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/util/types.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/zlib/iter.d.ts","../../../node_modules/.pnpm/@types+node@25.9.3/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/pino-std-serializers@7.1.0/node_modules/pino-std-serializers/index.d.ts","../../../node_modules/.pnpm/sonic-boom@4.2.1/node_modules/sonic-boom/types/index.d.ts","../../../node_modules/.pnpm/pino@9.14.0/node_modules/pino/pino.d.ts","../../core/src/infrastructure/logger.ts","../../core/src/infrastructure/skill/skillstructurevalidator.ts","../../core/src/infrastructure/systemclock.ts","../../core/src/infrastructure/validation/ontologytypevalidator.ts","../../core/src/infrastructure/validation/structuralvalidator.ts","../../core/src/infrastructure/validation/index.ts","../../core/src/index.ts","../src/claudecodeagentbinding.ts","../../sdk/src/types.ts","../../sdk/src/validation.ts","../../sdk/src/defineagentplugin.ts","../../sdk/src/defineontology.ts","../../sdk/src/definesourceloader.ts","../../sdk/src/definestorageplugin.ts","../../sdk/src/defineviewgenerator.ts","../../sdk/src/index.ts","../src/claudecodeagentplugin.ts","../src/index.ts"],"fileIdsList":[[149,210,211,213,221,225,228,230,231,232,244],[149,212,213,221,225,228,230,231,232,244],[213,221,225,228,230,231,232,244],[149,213,221,225,228,230,231,232,244,253],[149,213,214,219,221,224,225,228,230,231,232,234,244,249,262],[149,213,214,215,221,224,225,228,230,231,232,244],[149,213,221,225,228,230,231,232,244],[149,213,216,221,225,228,230,231,232,244,263],[149,213,217,218,221,225,228,230,231,232,235,244],[149,213,218,221,225,228,230,231,232,244,249,259],[149,213,219,221,224,225,228,230,231,232,234,244],[149,212,213,220,221,225,228,230,231,232,244],[149,213,221,222,225,228,230,231,232,244],[149,213,221,223,224,225,228,230,231,232,244],[149,212,213,221,224,225,228,230,231,232,244],[149,213,221,224,225,226,228,230,231,232,244,249,262],[149,213,221,224,225,226,228,230,231,232,244,249,251,253],[149,200,213,221,224,225,227,228,230,231,232,234,244,249,262],[149,213,221,224,225,227,228,230,231,232,234,244,249,259,262],[149,213,221,225,227,228,229,230,231,232,244,249,259,262],[147,148,149,150,151,152,153,154,155,156,157,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270],[149,213,221,224,225,228,230,231,232,244],[149,213,221,225,228,230,232,244],[149,213,221,225,228,230,231,232,233,244,262],[149,213,221,224,225,228,230,231,232,234,244,249],[149,213,221,225,228,230,231,232,235,244],[149,213,221,225,228,230,231,232,236,244],[149,213,221,224,225,228,230,231,232,239,244],[149,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269],[149,213,221,225,228,230,231,232,241,244],[149,213,221,225,228,230,231,232,242,244],[149,213,218,221,225,228,230,231,232,234,244,253],[149,213,221,224,225,228,230,231,232,244,245],[149,213,221,225,228,230,231,232,244,246,263,266],[149,213,221,224,225,228,230,231,232,244,249,252,253],[149,213,221,225,228,230,231,232,244,250,253],[149,213,221,225,228,230,231,232,244,251],[149,213,221,225,228,230,231,232,244,253,263],[149,213,221,225,228,230,231,232,244,254],[149,210,213,221,225,228,230,231,232,244,249,256,262],[149,213,221,225,228,230,231,232,244,249,255],[149,213,221,224,225,228,230,231,232,244,257,258],[149,213,221,225,228,230,231,232,244,257,258],[149,213,218,221,225,228,230,231,232,234,244,249,259],[149,213,221,225,228,230,231,232,244,260],[149,213,221,225,228,230,231,232,234,244,261],[149,213,221,225,227,228,230,231,232,242,244,262],[149,213,221,225,228,230,231,232,244,263,264],[149,213,218,221,225,228,230,231,232,244,264],[149,213,221,225,228,230,231,232,244,249,265],[149,213,221,225,228,230,231,232,233,244,266],[149,213,221,225,228,230,231,232,244,267],[149,213,216,221,225,228,230,231,232,244],[149,213,218,221,225,228,230,231,232,244],[149,213,221,225,228,230,231,232,244,263],[149,200,213,221,225,228,230,231,232,244],[149,213,221,225,228,230,231,232,244,262],[149,213,221,225,228,230,231,232,244,268],[149,213,221,225,228,230,231,232,239,244],[149,213,221,225,228,230,231,232,244,258],[149,200,213,221,224,225,226,228,230,231,232,239,244,249,253,262,265,266,268],[149,213,221,225,228,230,231,232,244,249,269],[149,213,221,225,228,230,231,232,244,251,270],[149,213,221,225,227,228,230,231,232,244,271],[149,213,221,224,225,228,230,231,232,244,268,272,273],[149,213,221,224,225,228,230,231,232,244,271],[149,164,167,170,171,213,221,225,228,230,231,232,244,262],[149,167,213,221,225,228,230,231,232,244,249,262],[149,167,171,213,221,225,228,230,231,232,244,262],[149,213,221,225,228,230,231,232,244,249],[149,161,213,221,225,228,230,231,232,244],[149,165,213,221,225,228,230,231,232,244],[149,163,164,167,213,221,225,228,230,231,232,244,262],[149,213,221,225,228,230,231,232,234,244,259],[149,213,221,225,228,230,231,232,244,271],[149,161,213,221,225,228,230,231,232,244,271],[149,163,167,213,221,225,228,230,231,232,234,244,262],[149,158,159,160,162,166,213,221,224,225,228,230,231,232,244,249,262],[149,167,176,184,213,221,225,228,230,231,232,244],[149,159,165,213,221,225,228,230,231,232,244],[149,167,194,195,213,221,225,228,230,231,232,244],[149,159,162,167,213,221,225,228,230,231,232,244,253,262,271],[149,167,213,221,225,228,230,231,232,244],[149,163,167,213,221,225,228,230,231,232,244,262],[149,158,213,221,225,228,230,231,232,244],[149,161,162,163,165,166,167,168,169,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,195,196,197,198,199,213,221,225,228,230,231,232,244],[149,167,187,190,213,221,225,228,230,231,232,244],[149,167,176,177,178,213,221,225,228,230,231,232,244],[149,165,167,177,179,213,221,225,228,230,231,232,244],[149,166,213,221,225,228,230,231,232,244],[149,159,161,167,213,221,225,228,230,231,232,244],[149,167,171,177,179,213,221,225,228,230,231,232,244],[149,171,213,221,225,228,230,231,232,244],[149,165,167,170,213,221,225,228,230,231,232,244,262],[149,159,163,167,176,213,221,225,228,230,231,232,244],[149,167,187,213,221,225,228,230,231,232,244],[149,179,213,221,225,228,230,231,232,244],[149,159,163,167,171,213,221,225,228,230,231,232,244],[149,161,167,194,213,221,225,228,230,231,232,244,253,268,271],[72,149,213,221,225,228,230,231,232,244],[63,64,149,213,221,225,228,230,231,232,244],[60,61,63,65,66,71,149,213,221,225,228,230,231,232,244],[61,63,149,213,221,225,228,230,231,232,244],[71,149,213,221,225,228,230,231,232,244],[63,149,213,221,225,228,230,231,232,244],[60,61,63,66,67,68,69,70,149,213,221,225,228,230,231,232,244],[60,61,62,149,213,221,225,228,230,231,232,244],[97,149,213,221,225,228,230,231,232,240,244,281],[97,149,213,221,225,228,230,231,232,244,281,282,290],[149,213,221,225,228,230,231,232,244,282,291],[97,98,99,100,101,102,103,105,107,109,117,118,122,125,127,129,131,136,140,149,213,221,225,228,230,231,232,244],[97,121,149,213,221,225,228,230,231,232,244],[97,98,102,118,119,120,121,122,124,125,127,128,149,213,221,225,228,230,231,232,244],[97,98,99,102,104,105,106,107,115,119,121,122,123,125,127,128,130,131,135,149,213,221,225,228,230,231,232,244],[97,115,149,213,221,225,228,230,231,232,244],[97,149,213,221,225,228,230,231,232,244],[97,98,99,102,114,117,125,149,213,221,225,226,228,230,231,232,236,244],[97,102,127,137,138,139,149,213,221,225,228,230,231,232,244],[97,99,117,132,133,134,149,213,221,225,228,230,231,232,244],[97,99,115,119,123,149,213,221,225,228,230,231,232,244],[97,103,149,213,221,225,228,230,231,232,244],[97,98,99,126,149,213,221,225,228,230,231,232,244],[149,213,221,225,228,230,231,232,236,244,262],[97,99,110,149,213,221,225,228,230,231,232,244],[97,98,149,213,221,225,228,230,231,232,244],[99,100,149,213,221,225,228,230,231,232,244],[97,99,149,213,221,225,228,230,231,232,244],[97,104,149,213,221,225,228,230,231,232,244],[97,106,149,213,221,225,228,230,231,232,244],[97,98,131,149,213,221,225,228,230,231,232,244],[97,108,111,149,213,221,225,228,230,231,232,244],[97,108,149,213,221,225,228,230,231,232,244],[73,97,149,213,221,225,228,230,231,232,244],[97,98,108,109,112,113,114,116,149,213,221,225,228,230,231,232,244],[97,108,115,149,213,221,225,228,230,231,232,244],[98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,135,136,137,138,139,140,141,142,143,144,145,146,149,213,221,225,228,230,231,232,244,275,276,277,280],[149,213,221,225,228,230,231,232,240,244,274],[97,102,149,213,221,225,228,230,231,232,244],[133,134,149,213,221,225,228,230,231,232,244,278,279],[97,109,149,213,221,225,228,230,231,232,244],[73,74,149,213,221,225,228,230,231,232,244],[73,74,80,149,213,221,225,228,230,231,232,244],[73,149,213,221,225,228,230,231,232,244],[73,83,149,213,221,225,228,230,231,232,244],[73,74,79,149,213,221,225,228,230,231,232,244],[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,149,213,221,225,228,230,231,232,244],[73,74,77,78,149,213,221,225,228,230,231,232,244],[73,74,87,149,213,221,225,228,230,231,232,244],[74,79,80,85,149,213,221,225,228,230,231,232,244],[73,74,86,92,149,213,221,225,228,230,231,232,244],[73,74,86,149,213,221,225,228,230,231,232,244],[73,74,75,86,87,91,149,213,221,225,228,230,231,232,244],[73,97,149,213,221,225,228,230,231,232,244,281,283,284],[149,213,221,225,228,230,231,232,244,283,285,286,287,288,289],[149,213,221,225,228,230,231,232,244,281]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","impliedFormat":1},{"version":"08b2fae7b0f553ad9f79faec864b179fc58bc172e295a70943e8585dd85f600c","impliedFormat":1},{"version":"f12edf1672a94c578eca32216839604f1e1c16b40a1896198deabf99c882b340","impliedFormat":1},{"version":"e3498cf5e428e6c6b9e97bd88736f26d6cf147dedbfa5a8ad3ed8e05e059af8a","impliedFormat":1},{"version":"dba3f34531fd9b1b6e072928b6f885aa4d28dd6789cbd0e93563d43f4b62da53","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"2329d90062487e1eaca87b5e06abcbbeeecf80a82f65f949fd332cfcf824b87b","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"4fdb529707247a1a917a4626bfb6a293d52cd8ee57ccf03830ec91d39d606d6d","impliedFormat":1},{"version":"a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","impliedFormat":1},{"version":"5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","impliedFormat":1},"718b4d0a057e07da825d36a6c2e457c89bb4d3508d8236aacf7763dd51bfbd90","86a93a1dd3c6e6c0f3309fc9d0c6a24b7b4a40663078f7899ad53ed31307c66e","0aa656454344d9623de79d7b85011e091c837518db1d817f288f7ebb9671cb25","7defb8532808241df922c2e908ec9534f9f0a95af70249a428860a346ef0ce77","6ad5b8ca1d9831689a9c64d9d1b392fa240629a0d7c2a90bf42706895bb4c5d0","70ccf5da42a725c107a5d94433264616d04727d1465f991b213168ae374b3ddc","d0a93491328fa1c1bd3441f848959af3101815c4beeb5c9e845d993c31887199","a7ea8a556f71b26be6019bb516cd8dc98de0dc5c491e534ced87ca487b86c321","6a0d099da2d898721cb3640311b97b4f69f170af4a81df0800ed4584ac6e1c7e","3cd54579452ac5040dbc9bce1a26981b97e4a32ef49ec466944a1d3408b8a03d","4513c23ec50d425e5693fb35b0421ca25893b0001c9c11d7de48ce10066e66b3","1ae65bad71dbc7eb90292ec61326059f7db3a0ff47215a044381849a0d757901","68a5c7b0050cb6f6f51fb449edbe753f1c50c4c61376b31e45b2af9d13403cc2","f8b7f57678186eebac8b2ce3c09416397abfcd10055cdabc784af4795715100c","2eae7282cc80a89dbabc9b7add8c17c1233db7f4b96e1bd1fe03fab03e3ceb9f","79b8503e9e17e5f46cc6f3db4a280e9c75286aa3d9fde8db7854bacdb8128ff0","9391a986f88d02ab000e7bad4e68b058c05c764892369b7ec7cba68e2ab707e6","4ffebbd25aa6e374f652be9c9a41686b13f38b050a634c1b641d24c9f4e288fb","baae1406398ec75aa83cb6232dd8c42cd72b79431832300b7a0db477fe4a9eec","58d8ca318064e41edd159228d062136763b2263e3efb9ee4e90b6f54b66bc77b","5458bc228965bab1c8df8b110a9c0f79336db881d21d67de3b58f2bb55810bc7","3fe4e2b9f450b0b7cc36adf205b9b571855a9192259f812a1b27c6e253035611","6c122a02e83fbd9a9e16f8e3b14e311ff545ae89330676e67c0621509f523d04","0365df03669b4a7ca8ed1b2d81da18c7d120a7736c6ea9f6f491dc3b7207f71b","7358a02c2483472796ec353152323bb71b0343d7c8c2ecfdab3bc4e7b48487c1","97ae2665f81c72461d2b422b7ced3f80176e38c64b44882c56407c9bfa584109","200aaef73d1727d5667c365ef25c5202cbf60adf54d98145f35f184e49565d40","954a1d5ca6fae7f2d3bdebaf65a67af8eafb65a19d6e8be4c4525955d508fc78","09f6f70820deacf4ea10a6fe818abb82f17c41b619b91d94742d0151c1fdf0e1","92eebeb93443e52bbbcbd83cc866a76646f90fb7ba505fa3e9aa3d2589b4ca06","668ec2cece8b9005be5ec9ed3e8915eaac21abea6c9ba76d22869d91f9e6f798","b31a029d874144e8bad726d5c459cf6e98765ff35f6edcb7a660d4a695f47597","69e37b0739720625d4805d0684de815e11d30f1464829fac9a82af95048ab72e","a00cc4a57ef20b04265808079af7a8c10967934baf9167b0f8f9d14ec275ff79","092dc005c0692073b6d6a8f1f99f1bd98e9b474ce26e923adf4a378c11ec34f6","a007a07d1939242a56739daa62171bb8ac1f807de3e9e2c04a9226af3c6b9c93","bfa89617c6933f2a116438cac4e416e12f4e94128d8a5dcee85f9385b7a01bd0","6e0015110e56ecc455baddc4d45c456b4b5ef3d526cf235a09bbb85707844d49","b1b13288c510bf4945d573a0f6ff7ad40a9ea0ee1631418c440322a7ac5da32c","40489a100257bdb3062bc0168259af319d05e666d65adc1e81b5502c0338c732","d22610efa5b8aa788fcdb637c63561048dafd13b07ea9437235fc554cc0a888c","eb3553bcc50a820f32b67e3d6364406ff899f67e59fe6ff8b62845218e1a84c6","3710fa3f965210581a1e29fec4cacd29129ae33119dc21d9edd1c314f35dbaa9","5df38cb34bd5e6e370c73f19b5748b3079b29ce93efa48fe034ebe90d9d3e979","a71d143de73694d872bfa38df046fe82ff7de8f60d8378d874f2a4cc4391b557","f6e0b2f35dc76876b121af2ea8a4ed7edd9336232d0563a0fdda7a6d49303846","6c7a5cbe589783a9e9bb06e09d3287251aca03b4dcd4ac5fcd4ba53c0add9f99","e150a9e5b02a32c074ec785dc054ac815c0544f4c087f66ed902b75a4c7bbe68","e18d315ea210a591e16b9c121732cff22ed7b9e99f94ed4837919896446f8ca3","f612ff367c0f056eb8d42f5a83ee553d33c25b1a78a3bbaf8001a85df9894d07","d6840664bd703ae3d1161228bf415d61c99fcc9ae869d326498d9c806c76d40c","535dc933114cb19889c39d8634aa30525807b07629f76aa926455d889102bec0","e783b4cd7c82cc1ae9053366cb1e34dee6173c310a12c8d529852ff2f61ee19e","b9594943ff18cf4e05c3cb799753b9598f843755f6fcaa48f1835a0a79dde3a0","41f953a563501155e03223f4c968fadaa531f340ef12acc7b76a05a8e9bcc1f3","a1fafa1ab7571e0115504b60638614d8c5385327d8eedaaca0d4d29dfb822b59","e4946ef1c73f1f19dec379990887191330f66593bdd97eca915756985587d841","83b0800983530aa593b007644862f7b5c567643dbba36be99377ad198a01e241","287d9aaea064e275e4021e1378f582e0d46674367d9346f1623999f4debae9d7","860b83da3c541eaf5bfa2812fd0b76f0e8fe128b23a31e969e24e85139a09ad9","6ea38c98716213119ef6e68a7827c76e8239ff3512f12296ef70600415e3d0f7","dc9ee9763ecba6b22bed656fe147c36abc5084b9ba4a7f685afcc40397e42b52","6cd27bccdfe2f919c6e106885327a1ec4e5839f47f6d3689fedb46fc1160a260","e5b8ce73ac8b19346d8d396a8de723e30223be083514666973c05941b1f7324a","e44cb4941a7bff86b2944dc46b4b0cabf97ce477ba124896769e7b48d36fd180","5a2070df3c3e3d740bfaec08831508e83da6e3e9d711162d232986ddc80feb28","5050b7b1cdf506a381c09e5d0f5b0072349be6e51daaa98e346b8eaa31ecab6d","01d796d5655f9350535ccd041ddd0ebcdf5c81f139cce4116aae7381e6fe465d","7b2d9ed76cb118b3102f8b0c20aeeb4102884c4bf4e0c1ddaef72fb03ac88ca3","b5656c0842488dbd3e067668c510720e353d7e015738ab184e8e8743a46d482c","8e418aaf071953731672198bcbf2882380513aada33c02a6c444123910592da5","bdfae5510baa6cc7c6b61c0f7b08ffb90e2a960a2412bfe4c12af15b3f61903c","1685f6560b470725c7c08b4f7cbc4dc59b800043f20b2bb228227208ba610077",{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"21adf13435b9b748529c8cedf80f884e5130b9684188120a686cd2b26a2059c7","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"0ecd58f413f9bc3b7d4383eae31b0c8fc576985cd7404d6f99f8c643543ade74","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"d33ce35e3f9cfcc1d94eca415bdd3bde94d5b153ffdd33e6c4455c029986c630","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"4dc59f6e1dbf3d5f66660fceabe6c174d3261b37b696ae1854f0dbaf255fc753","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"114f493b30f364255290472111b5a4791d5902c308645670cd0401429cbc6930","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"c8b8968311ec4e5e97b7b5fb8a65efaba455db9bdcfd7fff7fb15f6e317bfba0","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"aecbf1d9e6a18dab7d92ef8a89a1444b47e1eb6134cb2bb776a26d55ff58c29a","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"1fede9296beac11ce8e6b425396a1791f64341f2be85deebb6286faf6e16306e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce697b6a251d9cad53998c7fd3098072df883b525ec45d83530e434dc6d80dc6","impliedFormat":1},{"version":"719412f054e6ecc35489462c9a21bab0323d173a7d04e55b0ace4b5d86fbeb07","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"3db996ecdee7aabecc5385976cc07eb66216034a273c07b17d1a85292e9bab0c","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"5ff4433a2deae4f85ab1377e90a7554ce6b47ae51c69a84ca30a6e22fae85834","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"c1fa52b3d014001e8662fa2669d90ea15373958a288e3b83a3b621733d25292a","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"5e66972e83eb4dc7123939bf816e6cbd9ad81af5552db1cab84e6bd9c64d2ecc","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"8413d0641f293aed551c7464615b770d34a02dedede889b9591172287d68e773","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"1b241e24f3227d078c06aeda6e050187ad59a4e591f4467abed44d92b084e08d","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"7fde0e1be5c8be204ffbf428abfcf01da2eb0f130e1bc3f539eb7275f4fd1f58","impliedFormat":1},{"version":"e284328553df5f425a5d33d36a0c3fa66b46af9d097cad6f4d2e8696dfdeb0f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f36b3fbe2be150a9ca140da48593f21e6a8172004f92ddc549b43efec39f3e54","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"016b29bf4926b80255a108c53a1451717350059da04fcae64d1075f5e93bbb39","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"1c4f139ade4f6ebf45463505f8155173e5d7a5305e50e0aae0a5e712d6ff3b48","impliedFormat":1},{"version":"e16b319e5aca1031168de823c4946ff8e29629c4c8cc0ec0fcfe2a8ab2155043","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"2c3c5c0f54055e87640f5d233716fd889f3034fc7911d603b642369b0dbeb2a7","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"1c9e5b1a17b1fc9b3711fb36e0690421261ab2880f15b145155b5b2ba2ab6c2d","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"afa1c49f8e559e413d57343339db857d2a8159435cf9cf7d4deb41718fff1b88","impliedFormat":1},{"version":"6953d7597831d0860c7034cf4f0419687d263b6b98a4b32e37ce6d49615c36e2","impliedFormat":1},{"version":"4fe80f12b1d5189384a219095c2eabadbb389c2d3703aae7c5376dbaa56061df","impliedFormat":1},{"version":"9eb1d2dceae65d1c82fc6be7e9b6b19cf3ca93c364678611107362b6ad4d2d41","impliedFormat":1},{"version":"8065e20ac0ad0536d4f1c8d4c2303272a4d25c450bea8d25deb25697d19300e5","impliedFormat":1},"7eb46249a4c90cfd5f456a73c18eaef83219171ffcf84a22586630329f011e8a","df4a81282d7c5621db20a4e768ff659a0372948b56d3218619927ab656a90ad5","22a1336f32d5d82a888622ece4f460db550b4c7383e4fa8befd62e8b723fdc6e","bca57bc4cde56e41819022a749ed54b20a7b2229f26503177d8554ff55dc4454","78cfbbcb8889d6905435790e7f3f46f61d24f915def282e7b409916f090db147","b547279f165a43ff3ff4c1e833cea87654920e385306fe7c3367d52c04fba8fc","4b50e5bd24c5a4000805347928a1460242d91242e35a145c8f8a81c19fbb0742",{"version":"e6ffa72355870dac76b537d01df295c98aaab10de49d4c3c12c290cbcef07a64","signature":"8208c79ad8004f113e9eba9696fdc46442c8f48d1b96684acba66aec05d9ab7d"},"36697b6aa06bcb36d368e7e3114956af60d2a5050249a49950b956473dba16ac","a2691471d1f731ee4fbcca17e9288baf83a656cd77dc733dd9920028f9da0583","4d5f6030531c4d84a263553d4ef732f3f6d51b2f38c2d22adee5b4152b29b807","a218c5016d94c0ba5a7e2e8f18807ca024798716b9cd7c6b719ff9339f0fd41a","da36c8a722a86fdda7df290afe4b4291ba05cfb47dc9b86275bba36019f3d601","5d5177353cc776a3c530350894dab114a617d135e6c5e2c2d4e6115b89d58890","8fd0a255e05b70041b1a3f99372a7b25f04f05406ca47ff17f9bd08911747de1","c79ecf8911004ffa849989372fe2c227a446cb321881fc48c745d6189db21001",{"version":"97f04938ffd223c450ce58da33609a1cbc752c33ebac52a77b7f16fbb9d83c94","signature":"4b4e4ab711f8c52c60cab4d48d5f38290a4634a61c66e4350a4a149c7de271f2"},{"version":"2de42fd1b11e7d6d946029c96a6ecc46b6fd7146779eeffc6e3b6086cfccc079","signature":"d2d9d67fe89baf18b15c4fb5e289ad810ef2feb52e95d2146f460f7ea57fc9bc"}],"root":[282,291,292],"options":{"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"declaration":true,"declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[210,1],[211,1],[212,2],[149,3],[213,4],[214,5],[215,6],[147,7],[216,8],[217,9],[218,10],[219,11],[220,12],[221,13],[222,13],[223,14],[224,15],[225,16],[226,17],[150,7],[148,7],[227,18],[228,19],[229,20],[271,21],[230,22],[231,23],[232,22],[233,24],[234,25],[235,26],[236,27],[237,27],[238,27],[239,28],[240,29],[241,30],[242,31],[243,32],[244,33],[245,33],[246,34],[247,7],[248,7],[249,35],[250,36],[251,37],[252,35],[253,38],[254,39],[255,40],[256,41],[257,42],[258,43],[259,44],[260,45],[261,46],[262,47],[263,48],[264,49],[265,50],[266,51],[267,52],[151,22],[152,7],[153,53],[154,54],[155,7],[156,55],[157,7],[201,56],[202,57],[203,58],[204,58],[205,59],[206,7],[207,4],[208,60],[209,57],[268,61],[269,62],[270,63],[272,64],[274,65],[273,66],[58,7],[59,7],[11,7],[10,7],[2,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[3,7],[20,7],[21,7],[4,7],[22,7],[26,7],[23,7],[24,7],[25,7],[27,7],[28,7],[29,7],[5,7],[30,7],[31,7],[32,7],[33,7],[6,7],[37,7],[34,7],[35,7],[36,7],[38,7],[7,7],[39,7],[44,7],[45,7],[40,7],[41,7],[42,7],[43,7],[8,7],[49,7],[46,7],[47,7],[48,7],[50,7],[9,7],[51,7],[52,7],[53,7],[55,7],[54,7],[56,7],[1,7],[57,7],[176,67],[189,68],[173,69],[190,70],[199,71],[164,72],[165,73],[163,74],[198,75],[193,76],[197,77],[167,78],[186,79],[166,80],[196,81],[161,82],[162,76],[168,83],[169,7],[175,84],[172,83],[159,85],[200,86],[191,87],[179,88],[178,83],[180,89],[183,90],[177,91],[181,92],[194,75],[170,93],[171,94],[184,95],[160,70],[188,96],[187,83],[174,94],[182,97],[185,98],[192,7],[158,7],[195,99],[73,100],[65,101],[72,102],[67,7],[68,7],[66,103],[69,104],[60,7],[61,7],[62,100],[64,105],[70,7],[71,106],[63,107],[282,108],[291,109],[292,110],[141,111],[128,112],[129,113],[136,114],[142,115],[122,116],[143,117],[140,118],[135,119],[124,120],[125,121],[127,122],[144,123],[111,124],[100,125],[101,126],[102,116],[98,116],[103,116],[119,127],[104,125],[105,128],[130,116],[106,125],[107,129],[131,116],[123,127],[132,130],[115,116],[145,7],[112,131],[113,132],[109,132],[108,133],[117,134],[114,132],[116,135],[120,127],[110,127],[146,124],[118,127],[139,116],[137,127],[138,116],[121,116],[99,125],[126,127],[281,136],[275,137],[276,116],[277,138],[133,116],[280,139],[278,140],[134,116],[279,140],[75,141],[76,141],[81,142],[74,143],[82,141],[77,141],[84,144],[85,145],[97,146],[86,143],[79,147],[78,141],[88,148],[89,149],[80,145],[90,145],[93,150],[94,141],[87,151],[91,141],[95,141],[83,141],[96,143],[92,152],[285,153],[286,153],[287,153],[288,153],[289,153],[290,154],[283,116],[284,155]],"version":"6.0.3"}
|