@neat.is/core 0.2.5
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/compat.json +120 -0
- package/dist/chunk-6JT6L2OV.js +164 -0
- package/dist/chunk-6JT6L2OV.js.map +1 -0
- package/dist/chunk-6SFEITLJ.js +3371 -0
- package/dist/chunk-6SFEITLJ.js.map +1 -0
- package/dist/chunk-I5IMCXRO.js +325 -0
- package/dist/chunk-I5IMCXRO.js.map +1 -0
- package/dist/chunk-T2U4U256.js +462 -0
- package/dist/chunk-T2U4U256.js.map +1 -0
- package/dist/chunk-WX55TLUT.js +184 -0
- package/dist/chunk-WX55TLUT.js.map +1 -0
- package/dist/chunk-XOOCA5T7.js +290 -0
- package/dist/chunk-XOOCA5T7.js.map +1 -0
- package/dist/cli.cjs +5754 -0
- package/dist/cli.cjs.map +1 -0
- package/dist/cli.d.cts +36 -0
- package/dist/cli.d.ts +36 -0
- package/dist/cli.js +1175 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.cjs +4552 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +408 -0
- package/dist/index.d.ts +408 -0
- package/dist/index.js +93 -0
- package/dist/index.js.map +1 -0
- package/dist/neatd.cjs +3070 -0
- package/dist/neatd.cjs.map +1 -0
- package/dist/neatd.d.cts +1 -0
- package/dist/neatd.d.ts +1 -0
- package/dist/neatd.js +114 -0
- package/dist/neatd.js.map +1 -0
- package/dist/otel-grpc-B4XBSI4W.js +9 -0
- package/dist/otel-grpc-B4XBSI4W.js.map +1 -0
- package/dist/server.cjs +4499 -0
- package/dist/server.cjs.map +1 -0
- package/dist/server.d.cts +2 -0
- package/dist/server.d.ts +2 -0
- package/dist/server.js +97 -0
- package/dist/server.js.map +1 -0
- package/package.json +77 -0
- package/proto/opentelemetry/proto/collector/trace/v1/trace_service.proto +31 -0
- package/proto/opentelemetry/proto/common/v1/common.proto +46 -0
- package/proto/opentelemetry/proto/resource/v1/resource.proto +19 -0
- package/proto/opentelemetry/proto/trace/v1/trace.proto +93 -0
package/dist/cli.d.cts
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
interface InitOptions {
|
|
3
|
+
scanPath: string;
|
|
4
|
+
outPath: string;
|
|
5
|
+
project: string;
|
|
6
|
+
projectExplicit: boolean;
|
|
7
|
+
apply: boolean;
|
|
8
|
+
dryRun: boolean;
|
|
9
|
+
noInstall: boolean;
|
|
10
|
+
}
|
|
11
|
+
interface InitResult {
|
|
12
|
+
exitCode: number;
|
|
13
|
+
writtenFiles: string[];
|
|
14
|
+
}
|
|
15
|
+
declare function runInit(opts: InitOptions): Promise<InitResult>;
|
|
16
|
+
declare const CLAUDE_SKILL_CONFIG: {
|
|
17
|
+
mcpServers: {
|
|
18
|
+
neat: {
|
|
19
|
+
type: "stdio";
|
|
20
|
+
command: string;
|
|
21
|
+
args: string[];
|
|
22
|
+
env: {
|
|
23
|
+
NEAT_API_URL: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
interface SkillOptions {
|
|
29
|
+
apply: boolean;
|
|
30
|
+
printConfig: boolean;
|
|
31
|
+
}
|
|
32
|
+
declare function runSkill(opts: SkillOptions): Promise<{
|
|
33
|
+
exitCode: number;
|
|
34
|
+
}>;
|
|
35
|
+
|
|
36
|
+
export { CLAUDE_SKILL_CONFIG, type InitOptions, type InitResult, type SkillOptions, runInit, runSkill };
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
interface InitOptions {
|
|
3
|
+
scanPath: string;
|
|
4
|
+
outPath: string;
|
|
5
|
+
project: string;
|
|
6
|
+
projectExplicit: boolean;
|
|
7
|
+
apply: boolean;
|
|
8
|
+
dryRun: boolean;
|
|
9
|
+
noInstall: boolean;
|
|
10
|
+
}
|
|
11
|
+
interface InitResult {
|
|
12
|
+
exitCode: number;
|
|
13
|
+
writtenFiles: string[];
|
|
14
|
+
}
|
|
15
|
+
declare function runInit(opts: InitOptions): Promise<InitResult>;
|
|
16
|
+
declare const CLAUDE_SKILL_CONFIG: {
|
|
17
|
+
mcpServers: {
|
|
18
|
+
neat: {
|
|
19
|
+
type: "stdio";
|
|
20
|
+
command: string;
|
|
21
|
+
args: string[];
|
|
22
|
+
env: {
|
|
23
|
+
NEAT_API_URL: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
interface SkillOptions {
|
|
29
|
+
apply: boolean;
|
|
30
|
+
printConfig: boolean;
|
|
31
|
+
}
|
|
32
|
+
declare function runSkill(opts: SkillOptions): Promise<{
|
|
33
|
+
exitCode: number;
|
|
34
|
+
}>;
|
|
35
|
+
|
|
36
|
+
export { CLAUDE_SKILL_CONFIG, type InitOptions, type InitResult, type SkillOptions, runInit, runSkill };
|