AI Summary1. Create directory structure: 2. Write with required fields (see below) 3. Create with agent identity
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "create-agent" skill in my project. Please run this command in my terminal: # Install skill into your project mkdir -p .claude/skills/create-agent && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/create-agent/SKILL.md "https://raw.githubusercontent.com/open-gitagent/gitagent/main/examples/gitagent-helper/skills/create-agent/SKILL.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Creates and configures agent.yaml files, writes SOUL.md personality definitions, and sets up agent directory structures with skills, tools, and knowledge. Use when the user wants to configure an agent, create agent.yaml, write SOUL.md, set up agent directory structure, or customize agent settings.
Skills & Tools
`yaml skills: • code-review # Must match directory name in skills/ • security-audit tools: • lint-check # Must match filename in tools/ (without .yaml) `
Adding Tools
Create tools/<name>.yaml: `yaml name: my-tool description: What this tool does input_schema: type: object properties: query: type: string description: Search query required: • query `
Quick Start
• Create directory structure: mkdir -p my-agent/skills • Write agent.yaml with required fields (see below) • Create SOUL.md with agent identity • Add skills, tools, and knowledge as needed • Validate: gitagent validate -d ./my-agent
Required Fields
`yaml spec_version: "0.1.0" name: my-agent # Unique identifier version: 1.0.0 # Semantic version description: What this agent does `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster