.claude/skills/agent-integrator/SKILL.md
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 skillsauth add bodangren/git-workflow agent-integratorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 pathstools
Use this skill to plan a new sprint. It uses the Gemini CLI to intelligently decompose approved specs into atomic GitHub issues for the development team. Triggers include "plan sprint", "create sprint", or "start new sprint".
tools
--- name: sprint-manager description: This skill orchestrates autonomous sprint execution by coordinating subagents to implement GitHub issues serially. It manages the full lifecycle: generating implementation plans via Gemini CLI, delegating implementation to subagents, reviewing PRs with Codex MCP, merging approved code, and running post-merge integration. Use this skill when asked to "run a sprint", "execute sprint issues", "implement issues autonomously", or "manage sprint workflow". --- #
tools
Use this skill to propose changes via the Spec PR process. It uses the Gemini CLI to generate high-quality draft specifications and to analyze PR feedback, accelerating the spec-driven development workflow. Triggers include "create spec" or "propose change".
development
Use this skill to discover all available AgenticDev skills and their capabilities. Provides a bootstrap context for AI agents by listing all skills, their descriptions, and script paths from the .claude/skills/ directory.