lua-cli 3.1.0-alpha.4 → 3.1.0-alpha.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/dist/api/cdn.api.service.d.ts +18 -0
- package/dist/api/cdn.api.service.js +43 -0
- package/dist/api/custom.data.api.service.d.ts +4 -3
- package/dist/api/custom.data.api.service.js +4 -3
- package/dist/api/developer.api.service.d.ts +54 -1
- package/dist/api/developer.api.service.js +89 -0
- package/dist/api/job.api.service.d.ts +10 -0
- package/dist/api/job.api.service.js +14 -0
- package/dist/api/lazy-instances.d.ts +8 -0
- package/dist/api/lazy-instances.js +16 -0
- package/dist/api/postprocessor.api.service.d.ts +3 -6
- package/dist/api/postprocessor.api.service.js +2 -3
- package/dist/api-exports.d.ts +74 -6
- package/dist/api-exports.js +87 -7
- package/dist/cli/command-definitions.js +34 -7
- package/dist/commands/admin.js +1 -1
- package/dist/commands/channels.js +1 -1
- package/dist/commands/compile.js +23 -4
- package/dist/commands/evals.d.ts +8 -0
- package/dist/commands/evals.js +41 -0
- package/dist/commands/index.d.ts +2 -0
- package/dist/commands/index.js +2 -0
- package/dist/commands/init.d.ts +10 -1
- package/dist/commands/init.js +13 -3
- package/dist/commands/mcp.d.ts +18 -0
- package/dist/commands/mcp.js +393 -0
- package/dist/commands/push.js +172 -14
- package/dist/common/data.entry.instance.d.ts +1 -1
- package/dist/common/data.entry.instance.js +4 -4
- package/dist/common/job.instance.d.ts +24 -0
- package/dist/common/job.instance.js +38 -0
- package/dist/config/constants.d.ts +1 -0
- package/dist/config/constants.js +1 -0
- package/dist/index.js +1 -0
- package/dist/interfaces/cdn.d.ts +24 -0
- package/dist/interfaces/cdn.js +5 -0
- package/dist/interfaces/compile.d.ts +1 -0
- package/dist/interfaces/custom.data.d.ts +3 -3
- package/dist/interfaces/index.d.ts +1 -0
- package/dist/interfaces/mcp.d.ts +64 -0
- package/dist/interfaces/mcp.js +5 -0
- package/dist/types/api-contracts.d.ts +36 -14
- package/dist/types/compile.types.d.ts +5 -0
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js +3 -1
- package/dist/types/skill.d.ts +120 -13
- package/dist/types/skill.js +95 -5
- package/dist/utils/bundling.d.ts +4 -11
- package/dist/utils/bundling.js +19 -27
- package/dist/utils/compile.d.ts +17 -8
- package/dist/utils/compile.js +71 -37
- package/dist/utils/deployment.js +13 -6
- package/dist/utils/dev-api.js +1 -2
- package/dist/utils/dev-server.js +1 -1
- package/dist/utils/files.d.ts +8 -1
- package/dist/utils/files.js +13 -2
- package/dist/utils/init-helpers.d.ts +3 -1
- package/dist/utils/init-helpers.js +7 -2
- package/dist/utils/mcp-server-management.d.ts +23 -0
- package/dist/utils/mcp-server-management.js +212 -0
- package/dist/utils/sandbox.d.ts +4 -2
- package/dist/utils/sandbox.js +22 -3
- package/dist/web/app.css +1505 -14
- package/dist/web/app.js +79 -64
- package/package.json +2 -6
- package/template/QUICKSTART.md +57 -761
- package/template/README.md +80 -906
- package/template/examples/README.md +106 -0
- package/template/{src → examples}/jobs/AbandonedBasketProcessorJob.ts +67 -11
- package/template/{src → examples}/postprocessors/modifyResponse.ts +3 -3
- package/template/{src → examples}/skills/tools/GameScoreTrackerTool.ts +11 -15
- package/template/{src → examples}/skills/tools/OrderTool.ts +25 -0
- package/template/examples/skills/tools/PremiumFeatureTool.ts +98 -0
- package/template/{src → examples}/skills/tools/UserDataTool.ts +34 -0
- package/template/examples/webhooks/FileUploadWebhook.ts +86 -0
- package/template/package-lock.json +7895 -0
- package/template/package.json +1 -1
- package/template/src/index.ts +40 -22
- /package/template/{src → examples}/jobs/DailyCleanupJob.ts +0 -0
- /package/template/{src → examples}/jobs/DataMigrationJob.ts +0 -0
- /package/template/{src → examples}/jobs/HealthCheckJob.ts +0 -0
- /package/template/{src → examples}/preprocessors/messageMatching.ts +0 -0
- /package/template/{src → examples}/services/ApiService.ts +0 -0
- /package/template/{src → examples}/services/GetWeather.ts +0 -0
- /package/template/{src → examples}/skills/basket.skill.ts +0 -0
- /package/template/{src → examples}/skills/product.skill.ts +0 -0
- /package/template/{src → examples}/skills/tools/BasketTool.ts +0 -0
- /package/template/{src → examples}/skills/tools/CreateInlineJob.ts +0 -0
- /package/template/{src → examples}/skills/tools/CreatePostTool.ts +0 -0
- /package/template/{src → examples}/skills/tools/CustomDataTool.ts +0 -0
- /package/template/{src → examples}/skills/tools/GetWeatherTool.ts +0 -0
- /package/template/{src → examples}/skills/tools/PaymentTool.ts +0 -0
- /package/template/{src → examples}/skills/tools/ProductsTool.ts +0 -0
- /package/template/{src → examples}/skills/tools/SmartBasketTool.ts +0 -0
- /package/template/{src → examples}/skills/user.skill.ts +0 -0
- /package/template/{src → examples}/webhooks/PaymentWebhook.ts +0 -0
- /package/template/{src → examples}/webhooks/UserEventWebhook.ts +0 -0
package/template/package.json
CHANGED
package/template/src/index.ts
CHANGED
|
@@ -1,31 +1,49 @@
|
|
|
1
1
|
import { LuaAgent } from "lua-cli";
|
|
2
|
-
import userSkill from "./skills/user.skill";
|
|
3
|
-
import productSkill from "./skills/product.skill";
|
|
4
|
-
import basketSkill from "./skills/basket.skill";
|
|
5
|
-
import userEventWebhook from "./webhooks/UserEventWebhook";
|
|
6
|
-
import healthCheckJob from "./jobs/HealthCheckJob";
|
|
7
|
-
import messageMatchingPreProcessor from "./preprocessors/messageMatching";
|
|
8
|
-
import modifyResponsePostProcessor from "./postprocessors/modifyResponse";
|
|
9
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Your Lua AI Agent
|
|
5
|
+
*
|
|
6
|
+
* This is a minimal agent ready for you to customize.
|
|
7
|
+
* Add skills, webhooks, jobs, and processors as needed.
|
|
8
|
+
*
|
|
9
|
+
* Quick start:
|
|
10
|
+
* 1. Create a tool in src/skills/tools/MyTool.ts
|
|
11
|
+
* 2. Create a skill in src/skills/my.skill.ts
|
|
12
|
+
* 3. Import and add it to the skills array below
|
|
13
|
+
* 4. Run `lua test` to test your tool
|
|
14
|
+
* 5. Run `lua chat` to chat with your agent
|
|
15
|
+
*
|
|
16
|
+
* Need examples? Run `lua init --with-examples` in a new project
|
|
17
|
+
* or see: https://docs.heylua.ai/examples
|
|
18
|
+
*/
|
|
10
19
|
const agent = new LuaAgent({
|
|
11
|
-
name: ``,
|
|
12
|
-
persona: ``,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
20
|
+
name: ``, // Set during lua init
|
|
21
|
+
persona: ``, // Set during lua init
|
|
22
|
+
|
|
23
|
+
// Add your skills here
|
|
24
|
+
skills: [],
|
|
25
|
+
|
|
26
|
+
// Optional: Add webhooks for external integrations
|
|
27
|
+
// webhooks: [],
|
|
28
|
+
|
|
29
|
+
// Optional: Add scheduled jobs
|
|
30
|
+
// jobs: [],
|
|
31
|
+
|
|
32
|
+
// Optional: Add message preprocessors
|
|
33
|
+
// preProcessors: [],
|
|
34
|
+
|
|
35
|
+
// Optional: Add response postprocessors
|
|
36
|
+
// postProcessors: [],
|
|
18
37
|
});
|
|
19
38
|
|
|
20
|
-
|
|
21
39
|
async function main() {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
40
|
+
// Your agent is ready!
|
|
41
|
+
//
|
|
42
|
+
// Next steps:
|
|
43
|
+
// 1. Create your first skill with tools
|
|
44
|
+
// 2. Run `lua test` to test tools interactively
|
|
45
|
+
// 3. Run `lua chat` to chat with your agent
|
|
46
|
+
// 4. Run `lua push` to deploy
|
|
28
47
|
}
|
|
29
48
|
|
|
30
49
|
main().catch(console.error);
|
|
31
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|