com um clique
get-started
Help users install gitagent and create their first agent from scratch
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Help users install gitagent and create their first agent from scratch
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Guide users through agent.yaml configuration, SOUL.md writing, and directory structure
Help users register their agent on the gitagent public registry at registry.gitagent.sh
Help users export agents to other frameworks and import from existing tools
Help users search, install, create, and manage agent skills
Help users run agents with different adapters — Claude, OpenAI, Lyzr, GitHub Models, and more
| name | get-started |
| description | Help users install gitagent and create their first agent from scratch |
| license | MIT |
| metadata | {"author":"gitagent","version":"1.0.0","category":"onboarding"} |
When a user is new to gitagent, wants to set up their first agent, or asks "how do I start?"
npm install -g gitagent
gitagent --version
Walk the user through these steps:
Scaffold — Pick a template:
# 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
Edit — Customize agent.yaml (name, description, model) and SOUL.md (identity, personality)
Validate — Check your work:
gitagent validate -d ./my-agent
Run — Launch with Claude:
gitagent run -d ./my-agent
README — A README.md is auto-generated with the run command and structure:
# README.md includes:
# npx @open-gitagent/gitagent run -r https://github.com/you/my-agent
# + description, skills, structure, link to gitagent repo
Share — Push to GitHub so anyone can run it:
cd my-agent
git init && git add . && git commit -m "Initial agent"
gh repo create my-agent --public --source=. --push
# Now anyone can run it:
npx @open-gitagent/gitagent run -r https://github.com/you/my-agent
After every agent creation, always ask: "Would you like me to push this to GitHub?"
gitagent registry -r https://github.com/you/my-agent -c developer-tools
# Opens a PR → CI validates → maintainer approves → live on registry.gitagent.sh
After every successful GitHub push, always ask: "Would you like to register this on the gitagent registry?"
agent.yaml — name, version, description (required)SOUL.md — agent identity (required)README.md — auto-generated with run command and structure (required)