lua-cli 3.20.0 → 3.21.0

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.
@@ -587,39 +587,42 @@ $ lua channels list
587
587
 
588
588
  ## Marketplace
589
589
 
590
- ### `lua marketplace`
590
+ ### `lua marketplace [noun] [action]`
591
591
 
592
- Access the skills marketplace.
592
+ Browse, install, and manage marketplace skills and agent templates.
593
593
 
594
594
  **Usage:**
595
595
  ```bash
596
- lua marketplace [options]
596
+ lua marketplace [noun] [action] [options]
597
597
  ```
598
598
 
599
599
  **Description:**
600
- Interactive marketplace for discovering and installing community skills. Also allows publishing your own skills.
600
+ With no arguments, prompts for a domain **Skills** or **Agent templates** then hands off to that domain's own interactive picker. Pass `noun` (`skill` or `template`) to skip straight to a domain, and `action` for non-interactive mode.
601
601
 
602
- **Features:**
603
- - 🔍 Browse verified skills
604
- - 📥 Install skills to your agent
605
- - 📤 Publish your own skills
606
- - View ratings and reviews
602
+ **Skill actions** (`lua marketplace skill <action>`):
603
+ - `list`, `publish`, `edit`, `unlist`, `unpublish`, `mine` — manage your own listings
604
+ - `search`, `view`, `install`, `update`, `uninstall`, `installed` — browse and manage skills on this agent
605
+
606
+ **Template actions** (`lua marketplace template <action>`):
607
+ - `create`, `publish`, `view`, `versions` — manage a versioned snapshot of an agent's deployable manifest
608
+ - `install`, `apply`, `status`, `installed`, `uninstall` — install onto one agent, or fleet-apply across many
607
609
 
608
610
  **Example:**
609
611
  ```bash
610
612
  $ lua marketplace
611
- ? What would you like to do?
612
- Browse Skills (Installer)
613
- Publish Skill (Creator)
613
+ ? What would you like to browse?
614
+ ❯ Skills
615
+ Agent templates
614
616
 
615
- ? Select category:
616
- - E-commerce
617
- - Productivity
618
- - Data Analysis
619
- - Communication
617
+ ? What would you like to do?
618
+ Browse & search for skills
619
+ Install a skill
620
+ ...
620
621
 
621
- ? Install "Advanced Calculator"? Yes
622
+ $ lua marketplace skill install --marketplace-id xyz --version-id v1 --force
622
623
  ✅ Skill installed successfully
624
+
625
+ $ lua marketplace template apply --template-id xyz --all-installed --force
623
626
  ```
624
627
 
625
628
  ---
package/docs/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # lua-cli v3.20.0
1
+ # lua-cli v3.21.0
2
2
 
3
- Welcome to the comprehensive API documentation for lua-cli v3.20.0. This guide covers every API, class, and function exported by the package.
3
+ Welcome to the comprehensive API documentation for lua-cli v3.21.0. This guide covers every API, class, and function exported by the package.
4
4
 
5
5
  ## 📚 Documentation Index
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lua-cli",
3
- "version": "3.20.0",
3
+ "version": "3.21.0",
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",
@@ -109,8 +109,8 @@
109
109
  "stripe": "^19.2.0",
110
110
  "ts-node": "^10.9.2",
111
111
  "tsup": "^8.5.1",
112
- "@lua/shared-sandbox": "0.0.1",
113
112
  "@lua/shared-source-sync": "0.0.1",
113
+ "@lua/shared-sandbox": "0.0.1",
114
114
  "@lua/shared-types": "0.0.1"
115
115
  },
116
116
  "scripts": {
@@ -20,7 +20,7 @@
20
20
  "inquirer": "^12.9.6",
21
21
  "stripe": "^17.5.0",
22
22
  "js-yaml": "^4.1.0",
23
- "lua-cli": "^3.20.0",
23
+ "lua-cli": "^3.21.0",
24
24
  "openai": "^5.23.0",
25
25
  "uuid": "^13.0.0",
26
26
  "zod": "^3.24.1"