Creates or updates the AGENTS.md file to register AgenticDev skills for AI agent discovery. Useful after initializing a project or adding new skills.
How this skill is triggered — by the user, by Claude, or both
Slash command
/bodangren-git-workflow:agent-integratorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Idempotently create or update the AGENTS.md file in a project to register AgenticDev skills for discovery by AI agents. This skill ensures that any compatible AI agent working in the repository can discover and use the AgenticDev methodology and available skills.
Idempotently create or update the AGENTS.md file in a project to register AgenticDev skills for discovery by AI agents. This skill ensures that any compatible AI agent working in the repository can discover and use the AgenticDev methodology and available skills.
Use this skill in the following situations:
.claude/skills/ directory.claude/skills/ directory with AgenticDev skills installedThe AGENTS.md file serves as a discovery mechanism for AI agents:
Check if AGENTS.md needs to be created or updated:
# Check if file exists
ls -la AGENTS.md
# Check if AgenticDev section exists
grep "SYNTHESIS_FLOW" AGENTS.md
Execute the script to update AGENTS.md:
# Use default location (AGENTS.md in project root)
bash scripts/update-agents-file.sh
# Or specify custom location
bash scripts/update-agents-file.sh -f path/to/custom-agents.md
The helper script uses an idempotent update strategy:
Creates file if missing:
touch to ensure target file existsChecks for existing content:
<!-- SYNTHESIS_FLOW_START --> markerUpdates existing content:
Adds new content:
Preserves other content:
Check that AGENTS.md was updated correctly:
# View the file
cat AGENTS.md
# Verify markers are present
grep -A 5 "SYNTHESIS_FLOW_START" AGENTS.md
If the update looks correct, commit to the repository:
git add AGENTS.md
git commit -m "docs: Update AGENTS.md with AgenticDev guide"
git push
Symptom: Script cannot write to AGENTS.md
Solution:
ls -la AGENTS.mdSymptom: Content between markers is malformed
Solution:
<!-- SYNTHESIS_FLOW_START --> and <!-- SYNTHESIS_FLOW_END --> are presentSymptom: Script creates file in wrong location
Solution:
-f flag with full path: bash scripts/update-agents-file.sh -f /full/path/to/file.mdmkdir -p /path/to/directory-f flag for alternative file pathsnpx claudepluginhub joshuarweaver/cascade-code-devops-misc-1 --plugin bodangren-git-workflowCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.
2plugins reuse this skill
First indexed Jul 8, 2026