Post-implementation review of PR #93 (issue #89's apm.yml-native retargeting of skill-author/skill-audit/agent-author/agent-audit) found four confirmed defects across the four scripts' apm.yml `type:` walk-up logic: - field-inventory.md's apm-agent-allowlist was missing `source_keys`, contradicting agent-author/SKILL.md's own instruction (Step 5 checklist) to allow it at plugin/APM scope — a correctly-authored file with source_keys failed validate.sh. - validate.sh's APM_TYPE_RE and validate-provenance.sh's TYPE_RE disagreed: the former tolerated a quoted `type: "skill"` value, the latter didn't, despite agent-audit/SKILL.md explicitly documenting that validate-provenance.sh walks up "the same way validate.sh does". Both also used `\b` word-boundary matching, which false-matches a malformed value like `type: prompts-only` on the `prompts` prefix. Unified both regexes to be quote-tolerant and require an exact value. - All four scripts' `.git` project-boundary check used isdir()/[[ -d ]], which misses git worktrees where `.git` is a regular file (`gitdir: ...`) rather than a directory. Switched to exists()/[[ -e ]]. - new-agent.sh and new-skill.sh had the same quote-intolerance as above via inline `grep -qE` calls (new-skill.sh's also had the `\b` false-match bug); replaced both with a shared-shape `is_apm_package_manifest` bash helper matching the Python regex's semantics. Four other findings from the same review turned out not to be bugs: a bare `plugin.json` no longer signaling plugin scope is documented, intentional behavior (agent-audit/SKILL.md:30, agent-author/SKILL.md:87), deferred to issue #90's real plugin.json-to-apm.yml conversion — not something this fix should reverse. Verified via direct reproduction of each defect plus the full test suite: 147/147 bats tests, 39/39 shell-script tests, 12/12 summary categories. Refs: #89
271 lines
8.6 KiB
Bash
Executable File
271 lines
8.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SKILL_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
SKILL_ROOT="$(cd "$SKILL_DIR/.." && pwd)"
|
|
TEMPLATES_DIR="$SKILL_ROOT/assets/templates"
|
|
|
|
usage() {
|
|
cat <<EOF
|
|
Usage: new-agent.sh <agent-name> <root>
|
|
|
|
Scaffold agent definition file(s) for Claude Code, GitHub Copilot CLI, and/or
|
|
vendor-neutral APM packages.
|
|
|
|
Arguments:
|
|
agent-name Kebab-case agent identifier (e.g. code-reviewer, deploy-assistant).
|
|
root Starting directory — scope is resolved by walking up from here:
|
|
plugin/APM scope : nearest ancestor (at/above root) whose apm.yml
|
|
has a top-level type: field (instructions,
|
|
skill, hybrid, or prompts) — an apm.yml
|
|
without type: is a marketplace-only manifest
|
|
and is skipped, the walk continues upward
|
|
→ creates <package-root>/.apm/agents/<name>.agent.md
|
|
(single vendor-neutral file — no tools,
|
|
isolation, maxTurns, effort, memory, or
|
|
permissionMode; apm compile has no per-target
|
|
field integrator, see ADR-0016)
|
|
→ creates <package-root>/sources.md (if absent)
|
|
project scope : no type:-bearing apm.yml found; root is a
|
|
project directory
|
|
→ creates <root>/.claude/agents/<name>.md
|
|
→ creates <root>/.github/agents/<name>.agent.md
|
|
user scope : root is exactly ~ (home directory; checked
|
|
directly, no walk-up)
|
|
→ creates ~/.claude/agents/<name>.md
|
|
→ creates ~/.copilot/agents/<name>.agent.md
|
|
|
|
Each file is created only if it does not already exist (no-op per file).
|
|
|
|
Exit codes:
|
|
0 Files created or already existed (no-op)
|
|
1 Invalid arguments, missing root, or templates not found
|
|
EOF
|
|
}
|
|
|
|
if [[ "${1:-}" == "--help" || "${1:-}" == "-h" ]]; then
|
|
usage
|
|
exit 0
|
|
fi
|
|
|
|
if [[ $# -lt 2 ]]; then
|
|
echo "Error: agent-name and root are required." >&2
|
|
echo "" >&2
|
|
usage >&2
|
|
exit 1
|
|
fi
|
|
|
|
AGENT_NAME="$1"
|
|
ROOT="$2"
|
|
|
|
# Validate agent name format
|
|
if ! echo "$AGENT_NAME" | grep -qE '^[a-z0-9]+(-[a-z0-9]+)*$'; then
|
|
echo "Error: agent-name must use lowercase letters, numbers, and hyphens only." >&2
|
|
echo " No leading, trailing, or consecutive hyphens." >&2
|
|
echo " Received: '$AGENT_NAME'" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Validate templates directory
|
|
if [[ ! -d "$TEMPLATES_DIR" ]]; then
|
|
echo "Error: templates directory not found at '$TEMPLATES_DIR'." >&2
|
|
echo " Run this script from its original location inside the agent-author skill." >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Expand tilde
|
|
ROOT="${ROOT/#\~/$HOME}"
|
|
|
|
# Validate root exists
|
|
if [[ ! -d "$ROOT" ]]; then
|
|
echo "Error: root directory '$ROOT' does not exist." >&2
|
|
exit 1
|
|
fi
|
|
ROOT="$(cd "$ROOT" && pwd)"
|
|
|
|
# True if apm_yml's top-level `type:` line names one of the four APM package
|
|
# types (instructions/skill/hybrid/prompts) — tolerating an optional matching
|
|
# quote around the value and requiring the value end there, so a malformed
|
|
# value like `prompts-only` doesn't false-match on the `prompts` prefix.
|
|
is_apm_package_manifest() {
|
|
local apm_yml="$1" line value
|
|
while IFS= read -r line; do
|
|
[[ "$line" =~ ^type:[[:space:]]*(.*)$ ]] || continue
|
|
value="${BASH_REMATCH[1]}"
|
|
value="${value%%[[:space:]]*}"
|
|
value="${value#\"}"; value="${value%\"}"
|
|
value="${value#\'}"; value="${value%\'}"
|
|
case "$value" in
|
|
instructions|skill|hybrid|prompts) return 0 ;;
|
|
esac
|
|
done < "$apm_yml"
|
|
return 1
|
|
}
|
|
|
|
# --- Walk-up package-root detection ---
|
|
#
|
|
# Mirrors agent-audit's validate.sh scope walk-up, with apm.yml + type: swapped
|
|
# in for the old plugin.json marker. Starting at ROOT, walk upward:
|
|
# - an apm.yml with a top-level `type:` field marks an APM package root
|
|
# (plugin/APM scope) — stop and return it.
|
|
# - an apm.yml with no `type:` field is a marketplace-only manifest — skip
|
|
# it, keep walking up.
|
|
# - reaching $HOME marks the user-scope boundary — stop, even if $HOME is
|
|
# itself a .git-tracked dotfiles directory (checked before the .git test
|
|
# below, so a dotfiles repo at $HOME can't shadow user scope).
|
|
# - a .git file or directory marks the project-scope boundary (a worktree's
|
|
# .git is a file, not a directory) — stop.
|
|
# - filesystem root reached with neither found — boundary-reached.
|
|
find_package_root() {
|
|
local current="$1"
|
|
while true; do
|
|
if [[ -f "$current/apm.yml" ]] && is_apm_package_manifest "$current/apm.yml"; then
|
|
echo "plugin"
|
|
echo "$current"
|
|
return
|
|
fi
|
|
if [[ "$current" == "$HOME" ]]; then
|
|
echo "user"
|
|
echo "$current"
|
|
return
|
|
fi
|
|
if [[ -e "$current/.git" ]]; then
|
|
echo "project"
|
|
echo "$current"
|
|
return
|
|
fi
|
|
local parent
|
|
parent="$(dirname "$current")"
|
|
if [[ "$parent" == "$current" ]]; then
|
|
echo "boundary-reached"
|
|
echo "$current"
|
|
return
|
|
fi
|
|
current="$parent"
|
|
done
|
|
}
|
|
|
|
WALK_RESULT="$(find_package_root "$ROOT")"
|
|
WALK_KIND="$(echo "$WALK_RESULT" | sed -n '1p')"
|
|
WALK_ROOT="$(echo "$WALK_RESULT" | sed -n '2p')"
|
|
|
|
PACKAGE_ROOT=""
|
|
case "$WALK_KIND" in
|
|
plugin)
|
|
SCOPE="plugin"
|
|
PACKAGE_ROOT="$WALK_ROOT"
|
|
;;
|
|
user)
|
|
SCOPE="user"
|
|
;;
|
|
project)
|
|
SCOPE="project"
|
|
;;
|
|
boundary-reached)
|
|
# Default fallback, same as the pre-walk-up script: no plugin/APM
|
|
# marker, no $HOME boundary, and no .git means project scope.
|
|
SCOPE="project"
|
|
;;
|
|
esac
|
|
|
|
# Determine file destinations
|
|
case "$SCOPE" in
|
|
plugin)
|
|
APM_DIR="$PACKAGE_ROOT/.apm/agents"
|
|
SOURCES_DIR="$PACKAGE_ROOT"
|
|
;;
|
|
project)
|
|
CC_DIR="$ROOT/.claude/agents"
|
|
CP_DIR="$ROOT/.github/agents"
|
|
SOURCES_DIR=""
|
|
;;
|
|
user)
|
|
CC_DIR="$HOME/.claude/agents"
|
|
CP_DIR="$HOME/.copilot/agents"
|
|
SOURCES_DIR=""
|
|
;;
|
|
esac
|
|
|
|
created_any=false
|
|
|
|
if [[ "$SCOPE" == "plugin" ]]; then
|
|
APM_FILE="$APM_DIR/$AGENT_NAME.agent.md"
|
|
|
|
mkdir -p "$APM_DIR"
|
|
|
|
if [[ -f "$APM_FILE" ]]; then
|
|
echo "Skipping '$APM_FILE' — already exists." >&2
|
|
else
|
|
sed "s/AGENT_NAME/$AGENT_NAME/g" "$TEMPLATES_DIR/apm-agent.md" > "$APM_FILE"
|
|
echo "Created: $APM_FILE" >&2
|
|
created_any=true
|
|
fi
|
|
else
|
|
CC_FILE="$CC_DIR/$AGENT_NAME.md"
|
|
CP_FILE="$CP_DIR/$AGENT_NAME.agent.md"
|
|
|
|
mkdir -p "$CC_DIR"
|
|
mkdir -p "$CP_DIR"
|
|
|
|
# Copy Claude Code template (no-op if exists)
|
|
if [[ -f "$CC_FILE" ]]; then
|
|
echo "Skipping '$CC_FILE' — already exists." >&2
|
|
else
|
|
sed "s/AGENT_NAME/$AGENT_NAME/g" "$TEMPLATES_DIR/claude-code.md" > "$CC_FILE"
|
|
echo "Created: $CC_FILE" >&2
|
|
created_any=true
|
|
fi
|
|
|
|
# Copy Copilot template (no-op if exists)
|
|
if [[ -f "$CP_FILE" ]]; then
|
|
echo "Skipping '$CP_FILE' — already exists." >&2
|
|
else
|
|
sed "s/AGENT_NAME/$AGENT_NAME/g" "$TEMPLATES_DIR/copilot.agent.md" > "$CP_FILE"
|
|
echo "Created: $CP_FILE" >&2
|
|
created_any=true
|
|
fi
|
|
fi
|
|
|
|
# Create sources.md at plugin/APM package root (no-op if exists)
|
|
if [[ -n "$SOURCES_DIR" ]]; then
|
|
SOURCES_FILE="$SOURCES_DIR/sources.md"
|
|
if [[ -f "$SOURCES_FILE" ]]; then
|
|
echo "Skipping '$SOURCES_FILE' — already exists." >&2
|
|
else
|
|
cat > "$SOURCES_FILE" <<'SOURCES'
|
|
# Sources
|
|
|
|
<!-- List research sources that informed agents in this package.
|
|
Follow the format below. Only include entries with `extracted` status.
|
|
Delete this file if no research sources informed these agents. -->
|
|
|
|
<!-- ## source-slug
|
|
- **URL:** <url>
|
|
- **Research doc:** <relative-path-to-upstream-research-sources-file>
|
|
- **Description:** <what this source covers>
|
|
- **Contributing files:** .apm/agents/<name>.agent.md
|
|
- **Status:** `extracted` -->
|
|
SOURCES
|
|
echo "Created: $SOURCES_FILE" >&2
|
|
created_any=true
|
|
fi
|
|
fi
|
|
|
|
if [[ "$created_any" == false ]]; then
|
|
echo "All files already exist — nothing to do." >&2
|
|
else
|
|
echo "" >&2
|
|
echo "Scope: $SCOPE" >&2
|
|
echo "" >&2
|
|
echo "Next steps:" >&2
|
|
if [[ "$SCOPE" == "plugin" ]]; then
|
|
echo " 1. Fill in $APM_FILE — replace all FILL IN: placeholders (name, description, model, body only)" >&2
|
|
echo " 2. Populate $SOURCES_DIR/sources.md with research sources, or delete it" >&2
|
|
echo " 3. Validate: check required fields (name, description, system prompt) in the file" >&2
|
|
else
|
|
echo " 1. Fill in $CC_FILE — replace all FILL IN: placeholders" >&2
|
|
echo " 2. Fill in $CP_FILE — replace all FILL IN: placeholders" >&2
|
|
echo " 3. Validate: check required fields (name, description, system prompt) in both files" >&2
|
|
fi
|
|
fi
|