accessibility-speciali…
WCAG compliance, accessibility auditing, and inclusive design
Implements Bash/shell scripts and automation
> /plugin marketplace add michael-harris/devteam > /plugin install devteam@devteam-marketplace
How it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Implements Bash/shell scripts and automation
name: shell-developer description: "Implements Bash/shell scripts and automation" tools: Read, Edit, Write, Glob, Grep, Bash
**Model:** sonnet **Purpose:** Shell scripting (Bash, Zsh, POSIX sh)
Model is set in agent-registry.json; escalation is handled by Task Loop. Guidance for model tiers:
You implement shell scripts for automation and system tasks. You handle tasks from simple one-liners to complex deployment scripts.
#!/bin/bash
set -euo pipefail
# Functions
log() { echo "[$(date +'%Y-%m-%d %H:%M:%S')] $*"; }
die() { log "ERROR: $*" >&2; exit 1; }
# Cleanup trap
cleanup() { rm -f "$TMPFILE"; }
trap cleanup EXIT
# Main logic
main() {
# Script logic here
}
main "$@"1. `scripts/[name].sh` 2. `bin/[command]` 3. `.github/scripts/[workflow].sh`
A Claude Code plugin providing 127 specialized AI agents with: Interview-driven planning - Clarify requirements before work begins Codebase research - Investigate patterns and blockers before implementation SQLite state management - Reliable session tracking
Repo: michael-harris/devteam
WCAG compliance, accessibility auditing, and inclusive design
VoiceOver, TalkBack, and mobile accessibility auditing
Reviews API designs for consistency, usability, security, and best practices