lua-cli 3.0.0 → 3.0.1

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 (2) hide show
  1. package/README.md +21 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -598,9 +598,23 @@ BASE_URL=https://api.example.com
598
598
  ## 🎓 Documentation
599
599
 
600
600
  ### Getting Started
601
- - [Quick Start Guide](template/QUICKSTART.md) - Complete tutorial
602
- - [CLI Reference](#cli-commands) - All available commands
603
- - [API Reference](src/api-exports.ts) - TypeScript API documentation
601
+ - **[Quick Start Guide](template/QUICKSTART.md)** - Complete step-by-step tutorial
602
+ - **[Template README](template/README.md)** - Comprehensive project guide
603
+ - **[CLI Reference](#cli-commands)** - All available commands
604
+
605
+ ### API Documentation
606
+ - **[Complete API Reference](docs/README.md)** - Full API documentation
607
+ - **[API Index](docs/API_INDEX.md)** - Quick reference table
608
+ - **Core APIs:**
609
+ - [LuaAgent](docs/api/LuaAgent.md) - Agent configuration
610
+ - [LuaSkill](docs/api/LuaSkill.md) - Tool collections
611
+ - [LuaTool](docs/api/LuaTool.md) - Creating tools
612
+ - **Runtime APIs:**
613
+ - [AI API](docs/api/AI.md) - AI text generation and analysis
614
+ - [User API](docs/api/User.md) - User data management
615
+ - [Products API](docs/api/Products.md) - Product catalog
616
+ - [Data API](docs/api/Data.md) - Custom data storage
617
+ - [Jobs API](docs/api/Jobs.md) - Dynamic job creation
604
618
 
605
619
  ### Advanced Topics
606
620
  - [Webhooks & Jobs Guide](WEBHOOKS_JOBS_USAGE_GUIDE.md) - External integrations
@@ -609,10 +623,10 @@ BASE_URL=https://api.example.com
609
623
  - [Agent Configuration](LUAAGENT_IMPLEMENTATION.md) - LuaAgent deep dive
610
624
 
611
625
  ### Examples
612
- - [Template Project](template/) - Full working example
613
- - [Complex Job Examples](template/COMPLEX_JOB_EXAMPLES.md)
614
- - [Webhook Examples](template/WEBHOOK_JOB_EXAMPLES.md)
615
- - [Tool Examples](template/TOOL_EXAMPLES.md)
626
+ - [Template Project](template/) - Full working example with 30+ tools
627
+ - [Example Skills](template/src/skills/) - Organized skill examples
628
+ - [Example Webhooks](template/src/webhooks/) - Webhook patterns
629
+ - [Example Jobs](template/src/jobs/) - Scheduled task examples
616
630
 
617
631
  ---
618
632
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lua-cli",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
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",