get-started
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/gitagent
gitagent --version
Create Your First Agent
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) andSOUL.md(identity, personality) -
Validate — Check your work:
gitagent validate -d ./my-agent -
Run — Launch with Claude:
gitagent 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" # 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
More from open-gitagent/gitagent
export-agent
Converts agent definitions between frameworks — exports to Claude Code, OpenAI, CrewAI, Lyzr, and GitHub Models formats, and imports from Claude, Cursor, and CrewAI projects. Use when the user wants to convert an agent, migrate to another framework, export to LangChain/AutoGen/CrewAI, or import from existing automation tools.
4document-review
Reviews financial documents (prospectuses, ADVs, marketing materials) for FINRA 2210 compliance, required disclosures, and balanced presentation. Use when reviewing financial statements, audit documents, regulatory filings, or when the user mentions compliance checks, financial audits, or document verification.
4regulatory-analysis
Analyzes documents and processes against FINRA, SEC, Federal Reserve, and CFPB regulatory frameworks. Identifies compliance gaps, classifies findings by severity, and recommends remediation. Use when performing compliance audits, regulatory reviews, gap analyses, or verifying policy adherence to financial regulations.
4knowledge-retrieval
Semantic search over ingested documents using RAG (LlamaIndex/ChromaDB or Foundational RAG)
2wiki-query
Query the wiki to answer questions. Searches wiki pages, synthesizes answers with citations, and optionally files valuable answers back as new wiki pages. Use when the user asks a question about the knowledge base.
1