@neat.is/core 0.3.8 → 0.4.2
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/dist/{chunk-LQ3JFBTX.js → chunk-CB2UK4EH.js} +139 -41
- package/dist/chunk-CB2UK4EH.js.map +1 -0
- package/dist/{chunk-V4TU7OKZ.js → chunk-D5PIJFBE.js} +2 -2
- package/dist/{chunk-7TYESDAI.js → chunk-KYRIQIPG.js} +48 -11
- package/dist/chunk-KYRIQIPG.js.map +1 -0
- package/dist/{chunk-CZ3T6TE2.js → chunk-NTQHMXWE.js} +239 -71
- package/dist/chunk-NTQHMXWE.js.map +1 -0
- package/dist/cli.cjs +1209 -176
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.d.cts +4 -1
- package/dist/cli.d.ts +4 -1
- package/dist/cli.js +940 -99
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +418 -122
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +21 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +4 -4
- package/dist/neatd.cjs +427 -131
- package/dist/neatd.cjs.map +1 -1
- package/dist/neatd.js +3 -3
- package/dist/{otel-grpc-S3AENOZ6.js → otel-grpc-QTX2YQJZ.js} +3 -3
- package/dist/server.cjs +401 -203
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +5 -4
- package/dist/server.js.map +1 -1
- package/package.json +2 -2
- package/dist/chunk-7TYESDAI.js.map +0 -1
- package/dist/chunk-CZ3T6TE2.js.map +0 -1
- package/dist/chunk-LQ3JFBTX.js.map +0 -1
- /package/dist/{chunk-V4TU7OKZ.js.map → chunk-D5PIJFBE.js.map} +0 -0
- /package/dist/{otel-grpc-S3AENOZ6.js.map → otel-grpc-QTX2YQJZ.js.map} +0 -0
package/dist/cli.d.cts
CHANGED
|
@@ -34,10 +34,13 @@ interface ParsedArgs {
|
|
|
34
34
|
hypotheticalAction: string | null;
|
|
35
35
|
type: string | null;
|
|
36
36
|
minConfidence: number | null;
|
|
37
|
+
to: string | null;
|
|
38
|
+
token: string | null;
|
|
37
39
|
positional: string[];
|
|
38
40
|
}
|
|
39
41
|
declare function parseArgs(rest: string[]): ParsedArgs;
|
|
40
42
|
|
|
43
|
+
declare function readPackageVersion(): string;
|
|
41
44
|
declare function runInit(opts: InitOptions): Promise<InitResult>;
|
|
42
45
|
declare const CLAUDE_SKILL_CONFIG: {
|
|
43
46
|
mcpServers: {
|
|
@@ -61,4 +64,4 @@ declare function runSkill(opts: SkillOptions): Promise<{
|
|
|
61
64
|
declare const QUERY_VERBS: Set<string>;
|
|
62
65
|
declare function runQueryVerb(cmd: string, parsed: ParsedArgs): Promise<number>;
|
|
63
66
|
|
|
64
|
-
export { CLAUDE_SKILL_CONFIG, type InitOptions, type InitResult, QUERY_VERBS, type SkillOptions, parseArgs, runInit, runQueryVerb, runSkill };
|
|
67
|
+
export { CLAUDE_SKILL_CONFIG, type InitOptions, type InitResult, QUERY_VERBS, type SkillOptions, parseArgs, readPackageVersion, runInit, runQueryVerb, runSkill };
|
package/dist/cli.d.ts
CHANGED
|
@@ -34,10 +34,13 @@ interface ParsedArgs {
|
|
|
34
34
|
hypotheticalAction: string | null;
|
|
35
35
|
type: string | null;
|
|
36
36
|
minConfidence: number | null;
|
|
37
|
+
to: string | null;
|
|
38
|
+
token: string | null;
|
|
37
39
|
positional: string[];
|
|
38
40
|
}
|
|
39
41
|
declare function parseArgs(rest: string[]): ParsedArgs;
|
|
40
42
|
|
|
43
|
+
declare function readPackageVersion(): string;
|
|
41
44
|
declare function runInit(opts: InitOptions): Promise<InitResult>;
|
|
42
45
|
declare const CLAUDE_SKILL_CONFIG: {
|
|
43
46
|
mcpServers: {
|
|
@@ -61,4 +64,4 @@ declare function runSkill(opts: SkillOptions): Promise<{
|
|
|
61
64
|
declare const QUERY_VERBS: Set<string>;
|
|
62
65
|
declare function runQueryVerb(cmd: string, parsed: ParsedArgs): Promise<number>;
|
|
63
66
|
|
|
64
|
-
export { CLAUDE_SKILL_CONFIG, type InitOptions, type InitResult, QUERY_VERBS, type SkillOptions, parseArgs, runInit, runQueryVerb, runSkill };
|
|
67
|
+
export { CLAUDE_SKILL_CONFIG, type InitOptions, type InitResult, QUERY_VERBS, type SkillOptions, parseArgs, readPackageVersion, runInit, runQueryVerb, runSkill };
|