Install Script Generator
Generate robust, cross-platform installation scripts that users can run with a single bash command via GitHub raw URLs. This SKILL.md is a lean index — long templates and tables live under references/ to protect the agent's context budget.
When to Use
- The user asks for a
curl | bash one-liner for their project.
- A repo needs a
install.sh that auto-detects OS, arch, and package manager.
- A Python/Go/Node/Rust module should be installable in one command from a fresh machine.
Skip this skill for Dockerfiles, CI/CD pipelines, or one-off local shell scripts.
Prerequisites
- The repo has a known
<owner>/<repo> (check git remote -v) and a default branch.
- The target software's build system is identifiable (
Makefile, package.json, setup.py, Cargo.toml, go.mod, etc.).
python3 is available locally if you plan to run the helper scripts under scripts/.
Reference Files (read on demand to save tokens)
| File |
When to read |
references/install-template.md |
When generating install.sh — full bash template with detection helpers, dependency installer, and main entry point |
references/readme-snippet.md |
When updating the README — copy-paste install block plus URL format notes |
references/edge-cases.md |
When handling unusual OS/sudo/path scenarios and writing step reports |
scripts/env_explorer.py |
Local environment probe (OS, arch, package managers, sudo) |
scripts/plan_generator.py |
Generates installation_plan.yaml from env + target |
scripts/executor.py |
Dry-runs installation_plan.yaml with rollback, before Phase 3 generation |
scripts/doc_generator.py |
Renders user-facing USAGE_GUIDE.md |
Do not inline these contents into the conversation; link to them. Keeping SKILL.md short preserves the context window for the actual install logic.
Repo Sync (mandatory before edits)
Before creating, updating, or deleting files in an existing repo, sync the current branch with remote:
branch="$(git rev-parse --abbrev-ref HEAD)"
git fetch origin
git pull --rebase origin "$branch"
If the working tree is dirty, git stash push -u -m pre-sync first, sync, then git stash pop. If origin is missing or rebase/stash conflicts occur, stop and ask the user before continuing.
Workflow
Phase 1 — Exploration
- Identify the target software/module/tool.
- Inspect the repo for build files (
Makefile, package.json, setup.py, Cargo.toml, go.mod, ...).
- List dependencies the software needs to build and run.
- Capture
<owner>/<repo> and the default branch from git remote -v and git branch --show-current. Ask the user if missing.
- Run
python3 scripts/env_explorer.py to capture OS, arch, package managers, shell, and sudo availability into env_info.json.
Phase 2 — Planning
- Resolve the dependency graph and order operations.
- Detect existing installations to avoid duplicate work.
- Plan a verification step for each phase.
- Plan rollback / cleanup on failure.
- Run
python3 scripts/plan_generator.py --target "<name>" --env-file env_info.json --deps <dep1> <dep2> ... (pass the dependencies resolved in step 1, space-separated; omit --deps only if there are none) to emit installation_plan.yaml.
- Run
python3 scripts/executor.py --plan installation_plan.yaml --dry-run and confirm the report lists every step in the intended order with a rollback command present for each. Dry-run skips execution, so this checks the plan's shape, not that installation or rollback actually works.
Phase 3 — Generation (primary output)
Generate install.sh at the repo root using references/install-template.md. The template contains four sections you compose:
- Header + colour helpers (
info, ok, warn, err, die).
- Detection helpers (
detect_os, detect_arch, detect_package_manager, need_sudo).
install_deps switch covering apt/dnf/yum/pacman/brew/zypper.
install_<tool> (customised per target), verify_installation, and main.
Read references/install-template.md for the exact code; do not paste it into chat. If Windows support is needed, also generate install.ps1 (one-liner: irm <raw_url> | iex).
Phase 4 — Documentation
- Insert the install block from
references/readme-snippet.md into the project README, substituting <owner>/<repo>/<branch>.
- Run
python3 scripts/doc_generator.py --target "<name>" --plan installation_plan.yaml to emit USAGE_GUIDE.md.
- Print the final one-liner so the user can copy it.
Output Files
| File |
Description |
install.sh |
Primary output — standalone installer for curl | bash |
install.ps1 |
Optional Windows PowerShell installer |
env_info.json |
Local environment probe |
installation_plan.yaml |
Ordered install steps |
USAGE_GUIDE.md |
User-facing docs |
Acceptance Criteria
install.sh exists at repo root, starts with #!/usr/bin/env bash and set -euo pipefail.
- Auto-detects OS, architecture, and package manager; exits non-zero with a clear message on unsupported targets.
- Handles
sudo gracefully (root, sudo, or fail-fast).
- Verifies the installation at the end (
command -v $TOOL_NAME plus --version when available).
- README contains a
curl -sSL ... | bash one-liner that resolves to the raw GitHub URL.
- Expected output on success ends with
[ OK ] Installation complete!.
Edge Cases
See references/edge-cases.md for the full list. Highlights:
- Unsupported OS / architecture —
die with the detected value; user sees what failed.
- No package manager —
install_deps aborts with the manager it expected.
- No sudo —
need_sudo exits with Run as root or install sudo.
- Windows native — generate
install.ps1 separately; install.sh warns under MSYS/Cygwin.
- Script in subdirectory — adjust the raw URL path; note it in the README snippet.
Step Completion Reports
After each phase, emit a ◆ block with √/× checks and a Result: PASS | FAIL | PARTIAL line. The exact templates for the four phases live in references/edge-cases.md so you can copy them verbatim without bloating SKILL.md.
Expected Output
curl -sSL https://raw.githubusercontent.com/owner/mytool/main/install.sh | bash
Expected runtime banner:
[INFO] OS: linux | Arch: x86_64 | Package Manager: apt
[ OK ] Dependencies installed
[ OK ] mytool 1.2.0 installed successfully
[ OK ] Installation complete!
1---2name: install-script-generator3description: Generate cross-platform install scripts for any software or library — a standalone install.sh runnable via a curl/wget one-liner with OS, arch, and package manager detection. Don't use for Dockerfiles, CI/CD pipelines, or one-off shell scripts.4license: MIT5---67# Install Script Generator89Generate robust, cross-platform installation scripts that users can run with a **single bash command** via GitHub raw URLs. This SKILL.md is a lean index — long templates and tables live under `references/` to protect the agent's context budget.1011## When to Use1213- The user asks for a `curl | bash` one-liner for their project.14- A repo needs a `install.sh` that auto-detects OS, arch, and package manager.15- A Python/Go/Node/Rust module should be installable in one command from a fresh machine.1617Skip this skill for Dockerfiles, CI/CD pipelines, or one-off local shell scripts.1819## Prerequisites2021- The repo has a known `<owner>/<repo>` (check `git remote -v`) and a default branch.22- The target software's build system is identifiable (`Makefile`, `package.json`, `setup.py`, `Cargo.toml`, `go.mod`, etc.).23- `python3` is available locally if you plan to run the helper scripts under `scripts/`.2425## Reference Files (read on demand to save tokens)2627| File | When to read |28|------|--------------|29| `references/install-template.md` | When generating `install.sh` — full bash template with detection helpers, dependency installer, and main entry point |30| `references/readme-snippet.md` | When updating the README — copy-paste install block plus URL format notes |31| `references/edge-cases.md` | When handling unusual OS/sudo/path scenarios and writing step reports |32| `scripts/env_explorer.py` | Local environment probe (OS, arch, package managers, sudo) |33| `scripts/plan_generator.py` | Generates `installation_plan.yaml` from env + target |34| `scripts/executor.py` | Dry-runs `installation_plan.yaml` with rollback, before Phase 3 generation |35| `scripts/doc_generator.py` | Renders user-facing `USAGE_GUIDE.md` |3637Do not inline these contents into the conversation; link to them. Keeping SKILL.md short preserves the context window for the actual install logic.3839## Repo Sync (mandatory before edits)4041Before creating, updating, or deleting files in an existing repo, sync the current branch with remote:4243```bash44branch="$(git rev-parse --abbrev-ref HEAD)"45git fetch origin46git pull --rebase origin "$branch"47```4849If the working tree is dirty, `git stash push -u -m pre-sync` first, sync, then `git stash pop`. If `origin` is missing or rebase/stash conflicts occur, stop and ask the user before continuing.5051## Workflow5253### Phase 1 — Exploration54551. Identify the target software/module/tool.562. Inspect the repo for build files (`Makefile`, `package.json`, `setup.py`, `Cargo.toml`, `go.mod`, ...).573. List dependencies the software needs to build and run.584. Capture `<owner>/<repo>` and the default branch from `git remote -v` and `git branch --show-current`. Ask the user if missing.595. Run `python3 scripts/env_explorer.py` to capture OS, arch, package managers, shell, and sudo availability into `env_info.json`.6061### Phase 2 — Planning62631. Resolve the dependency graph and order operations.642. Detect existing installations to avoid duplicate work.653. Plan a verification step for each phase.664. Plan rollback / cleanup on failure.675. Run `python3 scripts/plan_generator.py --target "<name>" --env-file env_info.json --deps <dep1> <dep2> ...` (pass the dependencies resolved in step 1, space-separated; omit `--deps` only if there are none) to emit `installation_plan.yaml`.686. Run `python3 scripts/executor.py --plan installation_plan.yaml --dry-run` and confirm the report lists every step in the intended order with a rollback command present for each. Dry-run skips execution, so this checks the plan's shape, not that installation or rollback actually works.6970### Phase 3 — Generation (primary output)7172Generate `install.sh` at the repo root using `references/install-template.md`. The template contains four sections you compose:73741. Header + colour helpers (`info`, `ok`, `warn`, `err`, `die`).752. Detection helpers (`detect_os`, `detect_arch`, `detect_package_manager`, `need_sudo`).763. `install_deps` switch covering apt/dnf/yum/pacman/brew/zypper.774. `install_<tool>` (customised per target), `verify_installation`, and `main`.7879Read `references/install-template.md` for the exact code; do not paste it into chat. If Windows support is needed, also generate `install.ps1` (one-liner: `irm <raw_url> | iex`).8081### Phase 4 — Documentation82831. Insert the install block from `references/readme-snippet.md` into the project README, substituting `<owner>/<repo>/<branch>`.842. Run `python3 scripts/doc_generator.py --target "<name>" --plan installation_plan.yaml` to emit `USAGE_GUIDE.md`.853. Print the final one-liner so the user can copy it.8687## Output Files8889| File | Description |90|------|-------------|91| `install.sh` | Primary output — standalone installer for `curl \| bash` |92| `install.ps1` | Optional Windows PowerShell installer |93| `env_info.json` | Local environment probe |94| `installation_plan.yaml` | Ordered install steps |95| `USAGE_GUIDE.md` | User-facing docs |9697## Acceptance Criteria9899- `install.sh` exists at repo root, starts with `#!/usr/bin/env bash` and `set -euo pipefail`.100- Auto-detects OS, architecture, and package manager; exits non-zero with a clear message on unsupported targets.101- Handles `sudo` gracefully (root, sudo, or fail-fast).102- Verifies the installation at the end (`command -v $TOOL_NAME` plus `--version` when available).103- README contains a `curl -sSL ... | bash` one-liner that resolves to the raw GitHub URL.104- Expected output on success ends with `[ OK ] Installation complete!`.105106## Edge Cases107108See `references/edge-cases.md` for the full list. Highlights:109110- **Unsupported OS / architecture** — `die` with the detected value; user sees what failed.111- **No package manager** — `install_deps` aborts with the manager it expected.112- **No sudo** — `need_sudo` exits with `Run as root or install sudo`.113- **Windows native** — generate `install.ps1` separately; `install.sh` warns under MSYS/Cygwin.114- **Script in subdirectory** — adjust the raw URL path; note it in the README snippet.115116## Step Completion Reports117118After each phase, emit a `◆` block with `√`/`×` checks and a `Result: PASS | FAIL | PARTIAL` line. The exact templates for the four phases live in `references/edge-cases.md` so you can copy them verbatim without bloating SKILL.md.119120## Expected Output121122```bash123curl -sSL https://raw.githubusercontent.com/owner/mytool/main/install.sh | bash124```125126Expected runtime banner:127128```129[INFO] OS: linux | Arch: x86_64 | Package Manager: apt130[ OK ] Dependencies installed131[ OK ] mytool 1.2.0 installed successfully132[ OK ] Installation complete!133```