smithery.ai

agent-scripts-setup

Install, update, and troubleshoot agent-scripts automation tools.

First seen Apr 24, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.6.0
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,757 B
  • docs SUMMARY.md 92 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Agent Scripts Setup

Install and manage agent-scripts automation tools for Claude Code.

Installation

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

Updating

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.

What Gets Installed

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/
        └── ...

Options

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

Check Version

grep VERSION agent-scripts/version.ts

Or check skill front matter:

head -10 .claude/skills/chrome-devtools/SKILL.md

Troubleshooting

"Cannot find module" errors

Re-run setup to ensure all files are present:

bun run agent-scripts/setup.ts

Dependencies missing

cd agent-scripts && bun install

Skills not appearing

Ensure .claude/skills/ exists and contains skill directories:

ls -la .claude/skills/

Old version after update

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 -

Prerequisites

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

Related Skills

  • /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