examples/gitagent-helper/skills/get-started/SKILL.md
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?'
npx skillsauth add open-gitagent/gitagent get-startedInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
When a user is new to gitagent, wants to set up their first agent, or asks "how do I start?"
npm install -g @open-gitagent/gapman
gapman --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
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
agent.yaml — name, version, description (required)SOUL.md — agent identity (required)development
Reviews code diffs and files for security vulnerabilities (OWASP Top 10), error handling, complexity, naming conventions, and performance issues. Use when the user asks to review a PR, pull request, diff, merge request, or code changes.
development
Advanced web search using Tavily API for current information retrieval
development
Academic paper search via Google Scholar using Serper API
documentation
Semantic search over ingested documents using RAG (LlamaIndex/ChromaDB or Foundational RAG)