lua-cli 3.0.3 → 3.1.0-alpha.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/README.md +8 -1
- package/dist/api/job.api.service.d.ts +3 -1
- package/dist/api/job.api.service.js +7 -2
- package/dist/api/logs.api.service.d.ts +11 -13
- package/dist/api/logs.api.service.js +20 -17
- package/dist/api/marketplace.api.service.d.ts +25 -0
- package/dist/api/marketplace.api.service.js +105 -0
- package/dist/api/user.data.api.service.js +7 -2
- package/dist/cli/command-definitions.d.ts +6 -0
- package/dist/cli/command-definitions.js +25 -1
- package/dist/commands/env.d.ts +11 -0
- package/dist/commands/env.js +1 -79
- package/dist/commands/index.d.ts +1 -0
- package/dist/commands/index.js +1 -0
- package/dist/commands/logs.js +128 -68
- package/dist/commands/marketplace.d.ts +12 -0
- package/dist/commands/marketplace.js +1593 -0
- package/dist/commands/persona.js +9 -4
- package/dist/common/job.instance.js +1 -3
- package/dist/common/user.instance.d.ts +5 -2
- package/dist/common/user.instance.js +55 -21
- package/dist/config/constants.d.ts +1 -1
- package/dist/config/constants.js +5 -1
- package/dist/index.js +6 -4
- package/dist/interfaces/index.d.ts +5 -4
- package/dist/interfaces/marketplace.d.ts +99 -0
- package/dist/interfaces/marketplace.js +2 -0
- package/dist/interfaces/user.d.ts +19 -0
- package/dist/interfaces/user.js +1 -0
- package/dist/types/compile.types.d.ts +48 -41
- package/dist/types/compile.types.js +1 -0
- package/dist/utils/env-loader.utils.d.ts +9 -0
- package/dist/utils/env-loader.utils.js +88 -0
- package/dist/utils/job-management.d.ts +3 -3
- package/dist/utils/postprocessor-management.d.ts +3 -3
- package/dist/utils/preprocessor-management.d.ts +3 -3
- package/dist/utils/semver.d.ts +27 -0
- package/dist/utils/semver.js +75 -0
- package/dist/utils/skill-management.d.ts +4 -4
- package/dist/utils/webhook-management.d.ts +3 -3
- package/dist/web/app.js +3 -3
- package/package.json +1 -1
- package/template/README.md +13 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lua-cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.1.0-alpha.2",
|
|
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",
|
package/template/README.md
CHANGED
|
@@ -717,6 +717,19 @@ Shows:
|
|
|
717
717
|
lua logs
|
|
718
718
|
```
|
|
719
719
|
|
|
720
|
+
Interactive filtering by primitive type:
|
|
721
|
+
- **Skills** - Filter by specific skill or view all skill logs
|
|
722
|
+
- **Jobs** - Filter by specific job (including dynamically created jobs) or view all job logs
|
|
723
|
+
- **Webhooks** - Filter by specific webhook or view all webhook logs
|
|
724
|
+
- **Preprocessors** - Filter by specific preprocessor or view all preprocessor logs
|
|
725
|
+
- **Postprocessors** - Filter by specific postprocessor or view all postprocessor logs
|
|
726
|
+
|
|
727
|
+
Each log entry displays:
|
|
728
|
+
- Primitive type, name, and ID
|
|
729
|
+
- Tool name (for skill-related logs)
|
|
730
|
+
- Timestamp and log level
|
|
731
|
+
- Full message content
|
|
732
|
+
|
|
720
733
|
See:
|
|
721
734
|
- Agent conversations
|
|
722
735
|
- Tool executions
|