lua-cli 3.7.2 → 3.7.4
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/README.md +26 -0
- package/dist/api/chat.api.service.d.ts.map +1 -1
- package/dist/api/chat.api.service.js +4 -0
- package/dist/api/chat.api.service.js.map +1 -1
- package/dist/api/http.client.d.ts +25 -0
- package/dist/api/http.client.d.ts.map +1 -1
- package/dist/api/http.client.js +88 -5
- package/dist/api/http.client.js.map +1 -1
- package/dist/cli/command-definitions.d.ts.map +1 -1
- package/dist/cli/command-definitions.js +1 -6
- package/dist/cli/command-definitions.js.map +1 -1
- package/dist/commands/chat.js +1 -1
- package/dist/commands/chat.js.map +1 -1
- package/dist/commands/index.d.ts +0 -1
- package/dist/commands/index.d.ts.map +1 -1
- package/dist/commands/index.js +0 -1
- package/dist/commands/index.js.map +1 -1
- package/dist/commands/test.js +1 -1
- package/dist/commands/test.js.map +1 -1
- package/dist/config/constants.d.ts +7 -0
- package/dist/config/constants.d.ts.map +1 -1
- package/dist/config/constants.js +10 -0
- package/dist/config/constants.js.map +1 -1
- package/dist/services/analytics.d.ts +6 -0
- package/dist/services/analytics.d.ts.map +1 -1
- package/dist/services/analytics.js +19 -0
- package/dist/services/analytics.js.map +1 -1
- package/dist/services/auth.d.ts +11 -4
- package/dist/services/auth.d.ts.map +1 -1
- package/dist/services/auth.js +35 -6
- package/dist/services/auth.js.map +1 -1
- package/dist/utils/auth-flows.d.ts +4 -4
- package/dist/utils/auth-flows.d.ts.map +1 -1
- package/dist/utils/auth-flows.js +53 -37
- package/dist/utils/auth-flows.js.map +1 -1
- package/dist/utils/keytar-loader.d.ts.map +1 -1
- package/dist/utils/keytar-loader.js +8 -1
- package/dist/utils/keytar-loader.js.map +1 -1
- package/dist/utils/sandbox-storage.js +1 -1
- package/dist/utils/sandbox-storage.js.map +1 -1
- package/node_modules/@lua/shared-types/dist/index.d.mts +92 -0
- package/node_modules/@lua/shared-types/dist/index.d.ts +92 -0
- package/node_modules/@lua/shared-types/dist/index.js +104 -0
- package/node_modules/@lua/shared-types/dist/index.mjs +79 -0
- package/node_modules/@lua/shared-types/package.json +26 -0
- package/node_modules/@lua/shared-types/src/ai-generate.types.ts +79 -0
- package/node_modules/@lua/shared-types/src/ai-generate.utils.ts +19 -0
- package/node_modules/@lua/shared-types/src/channel.type.ts +21 -0
- package/node_modules/@lua/shared-types/src/index.ts +5 -0
- package/node_modules/@lua/shared-types/src/sandbox-contract.ts +42 -0
- package/node_modules/@lua/shared-types/src/unstructured-types.ts +58 -0
- package/node_modules/@lua/shared-types/tsconfig.json +12 -0
- package/node_modules/@lua/shared-types/tsup.config.ts +9 -0
- package/package.json +11 -18
- package/scripts/resolve-workspace-deps.cjs +61 -0
- package/dist/commands/dev.d.ts +0 -27
- package/dist/commands/dev.d.ts.map +0 -1
- package/dist/commands/dev.js +0 -130
- package/dist/commands/dev.js.map +0 -1
- package/dist/config/dev.constants.d.ts +0 -56
- package/dist/config/dev.constants.d.ts.map +0 -1
- package/dist/config/dev.constants.js +0 -70
- package/dist/config/dev.constants.js.map +0 -1
- package/dist/utils/dev-api.d.ts +0 -6
- package/dist/utils/dev-api.d.ts.map +0 -1
- package/dist/utils/dev-api.js +0 -6
- package/dist/utils/dev-api.js.map +0 -1
- package/dist/utils/dev-server.d.ts +0 -27
- package/dist/utils/dev-server.d.ts.map +0 -1
- package/dist/utils/dev-server.js +0 -736
- package/dist/utils/dev-server.js.map +0 -1
- package/dist/utils/dev-watcher.d.ts +0 -31
- package/dist/utils/dev-watcher.d.ts.map +0 -1
- package/dist/utils/dev-watcher.js +0 -126
- package/dist/utils/dev-watcher.js.map +0 -1
- package/dist/web/app.css +0 -7401
- package/dist/web/app.js +0 -204
- package/dist/web/index.html +0 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lua-cli",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.4",
|
|
4
4
|
"description": "Build, test, and deploy AI agents with custom tools, webhooks, and scheduled jobs. Features LuaAgent unified configuration, streaming chat, and batch deployment.",
|
|
5
5
|
"readmeFilename": "README.md",
|
|
6
6
|
"main": "dist/api-exports.js",
|
|
@@ -12,8 +12,9 @@
|
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"clean": "rm -rf dist",
|
|
15
|
-
"build
|
|
16
|
-
"
|
|
15
|
+
"build": "npm run clean && tsc && chmod +x dist/index.js",
|
|
16
|
+
"prepack": "node scripts/resolve-workspace-deps.cjs",
|
|
17
|
+
"postpack": "git checkout package.json",
|
|
17
18
|
"prepublishOnly": "npm run build",
|
|
18
19
|
"test": "jest",
|
|
19
20
|
"test:watch": "jest --watch",
|
|
@@ -53,15 +54,16 @@
|
|
|
53
54
|
"dist/**/*",
|
|
54
55
|
"template/**/*",
|
|
55
56
|
"docs/**/*",
|
|
57
|
+
"scripts/**/*",
|
|
56
58
|
"README.md",
|
|
57
59
|
"CHANGELOG.md",
|
|
58
60
|
"LICENSE"
|
|
59
61
|
],
|
|
60
62
|
"dependencies": {
|
|
61
|
-
"@lua/shared-types": "
|
|
62
|
-
"ai": "^5.0.76",
|
|
63
|
+
"@lua/shared-types": "0.0.1",
|
|
63
64
|
"@tailwindcss/postcss": "^4.1.14",
|
|
64
65
|
"@tanstack/react-query": "^5.90.11",
|
|
66
|
+
"ai": "^5.0.76",
|
|
65
67
|
"autoprefixer": "^10.4.21",
|
|
66
68
|
"chalk": "^5.3.0",
|
|
67
69
|
"commander": "^14.0.1",
|
|
@@ -70,21 +72,16 @@
|
|
|
70
72
|
"esbuild": "^0.25.10",
|
|
71
73
|
"inquirer": "^12.9.6",
|
|
72
74
|
"js-yaml": "^4.1.0",
|
|
73
|
-
"lua-ai-chat": "^0.0.7",
|
|
74
|
-
"luaniverse": "^4.2.1",
|
|
75
|
-
"node-fetch": "^3.3.2",
|
|
76
75
|
"open": "^10.1.0",
|
|
77
|
-
"postcss": "^8.5.6",
|
|
78
|
-
"postcss-prefixwrap": "^1.57.0",
|
|
79
76
|
"posthog-node": "^5.26.0",
|
|
80
|
-
"socket.io-client": "^4.7.2",
|
|
81
|
-
"sonner": "^2.0.7",
|
|
82
77
|
"ts-evaluator": "^2.0.0",
|
|
83
78
|
"ts-morph": "^27.0.0",
|
|
84
|
-
"ws": "^8.18.3",
|
|
85
79
|
"zod": "^3.24.1",
|
|
86
80
|
"zod-to-json-schema": "^3.24.6"
|
|
87
81
|
},
|
|
82
|
+
"bundledDependencies": [
|
|
83
|
+
"@lua/shared-types"
|
|
84
|
+
],
|
|
88
85
|
"optionalDependencies": {
|
|
89
86
|
"keytar": "^7.9.0"
|
|
90
87
|
},
|
|
@@ -93,16 +90,12 @@
|
|
|
93
90
|
"@types/inquirer": "^9.0.9",
|
|
94
91
|
"@types/jest": "^29.5.8",
|
|
95
92
|
"@types/js-yaml": "^4.0.9",
|
|
96
|
-
"@types/lodash": "^4.17.20",
|
|
97
93
|
"@types/node": "^24.5.1",
|
|
98
|
-
"@types/node-fetch": "^2.6.13",
|
|
99
|
-
"@types/ws": "^8.18.1",
|
|
100
94
|
"@typescript-eslint/parser": "^8.44.1",
|
|
101
95
|
"@typescript-eslint/typescript-estree": "^8.44.1",
|
|
102
|
-
"axios": "^1.13.4",
|
|
103
|
-
"date-fns": "^4.1.0",
|
|
104
96
|
"jest": "^29.7.0",
|
|
105
97
|
"lodash": "^4.17.21",
|
|
98
|
+
"nock": "^14.0.11",
|
|
106
99
|
"stripe": "^19.2.0",
|
|
107
100
|
"ts-jest": "^29.1.1",
|
|
108
101
|
"ts-node": "^10.9.2",
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pre-pack script: resolves workspace:* references in package.json
|
|
3
|
+
* before npm creates the tarball.
|
|
4
|
+
*
|
|
5
|
+
* pnpm does this automatically during `pnpm publish`, but `npm publish`
|
|
6
|
+
* does not. This script bridges the gap so both work.
|
|
7
|
+
*
|
|
8
|
+
* Usage: Called automatically via the "prepack" lifecycle hook.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
const fs = require('fs');
|
|
12
|
+
const path = require('path');
|
|
13
|
+
|
|
14
|
+
const pkgPath = path.join(__dirname, '..', 'package.json');
|
|
15
|
+
const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf8'));
|
|
16
|
+
|
|
17
|
+
let changed = false;
|
|
18
|
+
|
|
19
|
+
for (const depType of ['dependencies', 'devDependencies', 'optionalDependencies', 'peerDependencies']) {
|
|
20
|
+
const deps = pkg[depType];
|
|
21
|
+
if (!deps) continue;
|
|
22
|
+
|
|
23
|
+
for (const [name, version] of Object.entries(deps)) {
|
|
24
|
+
if (typeof version === 'string' && version.startsWith('workspace:')) {
|
|
25
|
+
// Extract the modifier after "workspace:" (e.g., *, ^, ~)
|
|
26
|
+
const modifier = version.slice('workspace:'.length);
|
|
27
|
+
|
|
28
|
+
// Resolve the actual version from the workspace package
|
|
29
|
+
const possiblePaths = [
|
|
30
|
+
path.join(__dirname, '..', '..', name.replace('@lua/', ''), 'package.json'),
|
|
31
|
+
path.join(__dirname, '..', '..', name.split('/').pop(), 'package.json'),
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
let resolved = false;
|
|
35
|
+
for (const depPkgPath of possiblePaths) {
|
|
36
|
+
if (fs.existsSync(depPkgPath)) {
|
|
37
|
+
const depPkg = JSON.parse(fs.readFileSync(depPkgPath, 'utf8'));
|
|
38
|
+
// Preserve pnpm workspace modifiers: ^ → ^version, ~ → ~version, * → version
|
|
39
|
+
const prefix = modifier === '^' ? '^' : modifier === '~' ? '~' : '';
|
|
40
|
+
deps[name] = prefix + depPkg.version;
|
|
41
|
+
console.log(` Resolved ${name}: ${version} → ${deps[name]}`);
|
|
42
|
+
resolved = true;
|
|
43
|
+
changed = true;
|
|
44
|
+
break;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
if (!resolved) {
|
|
49
|
+
console.error(` Error: Could not resolve workspace dependency ${name}`);
|
|
50
|
+
process.exit(1);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (changed) {
|
|
57
|
+
fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + '\n');
|
|
58
|
+
console.log('Workspace dependencies resolved for publishing.');
|
|
59
|
+
} else {
|
|
60
|
+
console.log('No workspace dependencies found.');
|
|
61
|
+
}
|
package/dist/commands/dev.d.ts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Dev Command
|
|
3
|
-
* Orchestrates the development mode with live reloading, chat interface, and tool testing
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* Main dev command - starts development mode with live reloading.
|
|
7
|
-
*
|
|
8
|
-
* This command performs the following steps:
|
|
9
|
-
* 1. Validates configuration and authentication
|
|
10
|
-
* 2. Compiles the skill
|
|
11
|
-
* 3. Pushes all skills to sandbox environment
|
|
12
|
-
* 4. Starts web server with chat interface and tool testing
|
|
13
|
-
* 5. Opens browser to chat interface
|
|
14
|
-
* 6. Watches for file changes and auto-recompiles
|
|
15
|
-
*
|
|
16
|
-
* Features:
|
|
17
|
-
* - Live chat interface for testing skills
|
|
18
|
-
* - Real-time tool testing with WebSocket log streaming
|
|
19
|
-
* - Automatic recompilation and push on file changes
|
|
20
|
-
* - Environment variable management
|
|
21
|
-
* - Persona configuration
|
|
22
|
-
* - Multi-skill support
|
|
23
|
-
*
|
|
24
|
-
* @returns Promise that resolves when dev mode is stopped (never resolves normally)
|
|
25
|
-
*/
|
|
26
|
-
export declare function devCommand(): Promise<void>;
|
|
27
|
-
//# sourceMappingURL=dev.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dev.d.ts","sourceRoot":"","sources":["../../src/commands/dev.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAgBH;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAsB,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC,CA0HhD"}
|
package/dist/commands/dev.js
DELETED
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Dev Command
|
|
3
|
-
* Orchestrates the development mode with live reloading, chat interface, and tool testing
|
|
4
|
-
*/
|
|
5
|
-
import open from 'open';
|
|
6
|
-
import { compileCommand } from './compile.js';
|
|
7
|
-
import { readYamlConfig } from '../utils/files.js';
|
|
8
|
-
import { skillHandler } from '../primitives/index.js';
|
|
9
|
-
import { withErrorHandling, writeProgress, writeSuccess } from '../utils/cli.js';
|
|
10
|
-
import { initializeCommand } from '../utils/command-utils.js';
|
|
11
|
-
import { pushSkillsToSandbox, pushProcessorsToSandbox } from '../utils/dev-api.js';
|
|
12
|
-
import { createChatServer } from '../utils/dev-server.js';
|
|
13
|
-
import { createFileWatcher } from '../utils/dev-watcher.js';
|
|
14
|
-
import { DEV_SERVER_PORT, DEV_DEFAULTS } from '../config/dev.constants.js';
|
|
15
|
-
import { loadManifest, getPrimitivesByKind } from '../utils/artifact-loader.js';
|
|
16
|
-
import { PrimitiveKind } from '../compiler/types.js';
|
|
17
|
-
import { trackEvent } from '../services/analytics.js';
|
|
18
|
-
/**
|
|
19
|
-
* Main dev command - starts development mode with live reloading.
|
|
20
|
-
*
|
|
21
|
-
* This command performs the following steps:
|
|
22
|
-
* 1. Validates configuration and authentication
|
|
23
|
-
* 2. Compiles the skill
|
|
24
|
-
* 3. Pushes all skills to sandbox environment
|
|
25
|
-
* 4. Starts web server with chat interface and tool testing
|
|
26
|
-
* 5. Opens browser to chat interface
|
|
27
|
-
* 6. Watches for file changes and auto-recompiles
|
|
28
|
-
*
|
|
29
|
-
* Features:
|
|
30
|
-
* - Live chat interface for testing skills
|
|
31
|
-
* - Real-time tool testing with WebSocket log streaming
|
|
32
|
-
* - Automatic recompilation and push on file changes
|
|
33
|
-
* - Environment variable management
|
|
34
|
-
* - Persona configuration
|
|
35
|
-
* - Multi-skill support
|
|
36
|
-
*
|
|
37
|
-
* @returns Promise that resolves when dev mode is stopped (never resolves normally)
|
|
38
|
-
*/
|
|
39
|
-
export async function devCommand() {
|
|
40
|
-
return withErrorHandling(async () => {
|
|
41
|
-
// Step 1: Validate configuration and authenticate
|
|
42
|
-
const { config, apiKey, agentId } = await initializeCommand();
|
|
43
|
-
const version = skillHandler.getFromYaml(config)[0]?.version || DEV_DEFAULTS.VERSION;
|
|
44
|
-
// Step 3: Compile the skill
|
|
45
|
-
writeProgress("🔄 Compiling skill...");
|
|
46
|
-
await compileCommand();
|
|
47
|
-
// Step 4: Read and validate compiled output
|
|
48
|
-
const updatedConfig = readYamlConfig();
|
|
49
|
-
if (!updatedConfig) {
|
|
50
|
-
console.error("❌ Failed to read updated skill configuration after compilation.");
|
|
51
|
-
throw new Error("Failed to read updated skill configuration after compilation.");
|
|
52
|
-
}
|
|
53
|
-
// Load manifest
|
|
54
|
-
const manifest = loadManifest();
|
|
55
|
-
const skills = getPrimitivesByKind(manifest, PrimitiveKind.SKILL);
|
|
56
|
-
if (skills.length === 0) {
|
|
57
|
-
console.error("❌ No skills found in compiled output.");
|
|
58
|
-
throw new Error("No skills found in compiled output.");
|
|
59
|
-
}
|
|
60
|
-
const skillId = skillHandler.getFromYaml(updatedConfig)[0]?.skillId || null;
|
|
61
|
-
if (!skillId) {
|
|
62
|
-
console.error("❌ No skillId found after compilation. Skill creation may have failed.");
|
|
63
|
-
console.error("Available skills:", updatedConfig.skills);
|
|
64
|
-
throw new Error("No skillId found after compilation. Skill creation may have failed.");
|
|
65
|
-
}
|
|
66
|
-
// Step 6: Push skills to sandbox (using manifest directly)
|
|
67
|
-
writeProgress("🔄 Pushing skills to sandbox...");
|
|
68
|
-
const sandboxIds = await pushSkillsToSandbox(apiKey, agentId, manifest, updatedConfig, true);
|
|
69
|
-
if (Object.keys(sandboxIds).length === 0) {
|
|
70
|
-
console.error("❌ Failed to push any skills to sandbox. Cannot start development mode.");
|
|
71
|
-
throw new Error("Failed to push any skills to sandbox. Cannot start development mode.");
|
|
72
|
-
}
|
|
73
|
-
writeSuccess(`✅ Pushed ${Object.keys(sandboxIds).length} skills to sandbox`);
|
|
74
|
-
// Step 6b: Push preprocessors and postprocessors to sandbox (using manifest directly)
|
|
75
|
-
const preprocessors = getPrimitivesByKind(manifest, PrimitiveKind.PREPROCESSOR);
|
|
76
|
-
const postprocessors = getPrimitivesByKind(manifest, PrimitiveKind.POSTPROCESSOR);
|
|
77
|
-
if (preprocessors.length > 0 || postprocessors.length > 0) {
|
|
78
|
-
writeProgress("🔄 Pushing processors to sandbox...");
|
|
79
|
-
const processorCounts = await pushProcessorsToSandbox(apiKey, agentId, manifest, updatedConfig, true);
|
|
80
|
-
if (processorCounts.preprocessors > 0 || processorCounts.postprocessors > 0) {
|
|
81
|
-
writeSuccess(`✅ Pushed ${processorCounts.preprocessors} preprocessor(s) and ${processorCounts.postprocessors} postprocessor(s) to sandbox`);
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
// Use the first skill's sandbox ID for the web interface
|
|
85
|
-
const firstSkillName = Object.keys(sandboxIds)[0];
|
|
86
|
-
const sandboxSkillId = sandboxIds[firstSkillName];
|
|
87
|
-
if (!sandboxSkillId) {
|
|
88
|
-
console.error("❌ No sandbox skill ID found. Cannot start chat interface.");
|
|
89
|
-
throw new Error("No sandbox skill ID found. Cannot start chat interface.");
|
|
90
|
-
}
|
|
91
|
-
// Step 7: Start web server for chat interface
|
|
92
|
-
const { server, wss, broadcastLog } = createChatServer(apiKey, agentId, skillId, sandboxSkillId, DEV_SERVER_PORT, updatedConfig // Pass config for processor overrides
|
|
93
|
-
);
|
|
94
|
-
// Step 8: Open browser to chat interface
|
|
95
|
-
let browserOpened = false;
|
|
96
|
-
try {
|
|
97
|
-
await open(`http://localhost:${DEV_SERVER_PORT}`);
|
|
98
|
-
browserOpened = true;
|
|
99
|
-
writeSuccess("🌐 Chat interface opened in your browser");
|
|
100
|
-
broadcastLog("🌐 Chat interface opened in your browser", 'info');
|
|
101
|
-
}
|
|
102
|
-
catch (error) {
|
|
103
|
-
writeSuccess(`🌐 Chat interface available at: http://localhost:${DEV_SERVER_PORT}`);
|
|
104
|
-
broadcastLog(`🌐 Chat interface available at: http://localhost:${DEV_SERVER_PORT}`, 'info');
|
|
105
|
-
}
|
|
106
|
-
trackEvent('cli_dev_started', {
|
|
107
|
-
skills_pushed_count: Object.keys(sandboxIds).length,
|
|
108
|
-
preprocessors_pushed_count: preprocessors.length,
|
|
109
|
-
postprocessors_pushed_count: postprocessors.length,
|
|
110
|
-
browser_opened: browserOpened,
|
|
111
|
-
});
|
|
112
|
-
// Step 9: Start file watching
|
|
113
|
-
writeSuccess("🔍 Watching for file changes... (Press Ctrl+C to stop)");
|
|
114
|
-
broadcastLog("🔍 Watching for file changes... (Press Ctrl+C to stop)", 'info');
|
|
115
|
-
const { watcher, cleanup } = createFileWatcher({
|
|
116
|
-
apiKey,
|
|
117
|
-
agentId,
|
|
118
|
-
broadcastLog,
|
|
119
|
-
});
|
|
120
|
-
// Step 10: Handle graceful shutdown
|
|
121
|
-
process.on('SIGINT', () => {
|
|
122
|
-
writeSuccess("\n🛑 Stopping file watcher...");
|
|
123
|
-
cleanup();
|
|
124
|
-
process.exit(0);
|
|
125
|
-
});
|
|
126
|
-
// Keep the process alive
|
|
127
|
-
return new Promise(() => { });
|
|
128
|
-
}, "dev push");
|
|
129
|
-
}
|
|
130
|
-
//# sourceMappingURL=dev.js.map
|
package/dist/commands/dev.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dev.js","sourceRoot":"","sources":["../../src/commands/dev.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Constants for the dev command
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* Sandbox skill ID storage identifiers for keytar
|
|
6
|
-
*/
|
|
7
|
-
export declare const SANDBOX_STORAGE: {
|
|
8
|
-
readonly SERVICE: "lua-cli-sandbox";
|
|
9
|
-
readonly ACCOUNT: "sandbox-skill-id";
|
|
10
|
-
};
|
|
11
|
-
/**
|
|
12
|
-
* Default port for dev server
|
|
13
|
-
*/
|
|
14
|
-
export declare const DEV_SERVER_PORT = 3000;
|
|
15
|
-
/**
|
|
16
|
-
* File watching configuration
|
|
17
|
-
*/
|
|
18
|
-
export declare const FILE_WATCH_CONFIG: {
|
|
19
|
-
readonly DEBOUNCE_DELAY: 500;
|
|
20
|
-
readonly RECURSIVE: true;
|
|
21
|
-
};
|
|
22
|
-
/**
|
|
23
|
-
* Paths to ignore during file watching
|
|
24
|
-
*/
|
|
25
|
-
export declare const WATCH_IGNORE_PATTERNS: readonly [".lua/", ".lua\\", "node_modules/", "node_modules\\", ".git/", ".git\\", "dist/", "dist\\"];
|
|
26
|
-
/**
|
|
27
|
-
* File extensions to ignore during watching
|
|
28
|
-
*/
|
|
29
|
-
export declare const WATCH_IGNORE_EXTENSIONS: readonly [".log", ".tmp", ".js", ".map"];
|
|
30
|
-
/**
|
|
31
|
-
* HTTP response codes
|
|
32
|
-
*/
|
|
33
|
-
export declare const HTTP_STATUS: {
|
|
34
|
-
readonly OK: 200;
|
|
35
|
-
readonly NOT_FOUND: 404;
|
|
36
|
-
readonly SERVER_ERROR: 500;
|
|
37
|
-
};
|
|
38
|
-
/**
|
|
39
|
-
* CORS headers
|
|
40
|
-
*/
|
|
41
|
-
export declare const CORS_HEADERS: {
|
|
42
|
-
readonly 'Access-Control-Allow-Origin': "*";
|
|
43
|
-
readonly 'Access-Control-Allow-Methods': "GET, POST, OPTIONS";
|
|
44
|
-
readonly 'Access-Control-Allow-Headers': "Content-Type";
|
|
45
|
-
};
|
|
46
|
-
/**
|
|
47
|
-
* Default skill configuration values
|
|
48
|
-
*/
|
|
49
|
-
export declare const DEV_DEFAULTS: {
|
|
50
|
-
readonly VERSION: "1.0.0";
|
|
51
|
-
readonly SKILL_NAME: "Unknown Skill";
|
|
52
|
-
readonly DESCRIPTION: "A Lua skill for AI automation";
|
|
53
|
-
readonly NOT_COMPILED_DESCRIPTION: "A Lua skill for AI automation (not compiled)";
|
|
54
|
-
readonly NOT_COMPILED_CONTEXT: "This skill has not been compiled yet. Run \"lua compile\" to see full context information.";
|
|
55
|
-
};
|
|
56
|
-
//# sourceMappingURL=dev.constants.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dev.constants.d.ts","sourceRoot":"","sources":["../../src/config/dev.constants.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;GAEG;AACH,eAAO,MAAM,eAAe;;;CAGlB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,eAAe,OAAO,CAAC;AAEpC;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;CAGpB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,qBAAqB,uGASxB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,uBAAuB,0CAK1B,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,WAAW;;;;CAId,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,YAAY;;;;CAIf,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,YAAY;;;;;;CAMf,CAAC"}
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Constants for the dev command
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* Sandbox skill ID storage identifiers for keytar
|
|
6
|
-
*/
|
|
7
|
-
export const SANDBOX_STORAGE = {
|
|
8
|
-
SERVICE: 'lua-cli-sandbox',
|
|
9
|
-
ACCOUNT: 'sandbox-skill-id',
|
|
10
|
-
};
|
|
11
|
-
/**
|
|
12
|
-
* Default port for dev server
|
|
13
|
-
*/
|
|
14
|
-
export const DEV_SERVER_PORT = 3000;
|
|
15
|
-
/**
|
|
16
|
-
* File watching configuration
|
|
17
|
-
*/
|
|
18
|
-
export const FILE_WATCH_CONFIG = {
|
|
19
|
-
DEBOUNCE_DELAY: 500, // milliseconds
|
|
20
|
-
RECURSIVE: true,
|
|
21
|
-
};
|
|
22
|
-
/**
|
|
23
|
-
* Paths to ignore during file watching
|
|
24
|
-
*/
|
|
25
|
-
export const WATCH_IGNORE_PATTERNS = [
|
|
26
|
-
'.lua/',
|
|
27
|
-
'.lua\\',
|
|
28
|
-
'node_modules/',
|
|
29
|
-
'node_modules\\',
|
|
30
|
-
'.git/',
|
|
31
|
-
'.git\\',
|
|
32
|
-
'dist/',
|
|
33
|
-
'dist\\',
|
|
34
|
-
];
|
|
35
|
-
/**
|
|
36
|
-
* File extensions to ignore during watching
|
|
37
|
-
*/
|
|
38
|
-
export const WATCH_IGNORE_EXTENSIONS = [
|
|
39
|
-
'.log',
|
|
40
|
-
'.tmp',
|
|
41
|
-
'.js',
|
|
42
|
-
'.map',
|
|
43
|
-
];
|
|
44
|
-
/**
|
|
45
|
-
* HTTP response codes
|
|
46
|
-
*/
|
|
47
|
-
export const HTTP_STATUS = {
|
|
48
|
-
OK: 200,
|
|
49
|
-
NOT_FOUND: 404,
|
|
50
|
-
SERVER_ERROR: 500,
|
|
51
|
-
};
|
|
52
|
-
/**
|
|
53
|
-
* CORS headers
|
|
54
|
-
*/
|
|
55
|
-
export const CORS_HEADERS = {
|
|
56
|
-
'Access-Control-Allow-Origin': '*',
|
|
57
|
-
'Access-Control-Allow-Methods': 'GET, POST, OPTIONS',
|
|
58
|
-
'Access-Control-Allow-Headers': 'Content-Type',
|
|
59
|
-
};
|
|
60
|
-
/**
|
|
61
|
-
* Default skill configuration values
|
|
62
|
-
*/
|
|
63
|
-
export const DEV_DEFAULTS = {
|
|
64
|
-
VERSION: '1.0.0',
|
|
65
|
-
SKILL_NAME: 'Unknown Skill',
|
|
66
|
-
DESCRIPTION: 'A Lua skill for AI automation',
|
|
67
|
-
NOT_COMPILED_DESCRIPTION: 'A Lua skill for AI automation (not compiled)',
|
|
68
|
-
NOT_COMPILED_CONTEXT: 'This skill has not been compiled yet. Run "lua compile" to see full context information.',
|
|
69
|
-
};
|
|
70
|
-
//# sourceMappingURL=dev.constants.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dev.constants.js","sourceRoot":"","sources":["../../src/config/dev.constants.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,OAAO,EAAE,iBAAiB;IAC1B,OAAO,EAAE,kBAAkB;CACnB,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,IAAI,CAAC;AAEpC;;GAEG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,cAAc,EAAE,GAAG,EAAE,eAAe;IACpC,SAAS,EAAE,IAAI;CACP,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,OAAO;IACP,QAAQ;IACR,eAAe;IACf,gBAAgB;IAChB,OAAO;IACP,QAAQ;IACR,OAAO;IACP,QAAQ;CACA,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACrC,MAAM;IACN,MAAM;IACN,KAAK;IACL,MAAM;CACE,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,EAAE,EAAE,GAAG;IACP,SAAS,EAAE,GAAG;IACd,YAAY,EAAE,GAAG;CACT,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,6BAA6B,EAAE,GAAG;IAClC,8BAA8B,EAAE,oBAAoB;IACpD,8BAA8B,EAAE,cAAc;CACtC,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,OAAO,EAAE,OAAO;IAChB,UAAU,EAAE,eAAe;IAC3B,WAAW,EAAE,+BAA+B;IAC5C,wBAAwB,EAAE,8CAA8C;IACxE,oBAAoB,EAAE,0FAA0F;CACxG,CAAC"}
|
package/dist/utils/dev-api.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Re-export from services/sandbox.service.ts for backward compatibility.
|
|
3
|
-
* The actual implementation moved to src/services/sandbox.service.ts.
|
|
4
|
-
*/
|
|
5
|
-
export { sendChatMessage, pushSkillsToSandbox, pushProcessorsToSandbox, } from '../services/sandbox.service.js';
|
|
6
|
-
//# sourceMappingURL=dev-api.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dev-api.d.ts","sourceRoot":"","sources":["../../src/utils/dev-api.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,uBAAuB,GACxB,MAAM,gCAAgC,CAAC"}
|
package/dist/utils/dev-api.js
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Re-export from services/sandbox.service.ts for backward compatibility.
|
|
3
|
-
* The actual implementation moved to src/services/sandbox.service.ts.
|
|
4
|
-
*/
|
|
5
|
-
export { sendChatMessage, pushSkillsToSandbox, pushProcessorsToSandbox, } from '../services/sandbox.service.js';
|
|
6
|
-
//# sourceMappingURL=dev-api.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dev-api.js","sourceRoot":"","sources":["../../src/utils/dev-api.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,uBAAuB,GACxB,MAAM,gCAAgC,CAAC"}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Dev Server Utilities
|
|
3
|
-
* Handles HTTP server, WebSocket connections, and all HTTP endpoints for dev mode
|
|
4
|
-
*/
|
|
5
|
-
import { WebSocketServer } from 'ws';
|
|
6
|
-
import { YamlConfig } from '../types/yaml.types.js';
|
|
7
|
-
/**
|
|
8
|
-
* Server instance with WebSocket and broadcast capabilities
|
|
9
|
-
*/
|
|
10
|
-
export interface DevServer {
|
|
11
|
-
server: any;
|
|
12
|
-
wss: WebSocketServer;
|
|
13
|
-
broadcastLog: (message: string, subType?: 'info' | 'warn' | 'error' | 'debug') => void;
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* Creates and starts the dev web server with chat interface and tool testing.
|
|
17
|
-
*
|
|
18
|
-
* @param apiKey - User's API key
|
|
19
|
-
* @param agentId - Agent ID
|
|
20
|
-
* @param skillId - Skill ID
|
|
21
|
-
* @param sandboxId - Sandbox skill ID
|
|
22
|
-
* @param port - Port to run server on
|
|
23
|
-
* @param yamlConfig - YAML config with skills and processors
|
|
24
|
-
* @returns Server instance with WebSocket and broadcast function
|
|
25
|
-
*/
|
|
26
|
-
export declare function createChatServer(apiKey: string, agentId: string, skillId: string, sandboxId: string, port: number, yamlConfig: YamlConfig): DevServer;
|
|
27
|
-
//# sourceMappingURL=dev-server.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dev-server.d.ts","sourceRoot":"","sources":["../../src/utils/dev-server.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAMH,OAAO,EAAE,eAAe,EAAE,MAAM,IAAI,CAAC;AAiBrC,OAAO,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAKpD;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,MAAM,EAAE,GAAG,CAAC;IACZ,GAAG,EAAE,eAAe,CAAC;IACrB,YAAY,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,KAAK,IAAI,CAAC;CACxF;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,gBAAgB,CAC9B,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,MAAM,EACf,SAAS,EAAE,MAAM,EACjB,IAAI,EAAE,MAAM,EACZ,UAAU,EAAE,UAAU,GACrB,SAAS,CAsJX"}
|