Files
agent-park/.claude/AGENTS.md
T
mzaxd 6cb4545a17 chore: 更新项目文档和工具状态
- 更新 AGENTS.md 项目知识库文档(多目录)
- 添加 docs/analyst.md 产品分析文档
- 添加 .omc/ 工具状态和会话记录
- 添加 .sisyphus/ 计划文档
- 添加 project-structure.txt 项目结构
- 删除 timeline 测试截图
2026-02-20 21:48:05 +08:00

1.6 KiB

.claude/ - Custom Claude Configuration

OVERVIEW

Custom Claude Code agents, commands, and settings for the agent_park project.

STRUCTURE

.claude/
├── settings.json             # Claude Code project settings
├── agents/                   # Custom agent definitions
│   ├── content-explorer-agent.md
│   └── api-submitter-agent.md
└── commands/                 # Custom slash commands
    └── discover-projects.md

CUSTOM AGENTS

content-explorer-agent

  • Purpose: Explore GitHub projects and generate structured data
  • Capabilities: Browser automation, content extraction, JSON generation
  • Output: ProjectInputSchema-compliant JSON

api-submitter-agent

  • Purpose: Submit exploration results to production API
  • Capabilities: Batch task updates, API submission, retry logic
  • Requires: WEBHOOK_API_KEY environment variable

CUSTOM COMMANDS

/discover-projects

Automated project discovery workflow:

/discover-projects [count] [--batch=N]
  • Default: 10 tasks, batch size 3
  • Coordinates content-explorer + api-submitter agents

FOR AI AGENTS

When Adding Agents/Commands

  1. Create .md file with agent/command definition
  2. Follow existing templates (frontmatter + instructions)
  3. Test with /command-name before committing

Agent Template Structure

---
name: agent-name
description: What this agent does
tools: [Read, Grep, Glob, Bash]  # Allowed tools
---

# Role
[Agent role description]

# Instructions
[Detailed instructions]