Install, update, and troubleshoot agent-scripts automation tools.
Install and manage agent-scripts automation tools for Claude Code.
Fresh install to current directory:
curl -fsSL https://raw.githubusercontent.com/ajbeck/agent-scripts/main/scripts/setup.ts | bun run -
Install to specific directory:
curl -fsSL https://raw.githubusercontent.com/ajbeck/agent-scripts/main/scripts/setup.ts | bun run - --target /path/to/project
With Jira project configuration:
curl -fsSL https://raw.githubusercontent.com/ajbeck/agent-scripts/main/scripts/setup.ts | bun run - --project MYPROJ
From project root (auto-detects installation):
bun run agent-scripts/setup.ts
Or re-run the curl install command - it detects existing installations and updates.
your-project/
โโโ agent-scripts/
โ โโโ lib/
โ โ โโโ acli/ # Jira automation
โ โ โโโ peekaboo/ # macOS automation
โ โ โโโ chrome/ # Browser automation
โ โโโ config/
โ โโโ setup.ts # This setup script
โ โโโ version.ts # Version info
โ โโโ AGENT_SCRIPTS.md # Reference documentation
โโโ .claude/
โโโ rules/
โ โโโ agent-scripts.md # Auto-loaded instructions
โโโ skills/
โโโ acli-jira/
โโโ peekaboo-macos/
โโโ chrome-devtools/
โโโ ...
| Option | Description |
|---|---|
--target <path> |
Target directory (auto-detected if in existing) |
--project <key> |
Default Jira project key for examples |
--dry-run |
Preview changes without making them |
--skip-deps |
Skip dependency installation |
grep VERSION agent-scripts/version.ts
Or check skill front matter:
head -10 .claude/skills/chrome-devtools/SKILL.md
Re-run setup to ensure all files are present:
bun run agent-scripts/setup.ts
cd agent-scripts && bun install
Ensure .claude/skills/ exists and contains skill directories:
ls -la .claude/skills/
Check that version.ts was updated:
cat agent-scripts/version.ts
If still old, force re-download:
curl -fsSL https://raw.githubusercontent.com/ajbeck/agent-scripts/main/scripts/setup.ts | bun run -
| Tool | Required | Purpose |
|---|---|---|
| Bun | Yes | JavaScript/TypeScript runtime |
| Chrome | For browser automation | Browser for chrome-devtools-mcp |
| acli | For Jira | Atlassian CLI |
| peekaboo | For macOS automation | macOS UI automation CLI |
/acli-jira - Jira automation API/peekaboo-macos - macOS automation API/chrome-devtools - Browser automation API/web-dev-assist - Web development workflow/tui-dev-assist - Terminal UI testing workflow