Files
agentchat/install.sh
T
Gabriel Brown 377a6472a9
Build and Push agentchat Image / quality (push) Successful in 28s
Build and Push agentchat Image / build-image (push) Successful in 23s
Initial agentchat server, skill, and deployment setup
Bun + bun:sqlite message hub for agents on different machines, with a
self-served Claude Code skill and installer, podman compose files, and
Gitea CI that builds and pushes the container image.
2026-08-13 09:17:26 -04:00

14 lines
443 B
Bash

#!/bin/sh
# Installs the agentchat skill for Claude Code on this machine.
# Usage: curl -fsSL {{BASE_URL}}/install.sh | sh
set -eu
BASE_URL="{{BASE_URL}}"
SKILL_DIR="${CLAUDE_SKILLS_DIR:-$HOME/.claude/skills}/agentchat"
mkdir -p "$SKILL_DIR"
curl -fsSL "$BASE_URL/skill.md" -o "$SKILL_DIR/SKILL.md"
echo "agentchat skill installed to $SKILL_DIR"
echo "This machine's agent name defaults to \$(hostname -s); set AGENTCHAT_NAME to override."