create-agent

仓库创建 2026年2月25日最近提交 24 天前SkillHot 收录 20 天前
▸ 精选理由

极大简化代理/技能项目的初始化与规范化,适合构建者与团队使用。

这个 Skill 做什么

生成 agent.yaml、SOUL.md 并搭建 agent 目录结构与技能配置的辅助工具。

帮你搭建 agent 的目录和配置,从生成 agent.yaml、写 SOUL.md(人物设定)到把技能、工具和知识库放好,一步到位初始化工程。想快速创建或复制一个 agent 框架、定制身份和技能列表时用。会把必需字段和校验步骤写清楚,方便直接运行验证(如 opengap validate)通过检查。

▸ 展开 SKILL.md 英文原文

Creates and configures agent.yaml files, writes SOUL.md personality definitions, and sets up agent directory structures with skills, tools, and knowledge. Use when the user wants to configure an agent, create agent.yaml, write SOUL.md, set up agent directory structure, or customize agent settings.

Skill 开发管理agent构建配置生成SOUL.md通用
2.9k
Stars
342
Forks
18
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/open-gitagent/opengap/main/examples/gitagent-helper/skills/create-agent/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/open-gitagent/opengap/main/examples/gitagent-helper/skills/create-agent/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Create & Configure Agents

## Quick Start

1. Create directory structure: `mkdir -p my-agent/skills`
2. Write `agent.yaml` with required fields (see below)
3. Create `SOUL.md` with agent identity
4. Add skills, tools, and knowledge as needed
5. Validate: `opengap validate -d ./my-agent`

## agent.yaml Reference

### Required Fields
```yaml
spec_version: "0.1.0"
name: my-agent          # Unique identifier
version: 1.0.0          # Semantic version
description: What this agent does
```

### Model Configuration
```yaml
model:
  preferred: claude-sonnet-4-5-20250929
  fallback:
    - claude-haiku-4-5-20251001
  constraints:
    temperature: 0.2     # 0.0 - 1.0
    max_tokens: 4096
    top_p: 0
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有