Agent Skills
› open-gitagent/opengap
› get-started
get-started
GitHub指导新用户安装 gitagent 并创建第一个 Agent。涵盖全局安装、基于模板的项目脚手架生成、配置文件自定义、有效性验证及运行分享流程,帮助用户快速上手。
Trigger Scenarios
用户询问如何开始使用 gitagent
用户需要安装 gitagent
用户希望创建第一个 Agent
用户询问初始设置步骤
Install
npx skills add open-gitagent/opengap --skill get-started -g -y
SKILL.md
Frontmatter
{
"name": "get-started",
"license": "MIT",
"metadata": {
"author": "gitagent",
"version": "1.0.0",
"category": "onboarding"
},
"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?'"
}
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:
# Minimal (2 files) opengap init --template minimal --dir ./my-agent # Standard (with skills, tools, knowledge) opengap init --template standard --dir ./my-agent # Full (compliance, hooks, memory, workflows) opengap init --template full --dir ./my-agent -
Edit — Customize
agent.yaml(name, description, model) andSOUL.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" # Push to GitHub, then: 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
Version History
- d7a8e2e Current 2026-07-25 08:12


