Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill agents-md명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | agents-md |
| description | Generates or updates an AGENTS.md file |
| metadata | {"author":"agent-substrate"} |
Generate or update AGENTS.md files in key folders of the project. Ensure the target AGENTS.md file accurately reflects the current status of the code.
There must always be an AGENTS.md file in the project root. The AGENTS.md file at the root of the project may include the following sections:
AGENTS.md files in subfolders may be even more concise and specific to those subfolders.
To maximize agent performance and token efficiency, adhere to the following:
Each AGENTS.md should be short. Approx. 100-150 lines total. Link to a handful of relevant, focused reference documents in the same repo, as needed.
While only one AGENTS.md is allowed per folder, you can create an AGENTS.md file in any folder. Rather than putting everything in the root AGENTS.md, move highly specific advice to AGENTS.md in the most relevant folders of the project.
When documentation that would have helped you is missing, add references in the docs/ folder found at the project root. When these get out of date, update them.
When references describe workflows, the tasks should be described as numbered steps. For example:
When there are multiple ways of doing something in the codebase, use a decision table like the following:
| Question | Boop | Bop |
|---|---|---|
| Is foo a bar baz? | ✅ | |
| Is foo a quux? | ✅ |
If you think they are particularly good examples, include snippets from actual code in the repo, up to approx. 10 lines in length. These should only be the most relevant examples and representative of patterns that would be good to repeat in future code. Their purpose is to improve code reuse by agents, rather than each agent reinventing the wheel.
If you think it would help, you can include a few simple domain specific rules. Not too many, or agents will get stuck trying to handle too many rules. A general example of a domain specific rule is "Use a finance-specific numeric type for any financial calculations."
When adding warnings against doing something, also make a concrete suggestion for the correct approach. "Don't do X, do Y instead."
Source: agent-substrate/substrate — distributed by TomeVault.