create-agentsmd

Generates an AGENTS.md file with setup, testing, and workflow instructions for coding agents.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/miyake-san/sogo-agent-platform --skill create-agentsmd-miyake-san
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: create-agentsmd
Source: https://github.com/miyake-san/sogo-agent-platform/tree/main/skills/core/create-agentsmd
Command: npx skills add https://github.com/miyake-san/sogo-agent-platform --skill create-agentsmd-miyake-san

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coding agents often lack the project-specific context they need to work effectively, forcing developers to repeatedly explain setup commands, test workflows, and conventions. This Skill produces a complete AGENTS.md file at the repository root that gives any AI coding agent the technical context it needs. ## Core Features & Use Cases - Structured AGENTS.md Generation: Creates a standards-compliant AGENTS.md following the public guidance at agents.md, covering setup, development workflow, testing, code style, and deployment. - Project Analysis Guidance: Instructs the agent to inspect package.json scripts, Makefiles, CI/CD configs, and documentation to extract accurate, actionable commands. - Monorepo Support: Handles nested AGENTS.md files for monorepos where the closest file takes precedence. - Use Case: After scaffolding a new TypeScript monorepo, run this Skill to produce an AGENTS.md documenting pnpm workspace commands, Vitest test patterns, and PR title conventions so any coding agent can contribute immediately. ## Quick Start Analyze this repository and create a complete AGENTS.md file at the root covering setup, testing, code style, and deployment commands.

Frequently Asked Questions about create-agentsmd

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

FAQPage Schema
How do I create an AGENTS.md file for my repository?

Place a Markdown file named AGENTS.md at the repository root containing setup commands, testing instructions, code style rules, and deployment steps. This Skill analyzes your project structure and generates the file following the agents.md open format.

What sections should an AGENTS.md file include?

Essential sections are project overview, setup commands, development workflow, testing instructions, code style guidelines, and build/deployment steps. Optional sections cover security, monorepo navigation, PR guidelines, and debugging tips.

Does AGENTS.md work with different AI coding tools?

Yes, AGENTS.md is an open format compatible with 20+ AI coding tools including Cursor, Aider, and Gemini CLI. It uses standard Markdown with a flexible structure, so any agent that reads the file can use its instructions.

How do I handle AGENTS.md in a monorepo?

Place a main AGENTS.md at the repository root and additional AGENTS.md files in subproject directories. The closest AGENTS.md file takes precedence for any given location, so package-specific instructions override root-level ones.

What is the difference between AGENTS.md and README.md?

AGENTS.md contains detailed technical instructions for automated coding agents, while README.md targets human readers. AGENTS.md complements rather than replaces the README by holding agent-specific context that would clutter human documentation.