@trenchwork/erosolar 1.1.40 → 1.1.41

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.
Files changed (81) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +236 -225
  3. package/agents/erosolar-code.rules.json +199 -199
  4. package/dist/bin/deepseek.js +18 -198
  5. package/dist/bin/deepseek.js.map +1 -1
  6. package/dist/bin/erosolar.js +0 -0
  7. package/dist/capabilities/enhancedGitCapability.js +63 -63
  8. package/dist/config.js +12 -12
  9. package/dist/contracts/agent-profiles.schema.json +5 -23
  10. package/dist/contracts/agent-schemas.json +31 -343
  11. package/dist/contracts/models.schema.json +9 -9
  12. package/dist/contracts/module-schema.json +367 -367
  13. package/dist/contracts/schemas/agent-profile.schema.json +157 -157
  14. package/dist/contracts/schemas/agent-rules.schema.json +238 -238
  15. package/dist/contracts/schemas/agent-schemas.schema.json +528 -528
  16. package/dist/contracts/schemas/agent.schema.json +90 -90
  17. package/dist/contracts/schemas/tool-selection.schema.json +174 -174
  18. package/dist/contracts/tools.schema.json +42 -42
  19. package/dist/contracts/unified-schema.json +8 -628
  20. package/dist/core/constants.js +7 -7
  21. package/dist/core/contextManager.js +16 -16
  22. package/dist/core/modelDiscovery.d.ts +0 -3
  23. package/dist/core/modelDiscovery.d.ts.map +1 -1
  24. package/dist/core/modelDiscovery.js +3 -355
  25. package/dist/core/modelDiscovery.js.map +1 -1
  26. package/dist/core/quotaErrors.d.ts +42 -0
  27. package/dist/core/quotaErrors.d.ts.map +1 -0
  28. package/dist/core/quotaErrors.js +88 -0
  29. package/dist/core/quotaErrors.js.map +1 -0
  30. package/dist/core/secretStore.d.ts.map +1 -1
  31. package/dist/core/secretStore.js +1 -14
  32. package/dist/core/secretStore.js.map +1 -1
  33. package/dist/core/taskCompletionDetector.js +17 -17
  34. package/dist/headless/interactiveShell.d.ts.map +1 -1
  35. package/dist/headless/interactiveShell.js +7 -58
  36. package/dist/headless/interactiveShell.js.map +1 -1
  37. package/dist/leanAgent.js +38 -38
  38. package/dist/plugins/providers/deepseek/index.d.ts +1 -0
  39. package/dist/plugins/providers/deepseek/index.d.ts.map +1 -1
  40. package/dist/plugins/providers/deepseek/index.js +65 -4
  41. package/dist/plugins/providers/deepseek/index.js.map +1 -1
  42. package/dist/plugins/providers/index.d.ts.map +1 -1
  43. package/dist/plugins/providers/index.js +0 -7
  44. package/dist/plugins/providers/index.js.map +1 -1
  45. package/dist/providers/openaiChatCompletionsProvider.js +7 -30
  46. package/dist/providers/openaiChatCompletionsProvider.js.map +1 -1
  47. package/dist/providers/resilientProvider.d.ts.map +1 -1
  48. package/dist/providers/resilientProvider.js +0 -31
  49. package/dist/providers/resilientProvider.js.map +1 -1
  50. package/dist/runtime/agentSession.js +4 -4
  51. package/dist/shell/vimMode.js +29 -29
  52. package/dist/tools/hitlTools.js +18 -18
  53. package/dist/tools/webTools.d.ts.map +1 -1
  54. package/dist/tools/webTools.js +10 -0
  55. package/dist/tools/webTools.js.map +1 -1
  56. package/package.json +116 -123
  57. package/scripts/postinstall.cjs +57 -58
  58. package/dist/bin/cliMode.d.ts +0 -8
  59. package/dist/bin/cliMode.d.ts.map +0 -1
  60. package/dist/bin/cliMode.js +0 -20
  61. package/dist/bin/cliMode.js.map +0 -1
  62. package/dist/bin/selfTest.d.ts +0 -14
  63. package/dist/bin/selfTest.d.ts.map +0 -1
  64. package/dist/bin/selfTest.js +0 -298
  65. package/dist/bin/selfTest.js.map +0 -1
  66. package/dist/headless/printMode.d.ts +0 -17
  67. package/dist/headless/printMode.d.ts.map +0 -1
  68. package/dist/headless/printMode.js +0 -40
  69. package/dist/headless/printMode.js.map +0 -1
  70. package/dist/plugins/providers/anthropic/index.d.ts +0 -9
  71. package/dist/plugins/providers/anthropic/index.d.ts.map +0 -1
  72. package/dist/plugins/providers/anthropic/index.js +0 -48
  73. package/dist/plugins/providers/anthropic/index.js.map +0 -1
  74. package/dist/plugins/providers/openai/index.d.ts +0 -10
  75. package/dist/plugins/providers/openai/index.d.ts.map +0 -1
  76. package/dist/plugins/providers/openai/index.js +0 -47
  77. package/dist/plugins/providers/openai/index.js.map +0 -1
  78. package/dist/plugins/providers/xai/index.d.ts +0 -10
  79. package/dist/plugins/providers/xai/index.d.ts.map +0 -1
  80. package/dist/plugins/providers/xai/index.js +0 -47
  81. package/dist/plugins/providers/xai/index.js.map +0 -1
package/package.json CHANGED
@@ -1,123 +1,116 @@
1
- {
2
- "name": "@trenchwork/erosolar",
3
- "version": "1.1.40",
4
- "description": "DeepSeek AI-powered CLI agent for code assistance and automation. Inspired by Project Glasswing (an Anthropic initiative); an independent project, not affiliated with or endorsed by Anthropic.",
5
- "deepseek": {
6
- "rulebookSchema": "src/contracts/schemas/agent-rules.schema.json"
7
- },
8
- "main": "dist/bin/deepseek.js",
9
- "exports": {
10
- ".": "./dist/bin/deepseek.js",
11
- "./lean": "./dist/leanAgent.js",
12
- "./capabilities": "./dist/capabilities/index.js",
13
- "./orchestration": "./dist/orchestration/index.js"
14
- },
15
- "type": "module",
16
- "files": [
17
- "dist",
18
- "scripts/postinstall.cjs",
19
- "README.md",
20
- "agents",
21
- "LICENSE"
22
- ],
23
- "bin": {
24
- "deepseek": "dist/bin/deepseek.js",
25
- "erosolar": "dist/bin/erosolar.js",
26
- "erosolar-coder": "dist/bin/erosolar.js"
27
- },
28
- "scripts": {
29
- "postinstall": "node scripts/postinstall.cjs",
30
- "prebuild": "npm run clean",
31
- "clean": "node -e \"const { rmSync } = require('fs'); for (const target of ['dist', '.tsbuildinfo']) { try { rmSync(target, { recursive: true, force: true, maxRetries: 10 }); } catch (error) { console.warn('Clean warning:', error.code, 'for', target); } }\"",
32
- "build": "tsc",
33
- "build:watch": "tsc --watch",
34
- "build:prod": "NODE_ENV=production MINIFY=true npm run build",
35
- "optimize": "node scripts/optimize-build.mjs",
36
- "release": "chmod +x scripts/create-release.sh && scripts/create-release.sh patch",
37
- "release:minor": "chmod +x scripts/create-release.sh && scripts/create-release.sh minor",
38
- "release:major": "chmod +x scripts/create-release.sh && scripts/create-release.sh major",
39
- "prepublishOnly": "npm run build",
40
- "pretest": "npm run build",
41
- "postbuild": "node scripts/postbuild.mjs",
42
- "cli": "node dist/bin/deepseek.js",
43
- "dev": "node --loader ts-node/esm src/bin/deepseek.ts",
44
- "dev:watch": "node --watch --loader ts-node/esm src/bin/deepseek.ts",
45
- "start": "node dist/bin/deepseek.js",
46
- "test": "jest --config jest.config.cjs",
47
- "test:watch": "jest --config jest.config.cjs --watch",
48
- "test:coverage": "jest --config jest.config.cjs --coverage",
49
- "lint": "eslint src/**/*.ts --max-warnings 200",
50
- "lint:fix": "eslint src/**/*.ts --fix",
51
- "type-check": "tsc --noEmit"
52
- },
53
- "keywords": [
54
- "ai",
55
- "cli",
56
- "agent",
57
- "llm",
58
- "anthropic",
59
- "openai",
60
- "google",
61
- "deepseek",
62
- "code-assistant",
63
- "automation",
64
- "developer-tools"
65
- ],
66
- "author": "",
67
- "license": "MIT",
68
- "repository": {
69
- "type": "git",
70
- "url": "git+https://github.com/Aroxora/deepseek-coder-cli.git"
71
- },
72
- "bugs": {
73
- "url": "https://github.com/Aroxora/deepseek-coder-cli/issues"
74
- },
75
- "homepage": "https://github.com/Aroxora/deepseek-coder-cli#readme",
76
- "engines": {
77
- "node": ">=20.0.0"
78
- },
79
- "devDependencies": {
80
- "@babel/core": "^7.28.5",
81
- "@babel/preset-env": "^7.28.5",
82
- "@babel/preset-react": "^7.28.5",
83
- "@babel/preset-typescript": "^7.28.5",
84
- "@eslint/js": "^9.39.2",
85
- "@types/glob": "^8.1.0",
86
- "@types/gradient-string": "^1.1.6",
87
- "@types/jest": "30.0.0",
88
- "@types/node": "25.0.2",
89
- "@types/react": "^19.2.0",
90
- "@typescript-eslint/eslint-plugin": "8.49.0",
91
- "@typescript-eslint/parser": "8.49.0",
92
- "@xterm/headless": "^6.0.0",
93
- "babel-jest": "^30.2.0",
94
- "eslint": "9.39.2",
95
- "eslint-plugin-import": "^2.32.0",
96
- "ink-testing-library": "^4.0.0",
97
- "jest": "30.2.0",
98
- "node-pty": "^1.1.0",
99
- "ts-jest": "29.4.6",
100
- "ts-node": "^10.9.2",
101
- "typescript-eslint": "^8.50.0"
102
- },
103
- "overrides": {
104
- "uuid": "^14.0.0"
105
- },
106
- "dependencies": {
107
- "@anthropic-ai/sdk": "^0.71.2",
108
- "@google/genai": "^1.33.0",
109
- "boxen": "^8.0.1",
110
- "chalk": "^5.6.2",
111
- "cli-spinners": "^3.3.0",
112
- "gradient-string": "^3.0.0",
113
- "ink": "^7.0.1",
114
- "ink-spinner": "^5.0.0",
115
- "nanospinner": "1.2.2",
116
- "open": "^11.0.0",
117
- "openai": "^6.10.0",
118
- "ora": "^9.0.0",
119
- "react": "^19.2.0",
120
- "react-devtools-core": "^7.0.1",
121
- "typescript": "5.9.3"
122
- }
123
- }
1
+ {
2
+ "name": "@trenchwork/erosolar",
3
+ "version": "1.1.41",
4
+ "description": "DeepSeek AI-powered CLI agent for code assistance and automation. Inspired by Project Glasswing (an Anthropic initiative); an independent project, not affiliated with or endorsed by Anthropic.",
5
+ "deepseek": {
6
+ "rulebookSchema": "src/contracts/schemas/agent-rules.schema.json"
7
+ },
8
+ "main": "dist/bin/deepseek.js",
9
+ "exports": {
10
+ ".": "./dist/bin/deepseek.js",
11
+ "./capabilities": "./dist/capabilities/index.js"
12
+ },
13
+ "type": "module",
14
+ "files": [
15
+ "dist",
16
+ "scripts/postinstall.cjs",
17
+ "README.md",
18
+ "agents",
19
+ "LICENSE"
20
+ ],
21
+ "bin": {
22
+ "deepseek": "dist/bin/deepseek.js",
23
+ "erosolar": "dist/bin/erosolar.js",
24
+ "erosolar-coder": "dist/bin/erosolar.js"
25
+ },
26
+ "scripts": {
27
+ "postinstall": "node scripts/postinstall.cjs",
28
+ "prebuild": "npm run clean",
29
+ "clean": "node -e \"const { rmSync } = require('fs'); for (const target of ['dist', '.tsbuildinfo']) { try { rmSync(target, { recursive: true, force: true, maxRetries: 10 }); } catch (error) { console.warn('Clean warning:', error.code, 'for', target); } }\"",
30
+ "build": "tsc",
31
+ "build:watch": "tsc --watch",
32
+ "build:prod": "NODE_ENV=production MINIFY=true npm run build",
33
+ "optimize": "node scripts/optimize-build.mjs",
34
+ "release": "chmod +x scripts/create-release.sh && scripts/create-release.sh patch",
35
+ "release:minor": "chmod +x scripts/create-release.sh && scripts/create-release.sh minor",
36
+ "release:major": "chmod +x scripts/create-release.sh && scripts/create-release.sh major",
37
+ "prepublishOnly": "npm run build",
38
+ "pretest": "npm run build",
39
+ "postbuild": "node scripts/postbuild.mjs",
40
+ "cli": "node dist/bin/deepseek.js",
41
+ "dev": "node --loader ts-node/esm src/bin/deepseek.ts",
42
+ "dev:watch": "node --watch --loader ts-node/esm src/bin/deepseek.ts",
43
+ "start": "node dist/bin/deepseek.js",
44
+ "test": "jest --config jest.config.cjs",
45
+ "test:watch": "jest --config jest.config.cjs --watch",
46
+ "test:coverage": "jest --config jest.config.cjs --coverage",
47
+ "lint": "eslint src/**/*.ts --max-warnings 200",
48
+ "lint:fix": "eslint src/**/*.ts --fix",
49
+ "type-check": "tsc --noEmit"
50
+ },
51
+ "keywords": [
52
+ "ai",
53
+ "cli",
54
+ "agent",
55
+ "llm",
56
+ "deepseek",
57
+ "code-assistant",
58
+ "automation",
59
+ "developer-tools"
60
+ ],
61
+ "author": "",
62
+ "license": "MIT",
63
+ "repository": {
64
+ "type": "git",
65
+ "url": "git+https://github.com/Aroxora/deepseek-coder-cli.git"
66
+ },
67
+ "bugs": {
68
+ "url": "https://github.com/Aroxora/deepseek-coder-cli/issues"
69
+ },
70
+ "homepage": "https://github.com/Aroxora/deepseek-coder-cli#readme",
71
+ "engines": {
72
+ "node": ">=20.0.0"
73
+ },
74
+ "devDependencies": {
75
+ "@babel/core": "^7.28.5",
76
+ "@babel/preset-env": "^7.28.5",
77
+ "@babel/preset-react": "^7.28.5",
78
+ "@babel/preset-typescript": "^7.28.5",
79
+ "@eslint/js": "^9.39.2",
80
+ "@types/glob": "^8.1.0",
81
+ "@types/gradient-string": "^1.1.6",
82
+ "@types/jest": "30.0.0",
83
+ "@types/node": "25.0.2",
84
+ "@types/react": "^19.2.0",
85
+ "@typescript-eslint/eslint-plugin": "8.49.0",
86
+ "@typescript-eslint/parser": "8.49.0",
87
+ "@xterm/headless": "^6.0.0",
88
+ "babel-jest": "^30.2.0",
89
+ "eslint": "9.39.2",
90
+ "eslint-plugin-import": "^2.32.0",
91
+ "ink-testing-library": "^4.0.0",
92
+ "jest": "30.2.0",
93
+ "node-pty": "^1.1.0",
94
+ "ts-jest": "29.4.6",
95
+ "ts-node": "^10.9.2",
96
+ "typescript-eslint": "^8.50.0"
97
+ },
98
+ "overrides": {
99
+ "uuid": "^14.0.0"
100
+ },
101
+ "dependencies": {
102
+ "boxen": "^8.0.1",
103
+ "chalk": "^5.6.2",
104
+ "cli-spinners": "^3.3.0",
105
+ "gradient-string": "^3.0.0",
106
+ "ink": "^7.0.1",
107
+ "ink-spinner": "^5.0.0",
108
+ "nanospinner": "1.2.2",
109
+ "open": "^11.0.0",
110
+ "openai": "^6.10.0",
111
+ "ora": "^9.0.0",
112
+ "react": "^19.2.0",
113
+ "react-devtools-core": "^7.0.1",
114
+ "typescript": "5.9.3"
115
+ }
116
+ }
@@ -1,58 +1,57 @@
1
- #!/usr/bin/env node
2
- /**
3
- * Postinstall:
4
- * 1. chmod the bin entrypoints so they're executable on POSIX (no-op on Windows).
5
- * 2. On Windows, print a friendly one-time notice about PowerShell execution
6
- * policy and the canonical command forms so users don't get blocked the
7
- * first time they type `erosolar` in PowerShell.
8
- *
9
- * Errors are intentionally swallowed: a postinstall must never fail an
10
- * `npm install` for a non-essential courtesy step.
11
- */
12
- 'use strict';
13
-
14
- const fs = require('fs');
15
- const os = require('os');
16
- const path = require('path');
17
-
18
- const BINS = [
19
- 'dist/bin/deepseek.js',
20
- 'dist/bin/erosolar.js',
21
- 'dist/bin/lean.js',
22
- ];
23
-
24
- for (const rel of BINS) {
25
- try {
26
- fs.chmodSync(path.resolve(__dirname, '..', rel), 0o755);
27
- } catch {
28
- // Missing files (clean tree pre-build) and Windows chmod no-ops both land here.
29
- }
30
- }
31
-
32
- if (process.platform === 'win32' && !process.env['EROSOLAR_QUIET_POSTINSTALL']) {
33
- // Single, scannable message no banners, no marketing. Users see this once
34
- // per global install and can move on.
35
- const lines = [
36
- '',
37
- 'Erosolar Coder installed. Two notes for Windows:',
38
- '',
39
- ' • Commands available on PATH: erosolar · deepseek · lean',
40
- ' These work in Command Prompt and PowerShell via the .cmd shims',
41
- ' npm installs automatically.',
42
- '',
43
- '  If PowerShell says "running scripts is disabled on this system",',
44
- ' run this (once, no admin needed) and reopen the shell:',
45
- '',
46
- ' Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser',
47
- '',
48
- ' Or invoke the .cmd shim directly: erosolar.cmd',
49
- '',
50
- ];
51
- // Use stderr so the notice is visible even when npm is captured to stdout
52
- // by automation. The notice is short and bounded.
53
- try {
54
- process.stderr.write(lines.join(os.EOL) + os.EOL);
55
- } catch {
56
- // Even the notice itself is non-essential.
57
- }
58
- }
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Postinstall:
4
+ * 1. chmod the bin entrypoints so they're executable on POSIX (no-op on Windows).
5
+ * 2. On Windows, print a friendly one-time notice about PowerShell execution
6
+ * policy and the canonical command forms so users don't get blocked the
7
+ * first time they type `erosolar` in PowerShell.
8
+ *
9
+ * Errors are intentionally swallowed: a postinstall must never fail an
10
+ * `npm install` for a non-essential courtesy step.
11
+ */
12
+ 'use strict';
13
+
14
+ const fs = require('fs');
15
+ const os = require('os');
16
+ const path = require('path');
17
+
18
+ const BINS = [
19
+ 'dist/bin/deepseek.js',
20
+ 'dist/bin/erosolar.js',
21
+ ];
22
+
23
+ for (const rel of BINS) {
24
+ try {
25
+ fs.chmodSync(path.resolve(__dirname, '..', rel), 0o755);
26
+ } catch {
27
+ // Missing files (clean tree pre-build) and Windows chmod no-ops both land here.
28
+ }
29
+ }
30
+
31
+ if (process.platform === 'win32' && !process.env['EROSOLAR_QUIET_POSTINSTALL']) {
32
+ // Single, scannable message no banners, no marketing. Users see this once
33
+ // per global install and can move on.
34
+ const lines = [
35
+ '',
36
+ 'Erosolar Coder installed. Two notes for Windows:',
37
+ '',
38
+ ' • Commands available on PATH: erosolar · erosolar-coder · deepseek',
39
+ ' These work in Command Prompt and PowerShell via the .cmd shims',
40
+ ' npm installs automatically.',
41
+ '',
42
+ ' • If PowerShell says "running scripts is disabled on this system",',
43
+ ' run this (once, no admin needed) and reopen the shell:',
44
+ '',
45
+ ' Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser',
46
+ '',
47
+ ' Or invoke the .cmd shim directly: erosolar.cmd',
48
+ '',
49
+ ];
50
+ // Use stderr so the notice is visible even when npm is captured to stdout
51
+ // by automation. The notice is short and bounded.
52
+ try {
53
+ process.stderr.write(lines.join(os.EOL) + os.EOL);
54
+ } catch {
55
+ // Even the notice itself is non-essential.
56
+ }
57
+ }
@@ -1,8 +0,0 @@
1
- type Mode = 'version' | 'help' | 'self-test' | 'json' | 'eval' | 'shell';
2
- export interface CliModeResult {
3
- mode: Mode;
4
- argv: string[];
5
- }
6
- export declare function detectCliMode(argv: string[]): CliModeResult;
7
- export {};
8
- //# sourceMappingURL=cliMode.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"cliMode.d.ts","sourceRoot":"","sources":["../../src/bin/cliMode.ts"],"names":[],"mappings":"AAAA,KAAK,IAAI,GAAG,SAAS,GAAG,MAAM,GAAG,WAAW,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;AAEzE,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,IAAI,CAAC;IACX,IAAI,EAAE,MAAM,EAAE,CAAC;CAChB;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,aAAa,CAkB3D"}
@@ -1,20 +0,0 @@
1
- export function detectCliMode(argv) {
2
- const args = [...argv];
3
- if (args.includes('--version') || args.includes('-v')) {
4
- return { mode: 'version', argv: args };
5
- }
6
- if (args.includes('--help') || args.includes('-h')) {
7
- return { mode: 'help', argv: args };
8
- }
9
- if (args.includes('--self-test')) {
10
- return { mode: 'self-test', argv: args };
11
- }
12
- if (args.includes('--json')) {
13
- return { mode: 'json', argv: args };
14
- }
15
- if (args.includes('--eval') || args.includes('-e')) {
16
- return { mode: 'eval', argv: args };
17
- }
18
- return { mode: 'shell', argv: args };
19
- }
20
- //# sourceMappingURL=cliMode.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"cliMode.js","sourceRoot":"","sources":["../../src/bin/cliMode.ts"],"names":[],"mappings":"AAOA,MAAM,UAAU,aAAa,CAAC,IAAc;IAC1C,MAAM,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;IACvB,IAAI,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;QACtD,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACzC,CAAC;IACD,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;QACnD,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACtC,CAAC;IACD,IAAI,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,CAAC;QACjC,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IAC3C,CAAC;IACD,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC5B,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACtC,CAAC;IACD,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;QACnD,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACtC,CAAC;IACD,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;AACvC,CAAC"}
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env node
2
- /**
3
- * Self-Test Runner for Erosolar CLI
4
- *
5
- * Launches the CLI in a separate process and runs extensive tests
6
- * to verify functionality works correctly in a real runtime environment.
7
- *
8
- * @license MIT
9
- */
10
- /**
11
- * Run all self-tests
12
- */
13
- export declare function runSelfTest(): Promise<boolean>;
14
- //# sourceMappingURL=selfTest.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"selfTest.d.ts","sourceRoot":"","sources":["../../src/bin/selfTest.ts"],"names":[],"mappings":";AACA;;;;;;;GAOG;AAoCH;;GAEG;AACH,wBAAsB,WAAW,IAAI,OAAO,CAAC,OAAO,CAAC,CAuBpD"}