Loading...
Loading...
Generate cross-platform installation scripts for any software, library, or module. Use when users ask to "create an installer", "generate installation script", "automate installation", "setup script for X", "install X on any OS", or need automated deployment across Windows, Linux, and macOS. The skill follows a three-phase approach: (1) Environment exploration - detect OS, gather system info, check dependencies; (2) Installation planning - propose steps with verification; (3) Execution with documentation generation.
npx skill4agent add luongnv89/skills install-script-generator# Run the environment explorer script
python3 scripts/env_explorer.pypython3 scripts/plan_generator.py --target "<software_name>" --env-file env_info.jsontarget: "<software_name>"
platform: "detected_os"
steps:
- name: "Install dependency X"
command: "..."
verify: "command to verify success"
rollback: "cleanup command if failed"
- name: "Configure system"
command: "..."
verify: "..."python3 scripts/executor.py --plan installation_plan.yamlpython3 scripts/doc_generator.py --target "<software_name>" --plan installation_plan.yaml| File | Description |
|---|---|
| System environment analysis |
| Detailed installation steps |
| Execution log and status |
| User documentation |
wingetchoco