@neat.is/core 0.4.14 → 0.4.16

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/cli.d.cts CHANGED
@@ -1,4 +1,7 @@
1
1
  #!/usr/bin/env node
2
+ declare function readPackageVersion(): string;
3
+ declare function printBanner(): void;
4
+
2
5
  interface InitOptions {
3
6
  scanPath: string;
4
7
  outPath: string;
@@ -13,6 +16,9 @@ interface InitResult {
13
16
  exitCode: number;
14
17
  writtenFiles: string[];
15
18
  }
19
+ declare function isNpxInvocation(): boolean;
20
+ declare function commandPrefix(): string;
21
+ declare function usage(): void;
16
22
  interface ParsedArgs {
17
23
  project: string | null;
18
24
  apply: boolean;
@@ -40,8 +46,6 @@ interface ParsedArgs {
40
46
  }
41
47
  declare function parseArgs(rest: string[]): ParsedArgs;
42
48
 
43
- declare function readPackageVersion(): string;
44
- declare function printBanner(): void;
45
49
  declare function runInit(opts: InitOptions): Promise<InitResult>;
46
50
  declare const CLAUDE_SKILL_CONFIG: {
47
51
  mcpServers: {
@@ -62,7 +66,8 @@ interface SkillOptions {
62
66
  declare function runSkill(opts: SkillOptions): Promise<{
63
67
  exitCode: number;
64
68
  }>;
69
+ declare function main(): Promise<void>;
65
70
  declare const QUERY_VERBS: Set<string>;
66
71
  declare function runQueryVerb(cmd: string, parsed: ParsedArgs): Promise<number>;
67
72
 
68
- export { CLAUDE_SKILL_CONFIG, type InitOptions, type InitResult, QUERY_VERBS, type SkillOptions, parseArgs, printBanner, readPackageVersion, runInit, runQueryVerb, runSkill };
73
+ export { CLAUDE_SKILL_CONFIG, type InitOptions, type InitResult, QUERY_VERBS, type SkillOptions, commandPrefix, isNpxInvocation, main, parseArgs, printBanner, readPackageVersion, runInit, runQueryVerb, runSkill, usage };
package/dist/cli.d.ts CHANGED
@@ -1,4 +1,7 @@
1
1
  #!/usr/bin/env node
2
+ declare function readPackageVersion(): string;
3
+ declare function printBanner(): void;
4
+
2
5
  interface InitOptions {
3
6
  scanPath: string;
4
7
  outPath: string;
@@ -13,6 +16,9 @@ interface InitResult {
13
16
  exitCode: number;
14
17
  writtenFiles: string[];
15
18
  }
19
+ declare function isNpxInvocation(): boolean;
20
+ declare function commandPrefix(): string;
21
+ declare function usage(): void;
16
22
  interface ParsedArgs {
17
23
  project: string | null;
18
24
  apply: boolean;
@@ -40,8 +46,6 @@ interface ParsedArgs {
40
46
  }
41
47
  declare function parseArgs(rest: string[]): ParsedArgs;
42
48
 
43
- declare function readPackageVersion(): string;
44
- declare function printBanner(): void;
45
49
  declare function runInit(opts: InitOptions): Promise<InitResult>;
46
50
  declare const CLAUDE_SKILL_CONFIG: {
47
51
  mcpServers: {
@@ -62,7 +66,8 @@ interface SkillOptions {
62
66
  declare function runSkill(opts: SkillOptions): Promise<{
63
67
  exitCode: number;
64
68
  }>;
69
+ declare function main(): Promise<void>;
65
70
  declare const QUERY_VERBS: Set<string>;
66
71
  declare function runQueryVerb(cmd: string, parsed: ParsedArgs): Promise<number>;
67
72
 
68
- export { CLAUDE_SKILL_CONFIG, type InitOptions, type InitResult, QUERY_VERBS, type SkillOptions, parseArgs, printBanner, readPackageVersion, runInit, runQueryVerb, runSkill };
73
+ export { CLAUDE_SKILL_CONFIG, type InitOptions, type InitResult, QUERY_VERBS, type SkillOptions, commandPrefix, isNpxInvocation, main, parseArgs, printBanner, readPackageVersion, runInit, runQueryVerb, runSkill, usage };