Make each Coder template self-contained (fix coder templates push failure)
Provision Coder Templates / provision (push) Successful in 2m10s
Provision Coder Templates / provision (push) Successful in 2m10s
coder templates push -d templates/<env> only uploads that directory to the
Coder server, so main.tf's file() references reaching outside it via
../../profile-templates and ../../scripts failed at push/apply time
("Invalid function argument ... this function works only with files that
are distributed as part of the configuration source code"). Confirmed via
an actual failed run of coder-templates.yml once the runner network fix let
it get that far.
Fix: duplicate profile.code-profile, cli-setup-wizard.sh, and
install-skills.sh into each templates/<env>/ directory and drop the old
shared scripts/ and profile-templates/ directories.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,107 @@
|
||||
#!/usr/bin/env bash
|
||||
# Coder workspace first-run CLI setup wizard.
|
||||
#
|
||||
# Meant to be `source`d from a new interactive shell (e.g. via .bashrc). It asks,
|
||||
# once per user per workspace, whether to install and log into a few optional
|
||||
# AI coding CLIs. It re-runs on every new terminal until the user lets it finish
|
||||
# (or explicitly skips it for good), then gets out of the way.
|
||||
#
|
||||
# VS Code / code-server extensions are intentionally NOT asked about here -
|
||||
# they're installed declaratively by the Coder template itself (the
|
||||
# `code-server` module's `extensions` input, populated from the matching
|
||||
# profile-templates/*.code-profile file at template-push time).
|
||||
#
|
||||
# Manual re-run: bash /opt/coder/cli-setup-wizard.sh --force
|
||||
|
||||
set -u
|
||||
|
||||
WIZARD_DONE_FILE="${HOME}/.cache/coder-cli-wizard/done"
|
||||
FORCE=0
|
||||
[ "${1:-}" = "--force" ] && FORCE=1
|
||||
|
||||
export BUN_INSTALL="${HOME}/.bun"
|
||||
export PATH="${BUN_INSTALL}/bin:${HOME}/.local/bin:${PATH}"
|
||||
|
||||
# Only bother interactive shells with a real terminal attached, and only until
|
||||
# the user marks the wizard as done.
|
||||
if [ "$FORCE" -ne 1 ]; then
|
||||
case "$-" in
|
||||
*i*) : ;;
|
||||
*) return 0 2>/dev/null || exit 0 ;;
|
||||
esac
|
||||
[ -t 0 ] || { return 0 2>/dev/null || exit 0; }
|
||||
[ -f "$WIZARD_DONE_FILE" ] && { return 0 2>/dev/null || exit 0; }
|
||||
fi
|
||||
|
||||
mkdir -p "$(dirname "$WIZARD_DONE_FILE")"
|
||||
|
||||
ask_yes_no() {
|
||||
local prompt="$1" reply
|
||||
read -r -p "$prompt [y/N] " reply
|
||||
case "$reply" in
|
||||
[Yy]*) return 0 ;;
|
||||
*) return 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
echo ""
|
||||
echo "==================================================================="
|
||||
echo " Coder workspace setup wizard"
|
||||
echo " Runs once per new terminal until you finish it. Ctrl+C any time"
|
||||
echo " to skip for now - it'll ask again next terminal."
|
||||
echo "==================================================================="
|
||||
|
||||
# --- GitHub Copilot CLI ---
|
||||
if command -v copilot >/dev/null 2>&1; then
|
||||
echo "GitHub Copilot CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install GitHub Copilot CLI and log in?"; then
|
||||
if bun install -g @github/copilot; then
|
||||
copilot login || echo "Install succeeded but login didn't complete. Retry any time with: copilot login"
|
||||
else
|
||||
echo "Copilot CLI install failed. Retry later with: bun install -g @github/copilot && copilot login"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping GitHub Copilot CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
# --- Google Antigravity CLI (agy) ---
|
||||
if command -v agy >/dev/null 2>&1; then
|
||||
echo "Antigravity CLI already installed, skipping."
|
||||
else
|
||||
if ask_yes_no "Install Google Antigravity CLI (agy) and log in?"; then
|
||||
if curl -fsSL https://antigravity.google/cli/install.sh | bash; then
|
||||
echo "Launching 'agy' once to complete sign-in (exit with /logout or Ctrl+D when done)..."
|
||||
agy || echo "Sign-in didn't complete. Retry any time by running: agy"
|
||||
else
|
||||
echo "Antigravity CLI install failed. Retry later with: curl -fsSL https://antigravity.google/cli/install.sh | bash"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# --- Claude Code CLI ---
|
||||
if command -v claude >/dev/null 2>&1; then
|
||||
echo "Claude Code CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install Claude Code CLI and log in?"; then
|
||||
if bun install -g @anthropic-ai/claude-code; then
|
||||
echo "Launching 'claude' once to complete sign-in (use /login if not prompted; Ctrl+C to exit when done)..."
|
||||
claude || echo "Sign-in didn't complete. Retry any time by running: claude"
|
||||
else
|
||||
echo "Claude Code CLI install failed. Retry later with: bun install -g @anthropic-ai/claude-code"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping Claude Code CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
echo ""
|
||||
if ask_yes_no "Mark setup wizard as complete so it stops asking on new terminals?"; then
|
||||
touch "$WIZARD_DONE_FILE"
|
||||
echo "Done. Re-run any time with: bash /opt/coder/cli-setup-wizard.sh --force"
|
||||
else
|
||||
echo "OK, this'll ask again next time you open a terminal."
|
||||
fi
|
||||
|
||||
return 0 2>/dev/null || exit 0
|
||||
@@ -0,0 +1,68 @@
|
||||
#!/usr/bin/env bash
|
||||
# Installs this repo's Agent Skills (extensions/{awesome-skills-plugin,
|
||||
# custom-specialty-plugin}/skills/*, each a SKILL.md-based skill directory)
|
||||
# into every AI CLI's personal skills directory:
|
||||
#
|
||||
# Claude Code CLI -> ~/.claude/skills/<name>/
|
||||
# GitHub Copilot CLI -> ~/.copilot/skills/<name>/
|
||||
# Antigravity CLI -> ~/.gemini/config/skills/<name>/ (per antigravity.google/docs/skills;
|
||||
# worth a spot-check if agy doesn't pick these up, some third-party
|
||||
# docs disagree on the exact path)
|
||||
#
|
||||
# Run once at workspace startup via coder_script. Pulls this repo fresh from
|
||||
# Gitea rather than embedding ~2.5MB of skill files into Terraform state.
|
||||
#
|
||||
# Env vars:
|
||||
# SPECIALTY_SKILLS - optional space-separated skill names from
|
||||
# extensions/custom-specialty-plugin/skills/ to install in addition to
|
||||
# the common awesome-skills-plugin bundle (every env gets that one).
|
||||
|
||||
set -e
|
||||
|
||||
REPO_ZIP_URL="https://git.octoturge.com/octoturge/Profiles-for-Coder/archive/main.zip"
|
||||
ZIP_PATH="/tmp/coder-skills-src.zip"
|
||||
WORK_DIR="/tmp/coder-skills-src"
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
curl -fsSL "$REPO_ZIP_URL" -o "$ZIP_PATH"
|
||||
mkdir -p "$WORK_DIR"
|
||||
unzip -q -o "$ZIP_PATH" -d "$WORK_DIR"
|
||||
|
||||
INNER_DIR=$(find "$WORK_DIR" -mindepth 1 -maxdepth 1 -type d | head -n1)
|
||||
if [ -z "$INNER_DIR" ]; then
|
||||
echo "install-skills: couldn't find extracted repo contents, skipping." >&2
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
TARGET_DIRS=("$HOME/.claude/skills" "$HOME/.copilot/skills" "$HOME/.gemini/config/skills")
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
mkdir -p "$dir"
|
||||
done
|
||||
|
||||
# Common skill bundle, installed for every environment.
|
||||
COMMON_SKILLS_SRC="$INNER_DIR/extensions/awesome-skills-plugin/skills"
|
||||
if [ -d "$COMMON_SKILLS_SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$COMMON_SKILLS_SRC/." "$dir/"
|
||||
done
|
||||
echo "install-skills: installed common skill bundle into ${TARGET_DIRS[*]}"
|
||||
else
|
||||
echo "install-skills: common skill bundle not found at $COMMON_SKILLS_SRC, skipping." >&2
|
||||
fi
|
||||
|
||||
# Environment-specific specialty skills, if any were requested.
|
||||
for skill in ${SPECIALTY_SKILLS:-}; do
|
||||
SRC="$INNER_DIR/extensions/custom-specialty-plugin/skills/$skill"
|
||||
if [ -d "$SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$SRC" "$dir/$skill"
|
||||
done
|
||||
echo "install-skills: installed specialty skill '$skill'"
|
||||
else
|
||||
echo "install-skills: specialty skill '$skill' not found at $SRC, skipping." >&2
|
||||
fi
|
||||
done
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
echo "install-skills: done."
|
||||
@@ -11,7 +11,7 @@ terraform {
|
||||
|
||||
locals {
|
||||
env_name = "3D Printing & Engineering"
|
||||
profile = jsondecode(file("${path.module}/../../profile-templates/3D.code-profile"))
|
||||
profile = jsondecode(file("${path.module}/profile.code-profile"))
|
||||
settings_raw = jsondecode(local.profile.settings).settings
|
||||
extensions = [for e in jsondecode(local.profile.extensions) : e.identifier.id]
|
||||
}
|
||||
@@ -243,7 +243,7 @@ resource "coder_script" "apply_settings" {
|
||||
|
||||
# Drops the shared CLI setup wizard onto the workspace and hooks it into
|
||||
# every new interactive shell (via .bashrc) until the user completes it.
|
||||
# See ../../scripts/cli-setup-wizard.sh for what it actually asks.
|
||||
# See ./cli-setup-wizard.sh for what it actually asks.
|
||||
resource "coder_script" "cli_setup_wizard" {
|
||||
agent_id = coder_agent.main.id
|
||||
display_name = "Install CLI Setup Wizard"
|
||||
@@ -252,7 +252,7 @@ resource "coder_script" "cli_setup_wizard" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
echo '${base64encode(file("${path.module}/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
chmod +x /opt/coder/cli-setup-wizard.sh
|
||||
|
||||
MARKER="# >>> coder cli setup wizard >>>"
|
||||
@@ -298,7 +298,7 @@ resource "coder_script" "install_bun" {
|
||||
|
||||
# Installs this repo's Agent Skills into Claude Code, GitHub Copilot CLI, and
|
||||
# Antigravity CLI's skills directories, plus the openscad-parametric skill
|
||||
# from extensions/custom-specialty-plugin. See ../../scripts/install-skills.sh.
|
||||
# from extensions/custom-specialty-plugin. See ./install-skills.sh.
|
||||
resource "coder_script" "install_skills" {
|
||||
agent_id = coder_agent.main.id
|
||||
display_name = "Install Agent Skills"
|
||||
@@ -307,7 +307,7 @@ resource "coder_script" "install_skills" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
echo '${base64encode(file("${path.module}/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
chmod +x /opt/coder/install-skills.sh
|
||||
SPECIALTY_SKILLS="openscad-parametric" /opt/coder/install-skills.sh
|
||||
EOT
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,107 @@
|
||||
#!/usr/bin/env bash
|
||||
# Coder workspace first-run CLI setup wizard.
|
||||
#
|
||||
# Meant to be `source`d from a new interactive shell (e.g. via .bashrc). It asks,
|
||||
# once per user per workspace, whether to install and log into a few optional
|
||||
# AI coding CLIs. It re-runs on every new terminal until the user lets it finish
|
||||
# (or explicitly skips it for good), then gets out of the way.
|
||||
#
|
||||
# VS Code / code-server extensions are intentionally NOT asked about here -
|
||||
# they're installed declaratively by the Coder template itself (the
|
||||
# `code-server` module's `extensions` input, populated from the matching
|
||||
# profile-templates/*.code-profile file at template-push time).
|
||||
#
|
||||
# Manual re-run: bash /opt/coder/cli-setup-wizard.sh --force
|
||||
|
||||
set -u
|
||||
|
||||
WIZARD_DONE_FILE="${HOME}/.cache/coder-cli-wizard/done"
|
||||
FORCE=0
|
||||
[ "${1:-}" = "--force" ] && FORCE=1
|
||||
|
||||
export BUN_INSTALL="${HOME}/.bun"
|
||||
export PATH="${BUN_INSTALL}/bin:${HOME}/.local/bin:${PATH}"
|
||||
|
||||
# Only bother interactive shells with a real terminal attached, and only until
|
||||
# the user marks the wizard as done.
|
||||
if [ "$FORCE" -ne 1 ]; then
|
||||
case "$-" in
|
||||
*i*) : ;;
|
||||
*) return 0 2>/dev/null || exit 0 ;;
|
||||
esac
|
||||
[ -t 0 ] || { return 0 2>/dev/null || exit 0; }
|
||||
[ -f "$WIZARD_DONE_FILE" ] && { return 0 2>/dev/null || exit 0; }
|
||||
fi
|
||||
|
||||
mkdir -p "$(dirname "$WIZARD_DONE_FILE")"
|
||||
|
||||
ask_yes_no() {
|
||||
local prompt="$1" reply
|
||||
read -r -p "$prompt [y/N] " reply
|
||||
case "$reply" in
|
||||
[Yy]*) return 0 ;;
|
||||
*) return 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
echo ""
|
||||
echo "==================================================================="
|
||||
echo " Coder workspace setup wizard"
|
||||
echo " Runs once per new terminal until you finish it. Ctrl+C any time"
|
||||
echo " to skip for now - it'll ask again next terminal."
|
||||
echo "==================================================================="
|
||||
|
||||
# --- GitHub Copilot CLI ---
|
||||
if command -v copilot >/dev/null 2>&1; then
|
||||
echo "GitHub Copilot CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install GitHub Copilot CLI and log in?"; then
|
||||
if bun install -g @github/copilot; then
|
||||
copilot login || echo "Install succeeded but login didn't complete. Retry any time with: copilot login"
|
||||
else
|
||||
echo "Copilot CLI install failed. Retry later with: bun install -g @github/copilot && copilot login"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping GitHub Copilot CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
# --- Google Antigravity CLI (agy) ---
|
||||
if command -v agy >/dev/null 2>&1; then
|
||||
echo "Antigravity CLI already installed, skipping."
|
||||
else
|
||||
if ask_yes_no "Install Google Antigravity CLI (agy) and log in?"; then
|
||||
if curl -fsSL https://antigravity.google/cli/install.sh | bash; then
|
||||
echo "Launching 'agy' once to complete sign-in (exit with /logout or Ctrl+D when done)..."
|
||||
agy || echo "Sign-in didn't complete. Retry any time by running: agy"
|
||||
else
|
||||
echo "Antigravity CLI install failed. Retry later with: curl -fsSL https://antigravity.google/cli/install.sh | bash"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# --- Claude Code CLI ---
|
||||
if command -v claude >/dev/null 2>&1; then
|
||||
echo "Claude Code CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install Claude Code CLI and log in?"; then
|
||||
if bun install -g @anthropic-ai/claude-code; then
|
||||
echo "Launching 'claude' once to complete sign-in (use /login if not prompted; Ctrl+C to exit when done)..."
|
||||
claude || echo "Sign-in didn't complete. Retry any time by running: claude"
|
||||
else
|
||||
echo "Claude Code CLI install failed. Retry later with: bun install -g @anthropic-ai/claude-code"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping Claude Code CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
echo ""
|
||||
if ask_yes_no "Mark setup wizard as complete so it stops asking on new terminals?"; then
|
||||
touch "$WIZARD_DONE_FILE"
|
||||
echo "Done. Re-run any time with: bash /opt/coder/cli-setup-wizard.sh --force"
|
||||
else
|
||||
echo "OK, this'll ask again next time you open a terminal."
|
||||
fi
|
||||
|
||||
return 0 2>/dev/null || exit 0
|
||||
@@ -0,0 +1,68 @@
|
||||
#!/usr/bin/env bash
|
||||
# Installs this repo's Agent Skills (extensions/{awesome-skills-plugin,
|
||||
# custom-specialty-plugin}/skills/*, each a SKILL.md-based skill directory)
|
||||
# into every AI CLI's personal skills directory:
|
||||
#
|
||||
# Claude Code CLI -> ~/.claude/skills/<name>/
|
||||
# GitHub Copilot CLI -> ~/.copilot/skills/<name>/
|
||||
# Antigravity CLI -> ~/.gemini/config/skills/<name>/ (per antigravity.google/docs/skills;
|
||||
# worth a spot-check if agy doesn't pick these up, some third-party
|
||||
# docs disagree on the exact path)
|
||||
#
|
||||
# Run once at workspace startup via coder_script. Pulls this repo fresh from
|
||||
# Gitea rather than embedding ~2.5MB of skill files into Terraform state.
|
||||
#
|
||||
# Env vars:
|
||||
# SPECIALTY_SKILLS - optional space-separated skill names from
|
||||
# extensions/custom-specialty-plugin/skills/ to install in addition to
|
||||
# the common awesome-skills-plugin bundle (every env gets that one).
|
||||
|
||||
set -e
|
||||
|
||||
REPO_ZIP_URL="https://git.octoturge.com/octoturge/Profiles-for-Coder/archive/main.zip"
|
||||
ZIP_PATH="/tmp/coder-skills-src.zip"
|
||||
WORK_DIR="/tmp/coder-skills-src"
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
curl -fsSL "$REPO_ZIP_URL" -o "$ZIP_PATH"
|
||||
mkdir -p "$WORK_DIR"
|
||||
unzip -q -o "$ZIP_PATH" -d "$WORK_DIR"
|
||||
|
||||
INNER_DIR=$(find "$WORK_DIR" -mindepth 1 -maxdepth 1 -type d | head -n1)
|
||||
if [ -z "$INNER_DIR" ]; then
|
||||
echo "install-skills: couldn't find extracted repo contents, skipping." >&2
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
TARGET_DIRS=("$HOME/.claude/skills" "$HOME/.copilot/skills" "$HOME/.gemini/config/skills")
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
mkdir -p "$dir"
|
||||
done
|
||||
|
||||
# Common skill bundle, installed for every environment.
|
||||
COMMON_SKILLS_SRC="$INNER_DIR/extensions/awesome-skills-plugin/skills"
|
||||
if [ -d "$COMMON_SKILLS_SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$COMMON_SKILLS_SRC/." "$dir/"
|
||||
done
|
||||
echo "install-skills: installed common skill bundle into ${TARGET_DIRS[*]}"
|
||||
else
|
||||
echo "install-skills: common skill bundle not found at $COMMON_SKILLS_SRC, skipping." >&2
|
||||
fi
|
||||
|
||||
# Environment-specific specialty skills, if any were requested.
|
||||
for skill in ${SPECIALTY_SKILLS:-}; do
|
||||
SRC="$INNER_DIR/extensions/custom-specialty-plugin/skills/$skill"
|
||||
if [ -d "$SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$SRC" "$dir/$skill"
|
||||
done
|
||||
echo "install-skills: installed specialty skill '$skill'"
|
||||
else
|
||||
echo "install-skills: specialty skill '$skill' not found at $SRC, skipping." >&2
|
||||
fi
|
||||
done
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
echo "install-skills: done."
|
||||
@@ -11,7 +11,7 @@ terraform {
|
||||
|
||||
locals {
|
||||
env_name = "COBOL Modern Mainframe"
|
||||
profile = jsondecode(file("${path.module}/../../profile-templates/COBOL.code-profile"))
|
||||
profile = jsondecode(file("${path.module}/profile.code-profile"))
|
||||
settings_raw = jsondecode(local.profile.settings).settings
|
||||
extensions = [for e in jsondecode(local.profile.extensions) : e.identifier.id]
|
||||
}
|
||||
@@ -243,7 +243,7 @@ resource "coder_script" "apply_settings" {
|
||||
|
||||
# Drops the shared CLI setup wizard onto the workspace and hooks it into
|
||||
# every new interactive shell (via .bashrc) until the user completes it.
|
||||
# See ../../scripts/cli-setup-wizard.sh for what it actually asks.
|
||||
# See ./cli-setup-wizard.sh for what it actually asks.
|
||||
resource "coder_script" "cli_setup_wizard" {
|
||||
agent_id = coder_agent.main.id
|
||||
display_name = "Install CLI Setup Wizard"
|
||||
@@ -252,7 +252,7 @@ resource "coder_script" "cli_setup_wizard" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
echo '${base64encode(file("${path.module}/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
chmod +x /opt/coder/cli-setup-wizard.sh
|
||||
|
||||
MARKER="# >>> coder cli setup wizard >>>"
|
||||
@@ -298,7 +298,7 @@ resource "coder_script" "install_bun" {
|
||||
|
||||
# Installs this repo's Agent Skills into Claude Code, GitHub Copilot CLI, and
|
||||
# Antigravity CLI's skills directories, plus the cobol-teacher skill from
|
||||
# extensions/custom-specialty-plugin. See ../../scripts/install-skills.sh.
|
||||
# extensions/custom-specialty-plugin. See ./install-skills.sh.
|
||||
resource "coder_script" "install_skills" {
|
||||
agent_id = coder_agent.main.id
|
||||
display_name = "Install Agent Skills"
|
||||
@@ -307,7 +307,7 @@ resource "coder_script" "install_skills" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
echo '${base64encode(file("${path.module}/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
chmod +x /opt/coder/install-skills.sh
|
||||
SPECIALTY_SKILLS="cobol-teacher" /opt/coder/install-skills.sh
|
||||
EOT
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,107 @@
|
||||
#!/usr/bin/env bash
|
||||
# Coder workspace first-run CLI setup wizard.
|
||||
#
|
||||
# Meant to be `source`d from a new interactive shell (e.g. via .bashrc). It asks,
|
||||
# once per user per workspace, whether to install and log into a few optional
|
||||
# AI coding CLIs. It re-runs on every new terminal until the user lets it finish
|
||||
# (or explicitly skips it for good), then gets out of the way.
|
||||
#
|
||||
# VS Code / code-server extensions are intentionally NOT asked about here -
|
||||
# they're installed declaratively by the Coder template itself (the
|
||||
# `code-server` module's `extensions` input, populated from the matching
|
||||
# profile-templates/*.code-profile file at template-push time).
|
||||
#
|
||||
# Manual re-run: bash /opt/coder/cli-setup-wizard.sh --force
|
||||
|
||||
set -u
|
||||
|
||||
WIZARD_DONE_FILE="${HOME}/.cache/coder-cli-wizard/done"
|
||||
FORCE=0
|
||||
[ "${1:-}" = "--force" ] && FORCE=1
|
||||
|
||||
export BUN_INSTALL="${HOME}/.bun"
|
||||
export PATH="${BUN_INSTALL}/bin:${HOME}/.local/bin:${PATH}"
|
||||
|
||||
# Only bother interactive shells with a real terminal attached, and only until
|
||||
# the user marks the wizard as done.
|
||||
if [ "$FORCE" -ne 1 ]; then
|
||||
case "$-" in
|
||||
*i*) : ;;
|
||||
*) return 0 2>/dev/null || exit 0 ;;
|
||||
esac
|
||||
[ -t 0 ] || { return 0 2>/dev/null || exit 0; }
|
||||
[ -f "$WIZARD_DONE_FILE" ] && { return 0 2>/dev/null || exit 0; }
|
||||
fi
|
||||
|
||||
mkdir -p "$(dirname "$WIZARD_DONE_FILE")"
|
||||
|
||||
ask_yes_no() {
|
||||
local prompt="$1" reply
|
||||
read -r -p "$prompt [y/N] " reply
|
||||
case "$reply" in
|
||||
[Yy]*) return 0 ;;
|
||||
*) return 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
echo ""
|
||||
echo "==================================================================="
|
||||
echo " Coder workspace setup wizard"
|
||||
echo " Runs once per new terminal until you finish it. Ctrl+C any time"
|
||||
echo " to skip for now - it'll ask again next terminal."
|
||||
echo "==================================================================="
|
||||
|
||||
# --- GitHub Copilot CLI ---
|
||||
if command -v copilot >/dev/null 2>&1; then
|
||||
echo "GitHub Copilot CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install GitHub Copilot CLI and log in?"; then
|
||||
if bun install -g @github/copilot; then
|
||||
copilot login || echo "Install succeeded but login didn't complete. Retry any time with: copilot login"
|
||||
else
|
||||
echo "Copilot CLI install failed. Retry later with: bun install -g @github/copilot && copilot login"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping GitHub Copilot CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
# --- Google Antigravity CLI (agy) ---
|
||||
if command -v agy >/dev/null 2>&1; then
|
||||
echo "Antigravity CLI already installed, skipping."
|
||||
else
|
||||
if ask_yes_no "Install Google Antigravity CLI (agy) and log in?"; then
|
||||
if curl -fsSL https://antigravity.google/cli/install.sh | bash; then
|
||||
echo "Launching 'agy' once to complete sign-in (exit with /logout or Ctrl+D when done)..."
|
||||
agy || echo "Sign-in didn't complete. Retry any time by running: agy"
|
||||
else
|
||||
echo "Antigravity CLI install failed. Retry later with: curl -fsSL https://antigravity.google/cli/install.sh | bash"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# --- Claude Code CLI ---
|
||||
if command -v claude >/dev/null 2>&1; then
|
||||
echo "Claude Code CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install Claude Code CLI and log in?"; then
|
||||
if bun install -g @anthropic-ai/claude-code; then
|
||||
echo "Launching 'claude' once to complete sign-in (use /login if not prompted; Ctrl+C to exit when done)..."
|
||||
claude || echo "Sign-in didn't complete. Retry any time by running: claude"
|
||||
else
|
||||
echo "Claude Code CLI install failed. Retry later with: bun install -g @anthropic-ai/claude-code"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping Claude Code CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
echo ""
|
||||
if ask_yes_no "Mark setup wizard as complete so it stops asking on new terminals?"; then
|
||||
touch "$WIZARD_DONE_FILE"
|
||||
echo "Done. Re-run any time with: bash /opt/coder/cli-setup-wizard.sh --force"
|
||||
else
|
||||
echo "OK, this'll ask again next time you open a terminal."
|
||||
fi
|
||||
|
||||
return 0 2>/dev/null || exit 0
|
||||
@@ -0,0 +1,68 @@
|
||||
#!/usr/bin/env bash
|
||||
# Installs this repo's Agent Skills (extensions/{awesome-skills-plugin,
|
||||
# custom-specialty-plugin}/skills/*, each a SKILL.md-based skill directory)
|
||||
# into every AI CLI's personal skills directory:
|
||||
#
|
||||
# Claude Code CLI -> ~/.claude/skills/<name>/
|
||||
# GitHub Copilot CLI -> ~/.copilot/skills/<name>/
|
||||
# Antigravity CLI -> ~/.gemini/config/skills/<name>/ (per antigravity.google/docs/skills;
|
||||
# worth a spot-check if agy doesn't pick these up, some third-party
|
||||
# docs disagree on the exact path)
|
||||
#
|
||||
# Run once at workspace startup via coder_script. Pulls this repo fresh from
|
||||
# Gitea rather than embedding ~2.5MB of skill files into Terraform state.
|
||||
#
|
||||
# Env vars:
|
||||
# SPECIALTY_SKILLS - optional space-separated skill names from
|
||||
# extensions/custom-specialty-plugin/skills/ to install in addition to
|
||||
# the common awesome-skills-plugin bundle (every env gets that one).
|
||||
|
||||
set -e
|
||||
|
||||
REPO_ZIP_URL="https://git.octoturge.com/octoturge/Profiles-for-Coder/archive/main.zip"
|
||||
ZIP_PATH="/tmp/coder-skills-src.zip"
|
||||
WORK_DIR="/tmp/coder-skills-src"
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
curl -fsSL "$REPO_ZIP_URL" -o "$ZIP_PATH"
|
||||
mkdir -p "$WORK_DIR"
|
||||
unzip -q -o "$ZIP_PATH" -d "$WORK_DIR"
|
||||
|
||||
INNER_DIR=$(find "$WORK_DIR" -mindepth 1 -maxdepth 1 -type d | head -n1)
|
||||
if [ -z "$INNER_DIR" ]; then
|
||||
echo "install-skills: couldn't find extracted repo contents, skipping." >&2
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
TARGET_DIRS=("$HOME/.claude/skills" "$HOME/.copilot/skills" "$HOME/.gemini/config/skills")
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
mkdir -p "$dir"
|
||||
done
|
||||
|
||||
# Common skill bundle, installed for every environment.
|
||||
COMMON_SKILLS_SRC="$INNER_DIR/extensions/awesome-skills-plugin/skills"
|
||||
if [ -d "$COMMON_SKILLS_SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$COMMON_SKILLS_SRC/." "$dir/"
|
||||
done
|
||||
echo "install-skills: installed common skill bundle into ${TARGET_DIRS[*]}"
|
||||
else
|
||||
echo "install-skills: common skill bundle not found at $COMMON_SKILLS_SRC, skipping." >&2
|
||||
fi
|
||||
|
||||
# Environment-specific specialty skills, if any were requested.
|
||||
for skill in ${SPECIALTY_SKILLS:-}; do
|
||||
SRC="$INNER_DIR/extensions/custom-specialty-plugin/skills/$skill"
|
||||
if [ -d "$SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$SRC" "$dir/$skill"
|
||||
done
|
||||
echo "install-skills: installed specialty skill '$skill'"
|
||||
else
|
||||
echo "install-skills: specialty skill '$skill' not found at $SRC, skipping." >&2
|
||||
fi
|
||||
done
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
echo "install-skills: done."
|
||||
@@ -11,7 +11,7 @@ terraform {
|
||||
|
||||
locals {
|
||||
env_name = "Default"
|
||||
profile = jsondecode(file("${path.module}/../../profile-templates/Default.code-profile"))
|
||||
profile = jsondecode(file("${path.module}/profile.code-profile"))
|
||||
settings_raw = jsondecode(local.profile.settings).settings
|
||||
extensions = [for e in jsondecode(local.profile.extensions) : e.identifier.id]
|
||||
}
|
||||
@@ -243,7 +243,7 @@ resource "coder_script" "apply_settings" {
|
||||
|
||||
# Drops the shared CLI setup wizard onto the workspace and hooks it into
|
||||
# every new interactive shell (via .bashrc) until the user completes it.
|
||||
# See ../../scripts/cli-setup-wizard.sh for what it actually asks.
|
||||
# See ./cli-setup-wizard.sh for what it actually asks.
|
||||
resource "coder_script" "cli_setup_wizard" {
|
||||
agent_id = coder_agent.main.id
|
||||
display_name = "Install CLI Setup Wizard"
|
||||
@@ -252,7 +252,7 @@ resource "coder_script" "cli_setup_wizard" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
echo '${base64encode(file("${path.module}/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
chmod +x /opt/coder/cli-setup-wizard.sh
|
||||
|
||||
MARKER="# >>> coder cli setup wizard >>>"
|
||||
@@ -297,7 +297,7 @@ resource "coder_script" "install_bun" {
|
||||
}
|
||||
|
||||
# Installs this repo's Agent Skills into Claude Code, GitHub Copilot CLI, and
|
||||
# Antigravity CLI's skills directories. See ../../scripts/install-skills.sh.
|
||||
# Antigravity CLI's skills directories. See ./install-skills.sh.
|
||||
# Default has no matching entry in extensions/custom-specialty-plugin/skills,
|
||||
# so it only gets the common awesome-skills-plugin bundle.
|
||||
resource "coder_script" "install_skills" {
|
||||
@@ -308,7 +308,7 @@ resource "coder_script" "install_skills" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
echo '${base64encode(file("${path.module}/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
chmod +x /opt/coder/install-skills.sh
|
||||
SPECIALTY_SKILLS="" /opt/coder/install-skills.sh
|
||||
EOT
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,107 @@
|
||||
#!/usr/bin/env bash
|
||||
# Coder workspace first-run CLI setup wizard.
|
||||
#
|
||||
# Meant to be `source`d from a new interactive shell (e.g. via .bashrc). It asks,
|
||||
# once per user per workspace, whether to install and log into a few optional
|
||||
# AI coding CLIs. It re-runs on every new terminal until the user lets it finish
|
||||
# (or explicitly skips it for good), then gets out of the way.
|
||||
#
|
||||
# VS Code / code-server extensions are intentionally NOT asked about here -
|
||||
# they're installed declaratively by the Coder template itself (the
|
||||
# `code-server` module's `extensions` input, populated from the matching
|
||||
# profile-templates/*.code-profile file at template-push time).
|
||||
#
|
||||
# Manual re-run: bash /opt/coder/cli-setup-wizard.sh --force
|
||||
|
||||
set -u
|
||||
|
||||
WIZARD_DONE_FILE="${HOME}/.cache/coder-cli-wizard/done"
|
||||
FORCE=0
|
||||
[ "${1:-}" = "--force" ] && FORCE=1
|
||||
|
||||
export BUN_INSTALL="${HOME}/.bun"
|
||||
export PATH="${BUN_INSTALL}/bin:${HOME}/.local/bin:${PATH}"
|
||||
|
||||
# Only bother interactive shells with a real terminal attached, and only until
|
||||
# the user marks the wizard as done.
|
||||
if [ "$FORCE" -ne 1 ]; then
|
||||
case "$-" in
|
||||
*i*) : ;;
|
||||
*) return 0 2>/dev/null || exit 0 ;;
|
||||
esac
|
||||
[ -t 0 ] || { return 0 2>/dev/null || exit 0; }
|
||||
[ -f "$WIZARD_DONE_FILE" ] && { return 0 2>/dev/null || exit 0; }
|
||||
fi
|
||||
|
||||
mkdir -p "$(dirname "$WIZARD_DONE_FILE")"
|
||||
|
||||
ask_yes_no() {
|
||||
local prompt="$1" reply
|
||||
read -r -p "$prompt [y/N] " reply
|
||||
case "$reply" in
|
||||
[Yy]*) return 0 ;;
|
||||
*) return 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
echo ""
|
||||
echo "==================================================================="
|
||||
echo " Coder workspace setup wizard"
|
||||
echo " Runs once per new terminal until you finish it. Ctrl+C any time"
|
||||
echo " to skip for now - it'll ask again next terminal."
|
||||
echo "==================================================================="
|
||||
|
||||
# --- GitHub Copilot CLI ---
|
||||
if command -v copilot >/dev/null 2>&1; then
|
||||
echo "GitHub Copilot CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install GitHub Copilot CLI and log in?"; then
|
||||
if bun install -g @github/copilot; then
|
||||
copilot login || echo "Install succeeded but login didn't complete. Retry any time with: copilot login"
|
||||
else
|
||||
echo "Copilot CLI install failed. Retry later with: bun install -g @github/copilot && copilot login"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping GitHub Copilot CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
# --- Google Antigravity CLI (agy) ---
|
||||
if command -v agy >/dev/null 2>&1; then
|
||||
echo "Antigravity CLI already installed, skipping."
|
||||
else
|
||||
if ask_yes_no "Install Google Antigravity CLI (agy) and log in?"; then
|
||||
if curl -fsSL https://antigravity.google/cli/install.sh | bash; then
|
||||
echo "Launching 'agy' once to complete sign-in (exit with /logout or Ctrl+D when done)..."
|
||||
agy || echo "Sign-in didn't complete. Retry any time by running: agy"
|
||||
else
|
||||
echo "Antigravity CLI install failed. Retry later with: curl -fsSL https://antigravity.google/cli/install.sh | bash"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# --- Claude Code CLI ---
|
||||
if command -v claude >/dev/null 2>&1; then
|
||||
echo "Claude Code CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install Claude Code CLI and log in?"; then
|
||||
if bun install -g @anthropic-ai/claude-code; then
|
||||
echo "Launching 'claude' once to complete sign-in (use /login if not prompted; Ctrl+C to exit when done)..."
|
||||
claude || echo "Sign-in didn't complete. Retry any time by running: claude"
|
||||
else
|
||||
echo "Claude Code CLI install failed. Retry later with: bun install -g @anthropic-ai/claude-code"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping Claude Code CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
echo ""
|
||||
if ask_yes_no "Mark setup wizard as complete so it stops asking on new terminals?"; then
|
||||
touch "$WIZARD_DONE_FILE"
|
||||
echo "Done. Re-run any time with: bash /opt/coder/cli-setup-wizard.sh --force"
|
||||
else
|
||||
echo "OK, this'll ask again next time you open a terminal."
|
||||
fi
|
||||
|
||||
return 0 2>/dev/null || exit 0
|
||||
@@ -0,0 +1,68 @@
|
||||
#!/usr/bin/env bash
|
||||
# Installs this repo's Agent Skills (extensions/{awesome-skills-plugin,
|
||||
# custom-specialty-plugin}/skills/*, each a SKILL.md-based skill directory)
|
||||
# into every AI CLI's personal skills directory:
|
||||
#
|
||||
# Claude Code CLI -> ~/.claude/skills/<name>/
|
||||
# GitHub Copilot CLI -> ~/.copilot/skills/<name>/
|
||||
# Antigravity CLI -> ~/.gemini/config/skills/<name>/ (per antigravity.google/docs/skills;
|
||||
# worth a spot-check if agy doesn't pick these up, some third-party
|
||||
# docs disagree on the exact path)
|
||||
#
|
||||
# Run once at workspace startup via coder_script. Pulls this repo fresh from
|
||||
# Gitea rather than embedding ~2.5MB of skill files into Terraform state.
|
||||
#
|
||||
# Env vars:
|
||||
# SPECIALTY_SKILLS - optional space-separated skill names from
|
||||
# extensions/custom-specialty-plugin/skills/ to install in addition to
|
||||
# the common awesome-skills-plugin bundle (every env gets that one).
|
||||
|
||||
set -e
|
||||
|
||||
REPO_ZIP_URL="https://git.octoturge.com/octoturge/Profiles-for-Coder/archive/main.zip"
|
||||
ZIP_PATH="/tmp/coder-skills-src.zip"
|
||||
WORK_DIR="/tmp/coder-skills-src"
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
curl -fsSL "$REPO_ZIP_URL" -o "$ZIP_PATH"
|
||||
mkdir -p "$WORK_DIR"
|
||||
unzip -q -o "$ZIP_PATH" -d "$WORK_DIR"
|
||||
|
||||
INNER_DIR=$(find "$WORK_DIR" -mindepth 1 -maxdepth 1 -type d | head -n1)
|
||||
if [ -z "$INNER_DIR" ]; then
|
||||
echo "install-skills: couldn't find extracted repo contents, skipping." >&2
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
TARGET_DIRS=("$HOME/.claude/skills" "$HOME/.copilot/skills" "$HOME/.gemini/config/skills")
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
mkdir -p "$dir"
|
||||
done
|
||||
|
||||
# Common skill bundle, installed for every environment.
|
||||
COMMON_SKILLS_SRC="$INNER_DIR/extensions/awesome-skills-plugin/skills"
|
||||
if [ -d "$COMMON_SKILLS_SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$COMMON_SKILLS_SRC/." "$dir/"
|
||||
done
|
||||
echo "install-skills: installed common skill bundle into ${TARGET_DIRS[*]}"
|
||||
else
|
||||
echo "install-skills: common skill bundle not found at $COMMON_SKILLS_SRC, skipping." >&2
|
||||
fi
|
||||
|
||||
# Environment-specific specialty skills, if any were requested.
|
||||
for skill in ${SPECIALTY_SKILLS:-}; do
|
||||
SRC="$INNER_DIR/extensions/custom-specialty-plugin/skills/$skill"
|
||||
if [ -d "$SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$SRC" "$dir/$skill"
|
||||
done
|
||||
echo "install-skills: installed specialty skill '$skill'"
|
||||
else
|
||||
echo "install-skills: specialty skill '$skill' not found at $SRC, skipping." >&2
|
||||
fi
|
||||
done
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
echo "install-skills: done."
|
||||
@@ -11,7 +11,7 @@ terraform {
|
||||
|
||||
locals {
|
||||
env_name = "Python Engineering"
|
||||
profile = jsondecode(file("${path.module}/../../profile-templates/Python.code-profile"))
|
||||
profile = jsondecode(file("${path.module}/profile.code-profile"))
|
||||
settings_raw = jsondecode(local.profile.settings).settings
|
||||
extensions = [for e in jsondecode(local.profile.extensions) : e.identifier.id]
|
||||
}
|
||||
@@ -243,7 +243,7 @@ resource "coder_script" "apply_settings" {
|
||||
|
||||
# Drops the shared CLI setup wizard onto the workspace and hooks it into
|
||||
# every new interactive shell (via .bashrc) until the user completes it.
|
||||
# See ../../scripts/cli-setup-wizard.sh for what it actually asks.
|
||||
# See ./cli-setup-wizard.sh for what it actually asks.
|
||||
resource "coder_script" "cli_setup_wizard" {
|
||||
agent_id = coder_agent.main.id
|
||||
display_name = "Install CLI Setup Wizard"
|
||||
@@ -252,7 +252,7 @@ resource "coder_script" "cli_setup_wizard" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
echo '${base64encode(file("${path.module}/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
chmod +x /opt/coder/cli-setup-wizard.sh
|
||||
|
||||
MARKER="# >>> coder cli setup wizard >>>"
|
||||
@@ -297,7 +297,7 @@ resource "coder_script" "install_bun" {
|
||||
}
|
||||
|
||||
# Installs this repo's Agent Skills into Claude Code, GitHub Copilot CLI, and
|
||||
# Antigravity CLI's skills directories. See ../../scripts/install-skills.sh.
|
||||
# Antigravity CLI's skills directories. See ./install-skills.sh.
|
||||
# Python has no matching entry in extensions/custom-specialty-plugin/skills,
|
||||
# so it only gets the common awesome-skills-plugin bundle.
|
||||
resource "coder_script" "install_skills" {
|
||||
@@ -308,7 +308,7 @@ resource "coder_script" "install_skills" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
echo '${base64encode(file("${path.module}/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
chmod +x /opt/coder/install-skills.sh
|
||||
SPECIALTY_SKILLS="" /opt/coder/install-skills.sh
|
||||
EOT
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,107 @@
|
||||
#!/usr/bin/env bash
|
||||
# Coder workspace first-run CLI setup wizard.
|
||||
#
|
||||
# Meant to be `source`d from a new interactive shell (e.g. via .bashrc). It asks,
|
||||
# once per user per workspace, whether to install and log into a few optional
|
||||
# AI coding CLIs. It re-runs on every new terminal until the user lets it finish
|
||||
# (or explicitly skips it for good), then gets out of the way.
|
||||
#
|
||||
# VS Code / code-server extensions are intentionally NOT asked about here -
|
||||
# they're installed declaratively by the Coder template itself (the
|
||||
# `code-server` module's `extensions` input, populated from the matching
|
||||
# profile-templates/*.code-profile file at template-push time).
|
||||
#
|
||||
# Manual re-run: bash /opt/coder/cli-setup-wizard.sh --force
|
||||
|
||||
set -u
|
||||
|
||||
WIZARD_DONE_FILE="${HOME}/.cache/coder-cli-wizard/done"
|
||||
FORCE=0
|
||||
[ "${1:-}" = "--force" ] && FORCE=1
|
||||
|
||||
export BUN_INSTALL="${HOME}/.bun"
|
||||
export PATH="${BUN_INSTALL}/bin:${HOME}/.local/bin:${PATH}"
|
||||
|
||||
# Only bother interactive shells with a real terminal attached, and only until
|
||||
# the user marks the wizard as done.
|
||||
if [ "$FORCE" -ne 1 ]; then
|
||||
case "$-" in
|
||||
*i*) : ;;
|
||||
*) return 0 2>/dev/null || exit 0 ;;
|
||||
esac
|
||||
[ -t 0 ] || { return 0 2>/dev/null || exit 0; }
|
||||
[ -f "$WIZARD_DONE_FILE" ] && { return 0 2>/dev/null || exit 0; }
|
||||
fi
|
||||
|
||||
mkdir -p "$(dirname "$WIZARD_DONE_FILE")"
|
||||
|
||||
ask_yes_no() {
|
||||
local prompt="$1" reply
|
||||
read -r -p "$prompt [y/N] " reply
|
||||
case "$reply" in
|
||||
[Yy]*) return 0 ;;
|
||||
*) return 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
echo ""
|
||||
echo "==================================================================="
|
||||
echo " Coder workspace setup wizard"
|
||||
echo " Runs once per new terminal until you finish it. Ctrl+C any time"
|
||||
echo " to skip for now - it'll ask again next terminal."
|
||||
echo "==================================================================="
|
||||
|
||||
# --- GitHub Copilot CLI ---
|
||||
if command -v copilot >/dev/null 2>&1; then
|
||||
echo "GitHub Copilot CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install GitHub Copilot CLI and log in?"; then
|
||||
if bun install -g @github/copilot; then
|
||||
copilot login || echo "Install succeeded but login didn't complete. Retry any time with: copilot login"
|
||||
else
|
||||
echo "Copilot CLI install failed. Retry later with: bun install -g @github/copilot && copilot login"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping GitHub Copilot CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
# --- Google Antigravity CLI (agy) ---
|
||||
if command -v agy >/dev/null 2>&1; then
|
||||
echo "Antigravity CLI already installed, skipping."
|
||||
else
|
||||
if ask_yes_no "Install Google Antigravity CLI (agy) and log in?"; then
|
||||
if curl -fsSL https://antigravity.google/cli/install.sh | bash; then
|
||||
echo "Launching 'agy' once to complete sign-in (exit with /logout or Ctrl+D when done)..."
|
||||
agy || echo "Sign-in didn't complete. Retry any time by running: agy"
|
||||
else
|
||||
echo "Antigravity CLI install failed. Retry later with: curl -fsSL https://antigravity.google/cli/install.sh | bash"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# --- Claude Code CLI ---
|
||||
if command -v claude >/dev/null 2>&1; then
|
||||
echo "Claude Code CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install Claude Code CLI and log in?"; then
|
||||
if bun install -g @anthropic-ai/claude-code; then
|
||||
echo "Launching 'claude' once to complete sign-in (use /login if not prompted; Ctrl+C to exit when done)..."
|
||||
claude || echo "Sign-in didn't complete. Retry any time by running: claude"
|
||||
else
|
||||
echo "Claude Code CLI install failed. Retry later with: bun install -g @anthropic-ai/claude-code"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping Claude Code CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
echo ""
|
||||
if ask_yes_no "Mark setup wizard as complete so it stops asking on new terminals?"; then
|
||||
touch "$WIZARD_DONE_FILE"
|
||||
echo "Done. Re-run any time with: bash /opt/coder/cli-setup-wizard.sh --force"
|
||||
else
|
||||
echo "OK, this'll ask again next time you open a terminal."
|
||||
fi
|
||||
|
||||
return 0 2>/dev/null || exit 0
|
||||
@@ -0,0 +1,68 @@
|
||||
#!/usr/bin/env bash
|
||||
# Installs this repo's Agent Skills (extensions/{awesome-skills-plugin,
|
||||
# custom-specialty-plugin}/skills/*, each a SKILL.md-based skill directory)
|
||||
# into every AI CLI's personal skills directory:
|
||||
#
|
||||
# Claude Code CLI -> ~/.claude/skills/<name>/
|
||||
# GitHub Copilot CLI -> ~/.copilot/skills/<name>/
|
||||
# Antigravity CLI -> ~/.gemini/config/skills/<name>/ (per antigravity.google/docs/skills;
|
||||
# worth a spot-check if agy doesn't pick these up, some third-party
|
||||
# docs disagree on the exact path)
|
||||
#
|
||||
# Run once at workspace startup via coder_script. Pulls this repo fresh from
|
||||
# Gitea rather than embedding ~2.5MB of skill files into Terraform state.
|
||||
#
|
||||
# Env vars:
|
||||
# SPECIALTY_SKILLS - optional space-separated skill names from
|
||||
# extensions/custom-specialty-plugin/skills/ to install in addition to
|
||||
# the common awesome-skills-plugin bundle (every env gets that one).
|
||||
|
||||
set -e
|
||||
|
||||
REPO_ZIP_URL="https://git.octoturge.com/octoturge/Profiles-for-Coder/archive/main.zip"
|
||||
ZIP_PATH="/tmp/coder-skills-src.zip"
|
||||
WORK_DIR="/tmp/coder-skills-src"
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
curl -fsSL "$REPO_ZIP_URL" -o "$ZIP_PATH"
|
||||
mkdir -p "$WORK_DIR"
|
||||
unzip -q -o "$ZIP_PATH" -d "$WORK_DIR"
|
||||
|
||||
INNER_DIR=$(find "$WORK_DIR" -mindepth 1 -maxdepth 1 -type d | head -n1)
|
||||
if [ -z "$INNER_DIR" ]; then
|
||||
echo "install-skills: couldn't find extracted repo contents, skipping." >&2
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
TARGET_DIRS=("$HOME/.claude/skills" "$HOME/.copilot/skills" "$HOME/.gemini/config/skills")
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
mkdir -p "$dir"
|
||||
done
|
||||
|
||||
# Common skill bundle, installed for every environment.
|
||||
COMMON_SKILLS_SRC="$INNER_DIR/extensions/awesome-skills-plugin/skills"
|
||||
if [ -d "$COMMON_SKILLS_SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$COMMON_SKILLS_SRC/." "$dir/"
|
||||
done
|
||||
echo "install-skills: installed common skill bundle into ${TARGET_DIRS[*]}"
|
||||
else
|
||||
echo "install-skills: common skill bundle not found at $COMMON_SKILLS_SRC, skipping." >&2
|
||||
fi
|
||||
|
||||
# Environment-specific specialty skills, if any were requested.
|
||||
for skill in ${SPECIALTY_SKILLS:-}; do
|
||||
SRC="$INNER_DIR/extensions/custom-specialty-plugin/skills/$skill"
|
||||
if [ -d "$SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$SRC" "$dir/$skill"
|
||||
done
|
||||
echo "install-skills: installed specialty skill '$skill'"
|
||||
else
|
||||
echo "install-skills: specialty skill '$skill' not found at $SRC, skipping." >&2
|
||||
fi
|
||||
done
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
echo "install-skills: done."
|
||||
@@ -11,7 +11,7 @@ terraform {
|
||||
|
||||
locals {
|
||||
env_name = "TTRPG & Lore Building"
|
||||
profile = jsondecode(file("${path.module}/../../profile-templates/TTRPG.code-profile"))
|
||||
profile = jsondecode(file("${path.module}/profile.code-profile"))
|
||||
settings_raw = jsondecode(local.profile.settings).settings
|
||||
extensions = [for e in jsondecode(local.profile.extensions) : e.identifier.id]
|
||||
}
|
||||
@@ -243,7 +243,7 @@ resource "coder_script" "apply_settings" {
|
||||
|
||||
# Drops the shared CLI setup wizard onto the workspace and hooks it into
|
||||
# every new interactive shell (via .bashrc) until the user completes it.
|
||||
# See ../../scripts/cli-setup-wizard.sh for what it actually asks.
|
||||
# See ./cli-setup-wizard.sh for what it actually asks.
|
||||
resource "coder_script" "cli_setup_wizard" {
|
||||
agent_id = coder_agent.main.id
|
||||
display_name = "Install CLI Setup Wizard"
|
||||
@@ -252,7 +252,7 @@ resource "coder_script" "cli_setup_wizard" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
echo '${base64encode(file("${path.module}/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
chmod +x /opt/coder/cli-setup-wizard.sh
|
||||
|
||||
MARKER="# >>> coder cli setup wizard >>>"
|
||||
@@ -299,7 +299,7 @@ resource "coder_script" "install_bun" {
|
||||
# Installs this repo's Agent Skills into Claude Code, GitHub Copilot CLI, and
|
||||
# Antigravity CLI's skills directories, plus the foundryvtt-modding and
|
||||
# ttrpg-lore-weaver skills from extensions/custom-specialty-plugin.
|
||||
# See ../../scripts/install-skills.sh.
|
||||
# See ./install-skills.sh.
|
||||
resource "coder_script" "install_skills" {
|
||||
agent_id = coder_agent.main.id
|
||||
display_name = "Install Agent Skills"
|
||||
@@ -308,7 +308,7 @@ resource "coder_script" "install_skills" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
echo '${base64encode(file("${path.module}/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
chmod +x /opt/coder/install-skills.sh
|
||||
SPECIALTY_SKILLS="foundryvtt-modding ttrpg-lore-weaver" /opt/coder/install-skills.sh
|
||||
EOT
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,107 @@
|
||||
#!/usr/bin/env bash
|
||||
# Coder workspace first-run CLI setup wizard.
|
||||
#
|
||||
# Meant to be `source`d from a new interactive shell (e.g. via .bashrc). It asks,
|
||||
# once per user per workspace, whether to install and log into a few optional
|
||||
# AI coding CLIs. It re-runs on every new terminal until the user lets it finish
|
||||
# (or explicitly skips it for good), then gets out of the way.
|
||||
#
|
||||
# VS Code / code-server extensions are intentionally NOT asked about here -
|
||||
# they're installed declaratively by the Coder template itself (the
|
||||
# `code-server` module's `extensions` input, populated from the matching
|
||||
# profile-templates/*.code-profile file at template-push time).
|
||||
#
|
||||
# Manual re-run: bash /opt/coder/cli-setup-wizard.sh --force
|
||||
|
||||
set -u
|
||||
|
||||
WIZARD_DONE_FILE="${HOME}/.cache/coder-cli-wizard/done"
|
||||
FORCE=0
|
||||
[ "${1:-}" = "--force" ] && FORCE=1
|
||||
|
||||
export BUN_INSTALL="${HOME}/.bun"
|
||||
export PATH="${BUN_INSTALL}/bin:${HOME}/.local/bin:${PATH}"
|
||||
|
||||
# Only bother interactive shells with a real terminal attached, and only until
|
||||
# the user marks the wizard as done.
|
||||
if [ "$FORCE" -ne 1 ]; then
|
||||
case "$-" in
|
||||
*i*) : ;;
|
||||
*) return 0 2>/dev/null || exit 0 ;;
|
||||
esac
|
||||
[ -t 0 ] || { return 0 2>/dev/null || exit 0; }
|
||||
[ -f "$WIZARD_DONE_FILE" ] && { return 0 2>/dev/null || exit 0; }
|
||||
fi
|
||||
|
||||
mkdir -p "$(dirname "$WIZARD_DONE_FILE")"
|
||||
|
||||
ask_yes_no() {
|
||||
local prompt="$1" reply
|
||||
read -r -p "$prompt [y/N] " reply
|
||||
case "$reply" in
|
||||
[Yy]*) return 0 ;;
|
||||
*) return 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
echo ""
|
||||
echo "==================================================================="
|
||||
echo " Coder workspace setup wizard"
|
||||
echo " Runs once per new terminal until you finish it. Ctrl+C any time"
|
||||
echo " to skip for now - it'll ask again next terminal."
|
||||
echo "==================================================================="
|
||||
|
||||
# --- GitHub Copilot CLI ---
|
||||
if command -v copilot >/dev/null 2>&1; then
|
||||
echo "GitHub Copilot CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install GitHub Copilot CLI and log in?"; then
|
||||
if bun install -g @github/copilot; then
|
||||
copilot login || echo "Install succeeded but login didn't complete. Retry any time with: copilot login"
|
||||
else
|
||||
echo "Copilot CLI install failed. Retry later with: bun install -g @github/copilot && copilot login"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping GitHub Copilot CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
# --- Google Antigravity CLI (agy) ---
|
||||
if command -v agy >/dev/null 2>&1; then
|
||||
echo "Antigravity CLI already installed, skipping."
|
||||
else
|
||||
if ask_yes_no "Install Google Antigravity CLI (agy) and log in?"; then
|
||||
if curl -fsSL https://antigravity.google/cli/install.sh | bash; then
|
||||
echo "Launching 'agy' once to complete sign-in (exit with /logout or Ctrl+D when done)..."
|
||||
agy || echo "Sign-in didn't complete. Retry any time by running: agy"
|
||||
else
|
||||
echo "Antigravity CLI install failed. Retry later with: curl -fsSL https://antigravity.google/cli/install.sh | bash"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# --- Claude Code CLI ---
|
||||
if command -v claude >/dev/null 2>&1; then
|
||||
echo "Claude Code CLI already installed, skipping."
|
||||
elif command -v bun >/dev/null 2>&1; then
|
||||
if ask_yes_no "Install Claude Code CLI and log in?"; then
|
||||
if bun install -g @anthropic-ai/claude-code; then
|
||||
echo "Launching 'claude' once to complete sign-in (use /login if not prompted; Ctrl+C to exit when done)..."
|
||||
claude || echo "Sign-in didn't complete. Retry any time by running: claude"
|
||||
else
|
||||
echo "Claude Code CLI install failed. Retry later with: bun install -g @anthropic-ai/claude-code"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "Skipping Claude Code CLI: bun not found on this workspace image."
|
||||
fi
|
||||
|
||||
echo ""
|
||||
if ask_yes_no "Mark setup wizard as complete so it stops asking on new terminals?"; then
|
||||
touch "$WIZARD_DONE_FILE"
|
||||
echo "Done. Re-run any time with: bash /opt/coder/cli-setup-wizard.sh --force"
|
||||
else
|
||||
echo "OK, this'll ask again next time you open a terminal."
|
||||
fi
|
||||
|
||||
return 0 2>/dev/null || exit 0
|
||||
@@ -0,0 +1,68 @@
|
||||
#!/usr/bin/env bash
|
||||
# Installs this repo's Agent Skills (extensions/{awesome-skills-plugin,
|
||||
# custom-specialty-plugin}/skills/*, each a SKILL.md-based skill directory)
|
||||
# into every AI CLI's personal skills directory:
|
||||
#
|
||||
# Claude Code CLI -> ~/.claude/skills/<name>/
|
||||
# GitHub Copilot CLI -> ~/.copilot/skills/<name>/
|
||||
# Antigravity CLI -> ~/.gemini/config/skills/<name>/ (per antigravity.google/docs/skills;
|
||||
# worth a spot-check if agy doesn't pick these up, some third-party
|
||||
# docs disagree on the exact path)
|
||||
#
|
||||
# Run once at workspace startup via coder_script. Pulls this repo fresh from
|
||||
# Gitea rather than embedding ~2.5MB of skill files into Terraform state.
|
||||
#
|
||||
# Env vars:
|
||||
# SPECIALTY_SKILLS - optional space-separated skill names from
|
||||
# extensions/custom-specialty-plugin/skills/ to install in addition to
|
||||
# the common awesome-skills-plugin bundle (every env gets that one).
|
||||
|
||||
set -e
|
||||
|
||||
REPO_ZIP_URL="https://git.octoturge.com/octoturge/Profiles-for-Coder/archive/main.zip"
|
||||
ZIP_PATH="/tmp/coder-skills-src.zip"
|
||||
WORK_DIR="/tmp/coder-skills-src"
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
curl -fsSL "$REPO_ZIP_URL" -o "$ZIP_PATH"
|
||||
mkdir -p "$WORK_DIR"
|
||||
unzip -q -o "$ZIP_PATH" -d "$WORK_DIR"
|
||||
|
||||
INNER_DIR=$(find "$WORK_DIR" -mindepth 1 -maxdepth 1 -type d | head -n1)
|
||||
if [ -z "$INNER_DIR" ]; then
|
||||
echo "install-skills: couldn't find extracted repo contents, skipping." >&2
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
TARGET_DIRS=("$HOME/.claude/skills" "$HOME/.copilot/skills" "$HOME/.gemini/config/skills")
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
mkdir -p "$dir"
|
||||
done
|
||||
|
||||
# Common skill bundle, installed for every environment.
|
||||
COMMON_SKILLS_SRC="$INNER_DIR/extensions/awesome-skills-plugin/skills"
|
||||
if [ -d "$COMMON_SKILLS_SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$COMMON_SKILLS_SRC/." "$dir/"
|
||||
done
|
||||
echo "install-skills: installed common skill bundle into ${TARGET_DIRS[*]}"
|
||||
else
|
||||
echo "install-skills: common skill bundle not found at $COMMON_SKILLS_SRC, skipping." >&2
|
||||
fi
|
||||
|
||||
# Environment-specific specialty skills, if any were requested.
|
||||
for skill in ${SPECIALTY_SKILLS:-}; do
|
||||
SRC="$INNER_DIR/extensions/custom-specialty-plugin/skills/$skill"
|
||||
if [ -d "$SRC" ]; then
|
||||
for dir in "${TARGET_DIRS[@]}"; do
|
||||
cp -r "$SRC" "$dir/$skill"
|
||||
done
|
||||
echo "install-skills: installed specialty skill '$skill'"
|
||||
else
|
||||
echo "install-skills: specialty skill '$skill' not found at $SRC, skipping." >&2
|
||||
fi
|
||||
done
|
||||
|
||||
rm -rf "$WORK_DIR" "$ZIP_PATH"
|
||||
echo "install-skills: done."
|
||||
@@ -11,7 +11,7 @@ terraform {
|
||||
|
||||
locals {
|
||||
env_name = "Web Applications"
|
||||
profile = jsondecode(file("${path.module}/../../profile-templates/Web.code-profile"))
|
||||
profile = jsondecode(file("${path.module}/profile.code-profile"))
|
||||
settings_raw = jsondecode(local.profile.settings).settings
|
||||
extensions = [for e in jsondecode(local.profile.extensions) : e.identifier.id]
|
||||
}
|
||||
@@ -243,7 +243,7 @@ resource "coder_script" "apply_settings" {
|
||||
|
||||
# Drops the shared CLI setup wizard onto the workspace and hooks it into
|
||||
# every new interactive shell (via .bashrc) until the user completes it.
|
||||
# See ../../scripts/cli-setup-wizard.sh for what it actually asks.
|
||||
# See ./cli-setup-wizard.sh for what it actually asks.
|
||||
resource "coder_script" "cli_setup_wizard" {
|
||||
agent_id = coder_agent.main.id
|
||||
display_name = "Install CLI Setup Wizard"
|
||||
@@ -252,7 +252,7 @@ resource "coder_script" "cli_setup_wizard" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
echo '${base64encode(file("${path.module}/cli-setup-wizard.sh"))}' | base64 -d > /opt/coder/cli-setup-wizard.sh
|
||||
chmod +x /opt/coder/cli-setup-wizard.sh
|
||||
|
||||
MARKER="# >>> coder cli setup wizard >>>"
|
||||
@@ -297,7 +297,7 @@ resource "coder_script" "install_bun" {
|
||||
}
|
||||
|
||||
# Installs this repo's Agent Skills into Claude Code, GitHub Copilot CLI, and
|
||||
# Antigravity CLI's skills directories. See ../../scripts/install-skills.sh.
|
||||
# Antigravity CLI's skills directories. See ./install-skills.sh.
|
||||
# Web has no matching entry in extensions/custom-specialty-plugin/skills,
|
||||
# so it only gets the common awesome-skills-plugin bundle.
|
||||
resource "coder_script" "install_skills" {
|
||||
@@ -308,7 +308,7 @@ resource "coder_script" "install_skills" {
|
||||
#!/bin/bash
|
||||
set -e
|
||||
mkdir -p /opt/coder
|
||||
echo '${base64encode(file("${path.module}/../../scripts/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
echo '${base64encode(file("${path.module}/install-skills.sh"))}' | base64 -d > /opt/coder/install-skills.sh
|
||||
chmod +x /opt/coder/install-skills.sh
|
||||
SPECIALTY_SKILLS="" /opt/coder/install-skills.sh
|
||||
EOT
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user