| name | get-started |
| description | 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?' |
| license | MIT |
| metadata | {"author":"gitagent","version":"1.0.0","category":"onboarding"} |
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
npm install -g @open-gitagent/opengap
opengap --version
Create Your First Agent
Walk the user through these steps:
-
Scaffold — Pick a template:
opengap init --template minimal --dir ./my-agent
opengap init --template standard --dir ./my-agent
opengap init --template full --dir ./my-agent
-
Edit — Customize agent.yaml (name, description, model) and SOUL.md (identity, personality)
-
Validate — Check your work:
opengap validate -d ./my-agent
-
Run — Launch with Claude:
opengap run -d ./my-agent
-
Share — Push to git and anyone can run it:
cd my-agent && git init && git add . && git commit -m "Initial agent"
opengap 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