Use this skill to create or update the root AGENTS.md file to register AgenticDev skills for AI agent discovery. Triggers include "register AgenticDev", "update AGENTS.md", "setup agent guide", or initializing a new project.
npx claudepluginhub joshuarweaver/cascade-code-devops-misc-1 --plugin bodangren-git-workflowThis skill uses the workspace's default tool permissions.
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.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
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 paths