Содержимое
Вы могли слышать про какие-то правила, скиллы или сабагенты, которые применяют в AI разработке. Записал видео о том, что это такое https://youtu.be/OlCjuaOM1QI Бонус к видео: Обещанный скилл для создания скиллов (он под gemini, но можно переделать под что угодно) --- name: create-skill description: Creates a new agent skill. Use this when the user wants to teach the agent a new capability or workflow. --- # Create Skill This skill helps you create new skills for the agent. ## When to use this skill - When the user asks to "create a skill" or "teach you how to...". - When you identify a repeatable process that should be documented as a skill. ## How to use it 1. Determine the Scope: * Workspace-specific: .agent/skills/<skill-name>/ (Default) * Global: ~/.gemini/antigravity/skills/<skill-name>/ (Only if requested) 2. Create the Directory: * Create a folder with a kebab-case name describing the skill (e.g., git-workflow, `deploy-prod`). 3. Create SKILL.md: * Create a SKILL.md file inside the folder. * Add YAML frontmatter: --- name: <skill-name> description: <Short description of what it does and when to use it> --- * Add sections: * # <Skill Name> * ## When to use this skill * ## How to use it (Step-by-step instructions) 4. Add Helper Files (Optional): * scripts/ for executable scripts. * templates/ for file templates. ## Best Practices - Clear Description: The description in frontmatter is critical for the agent to find the skill. - Specific: Skills should be focused on specific tasks. - Actionable: Instructions should be clear steps the agent can follow.