get-started

Solid

Guides installation of gitagent and creation of first agent with scaffolding, configuration, and validation. Use when the user is new to gitagent, asks how to get started, wants to install gitagent, set up their first agent, or says 'how do I start?'

AI & Automation 530 stars 115 forks Updated 5 days ago MIT

Install

View on GitHub

Quality Score: 92/100

Stars 20%
91
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
63
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Get Started with gitagent ## When to Use When a user is new to gitagent, wants to set up their first agent, or asks "how do I start?" ## Instructions ### Installation ```bash npm install -g gitagent gitagent --version ``` ### Create Your First Agent Walk the user through these steps: 1. **Scaffold** — Pick a template: ```bash # Minimal (2 files) gitagent init --template minimal --dir ./my-agent # Standard (with skills, tools, knowledge) gitagent init --template standard --dir ./my-agent # Full (compliance, hooks, memory, workflows) gitagent init --template full --dir ./my-agent ``` 2. **Edit** — Customize `agent.yaml` (name, description, model) and `SOUL.md` (identity, personality) 3. **Validate** — Check your work: ```bash gitagent validate -d ./my-agent ``` 4. **Run** — Launch with Claude: ```bash gitagent run -d ./my-agent ``` 5. **Share** — Push to git and anyone can run it: ```bash cd my-agent && git init && git add . && git commit -m "Initial agent" # Push to GitHub, then: gitagent run -r https://github.com/you/my-agent ``` ### Minimum Required Files - `agent.yaml` — name, version, description (required) - `SOUL.md` — agent identity (required) - Everything else is optional

Details

Author
open-gitagent
Repository
open-gitagent/gitagent
Created
3 months ago
Last Updated
5 days ago
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category