$npx -y skills add jsturtevant/copilot-codeact-plugin --skill codeact-installInstall or reconfigure codeact. Auto-detects best backend (monty or hyperlight), runs preflight checks, discovers available tools, and writes configuration files. Use when user asks to install, configure, set up, or reconfigure codeact. Supports --global flag for system-wide inst
| 1 | # codeact-install |
| 2 | |
| 3 | Install or reconfigure the codeact plugin. Detects the best backend, |
| 4 | verifies it works, discovers available tools, and writes configuration. |
| 5 | |
| 6 | ## Usage |
| 7 | |
| 8 | Run the install script from this skill's directory: |
| 9 | |
| 10 | ```bash |
| 11 | bash "$SKILL_DIR/run.sh" |
| 12 | ``` |
| 13 | |
| 14 | For global install (applies to all repos): |
| 15 | |
| 16 | ```bash |
| 17 | bash "$SKILL_DIR/run.sh" --global |
| 18 | ``` |
| 19 | |
| 20 | The script will: |
| 21 | 1. Auto-detect the best backend (monty or hyperlight) |
| 22 | 2. Run preflight checks to verify the backend works |
| 23 | 3. Discover available tools |
| 24 | 4. Write `.github/instructions/codeact.instructions.md` (or `$HOME/.copilot/` with --global) |
| 25 | 5. Update the codeact agent file |
| 26 | |
| 27 | After install, restart the session to load the new configuration. |