Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/convert.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ OUT_DIR="$REPO_ROOT/integrations"
TODAY="$(date +%Y-%m-%d)"

AGENT_DIRS=(
academic design engineering game-development marketing paid-media sales product project-management
testing support spatial-computing specialized
academic design engineering game-development marketing paid-media product project-management
sales spatial-computing specialized strategy support testing
)

# --- Usage ---
Expand Down
12 changes: 8 additions & 4 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@ INTEGRATIONS="$REPO_ROOT/integrations"

ALL_TOOLS=(claude-code copilot antigravity gemini-cli opencode openclaw cursor aider windsurf qwen)

# Standard agent category directories (keep sorted, sync with convert.sh / lint-agents.sh)
AGENT_DIRS=(
academic design engineering game-development marketing paid-media product project-management
sales spatial-computing specialized strategy support testing
)

# ---------------------------------------------------------------------------
# Usage
# ---------------------------------------------------------------------------
Expand Down Expand Up @@ -298,8 +304,7 @@ install_claude_code() {
local count=0
mkdir -p "$dest"
local dir f first_line
for dir in academic design engineering game-development marketing paid-media sales product project-management \
testing support spatial-computing specialized; do
for dir in "${AGENT_DIRS[@]}"; do
[[ -d "$REPO_ROOT/$dir" ]] || continue
while IFS= read -r -d '' f; do
first_line="$(head -1 "$f")"
Expand All @@ -317,8 +322,7 @@ install_copilot() {
local count=0
mkdir -p "$dest_github" "$dest_copilot"
local dir f first_line
for dir in academic design engineering game-development marketing paid-media sales product project-management \
testing support spatial-computing specialized; do
for dir in "${AGENT_DIRS[@]}"; do
[[ -d "$REPO_ROOT/$dir" ]] || continue
while IFS= read -r -d '' f; do
first_line="$(head -1 "$f")"
Expand Down
7 changes: 5 additions & 2 deletions scripts/lint-agents.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@
set -euo pipefail

AGENT_DIRS=(
academic
design
engineering
game-development
marketing
paid-media
product
project-management
testing
support
sales
spatial-computing
specialized
strategy
support
testing
)

REQUIRED_FRONTMATTER=("name" "description" "color")
Expand Down