agent-integrator

Creates or updates AGENTS.md to register SynthesisFlow skills for AI agent discovery.

Updated Jul 13, 2024
One-click install
npx skills add https://github.com/Reading-Advantage-Thailand/codecamp-advantage --skill agent-integrator-reading-advantage-thailand
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agent-integrator
Source: https://github.com/Reading-Advantage-Thailand/codecamp-advantage/tree/main/.claude/skills/agent-integrator
Command: npx skills add https://github.com/Reading-Advantage-Thailand/codecamp-advantage --skill agent-integrator-reading-advantage-thailand

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? AI agents working in a repository have no standard way to discover which SynthesisFlow skills are installed or how the methodology works. This Skill maintains an AGENTS.md file that acts as a discovery guide, keeping it synchronized as skills are added or removed. ## Core Features & Use Cases - Idempotent Updates: Uses marker-based replacement (<!-- SYNTHESIS_FLOW_START --> / <!-- SYNTHESIS_FLOW_END -->) so the script can run repeatedly without duplicating or corrupting content. - Content Preservation: Only modifies the marked section, leaving all other documentation in AGENTS.md untouched. - Custom File Paths: Supports a -f flag to target files other than the default AGENTS.md in the project root. - Use Case: After installing SynthesisFlow skills into .claude/skills/, run the helper script once so every AI agent that opens the repository immediately sees the methodology overview, skill catalog, and getting-started steps. ## Quick Start Run the update-agents-file.sh script to create or refresh the SynthesisFlow guide in my project's AGENTS.md file.

Frequently Asked Questions about agent-integrator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I register SynthesisFlow skills in AGENTS.md?▼

Run bash scripts/update-agents-file.sh from the project root. The script creates AGENTS.md if missing and inserts a marked SynthesisFlow guide section listing the methodology and available skills.

How do I update AGENTS.md after adding new skills?▼

Re-run the update script after adding skills to .claude/skills/. Because the update is idempotent and marker-based, it replaces only the SynthesisFlow section without duplicating content or touching other documentation.

Can I write the agent guide to a file other than AGENTS.md?▼

Yes, pass the -f flag with a custom path, for example bash scripts/update-agents-file.sh -f docs/agents.md. The script creates the target file if it does not exist.

Will the script overwrite my existing AGENTS.md content?▼

No. The script only modifies content between the SYNTHESIS_FLOW_START and SYNTHESIS_FLOW_END HTML comment markers. All other sections of the file are preserved exactly as they were.

Why does the script fail with a permission denied error?▼

The script needs write access to the target file and its directory. Check permissions with ls -la AGENTS.md, ensure you can write to the project root, and verify the parent directory exists when using a custom path.