chore: fix alias install modes
Some checks failed
Build and Test / Validate Setup (push) Has been cancelled
Build and Test / Build (darwin-amd64) (push) Has been cancelled
Build and Test / Build (darwin-arm64) (push) Has been cancelled
Build and Test / Build (linux-amd64) (push) Has been cancelled
Build and Test / Build (windows-amd64) (push) Has been cancelled
Build and Test / Build (linux-arm64) (push) Has been cancelled
Build and Test / Security Audit (push) Has been cancelled
Build and Test / Package Results (push) Has been cancelled
Build and Test / Quality Gate (push) Has been cancelled

This commit is contained in:
Jesús Pérez 2025-09-24 14:09:04 +01:00
parent 8dee8b776e
commit 741efa1e70
3 changed files with 47 additions and 2 deletions

View File

@ -0,0 +1,41 @@
key differences between api_nu_plugin_kcl and nu_plugin_kcl:
api_nu_plugin_kcl vs nu_plugin_kcl
api_nu_plugin_kcl (API-based approach):
- Uses KCL Rust API directly via kcl-lang crate
- Commands: kcl-exec, kcl-run (inline code execution)
- Dependencies: kcl-lang = { git = "https://github.com/kcl-lang/lib" }
- Functionality: Direct API integration with KCL library
- Advanced features: Dependency resolution from kcl.mod, external packages support
- File execution: Can execute multiple KCL files with project management
- Status: Not tracked in plugin registry (likely experimental/development)
nu_plugin_kcl (CLI wrapper approach):
- Uses KCL CLI wrapper via system command execution
- Commands: kcl-run, kcl-format, kcl-validate
- Dependencies: Only nushell plugin dependencies (no direct KCL API)
- Functionality: Wraps KCL CLI commands through subprocess execution
- Mature features: Full CLI integration with formatting and validation
- File operations: Single file execution with comprehensive CLI options
- Status: Tracked in plugin registry, has upstream repository
Key Architectural Differences:
1. Integration Method:
- api_nu_plugin_kcl: Direct Rust API integration
- nu_plugin_kcl: CLI subprocess wrapper
2. Capabilities:
- api_nu_plugin_kcl: Project-aware, dependency management, inline code execution
- nu_plugin_kcl: Complete CLI feature set (run/format/validate)
3. Dependencies:
- api_nu_plugin_kcl: Requires KCL Rust library compilation
- nu_plugin_kcl: Requires KCL CLI installed on system
4. Maturity:
- api_nu_plugin_kcl: Experimental, more complex but potentially more powerful
- nu_plugin_kcl: Production-ready with comprehensive documentation
The @ prefix likely indicates that api_nu_plugin_kcl is a variant or experimental version focusing on direct API integration rather
than CLI wrapping.

View File

@ -8,7 +8,10 @@ alias h := help
alias b := build
# install plugins locally
alias i := install-local
alias il := install-local
# install plugins system
alias is := install-system
# Build alias to collect targets
alias c := collect

View File

@ -24,7 +24,8 @@ help AREA="":
echo " just h <area> - Short alias for help"
echo " just b - Build all plugins (alias for build)"
echo " just c - Collect all plugins targets (alias for collect)"
echo " just i - Install plugin (alias for install)"
echo " just il - Install plugin in nu from local distro (alias for install-local)"
echo " just is - Install plugin to system and install in nu (alias for install-system)"
echo " just s - Show plugin status (alias for status)"
echo " just v - Verify plugins (alias for verify-plugins)"
echo " just validate-nushell - Check version consistency (START HERE)"