- 更新 AGENTS.md 项目知识库文档(多目录) - 添加 docs/analyst.md 产品分析文档 - 添加 .omc/ 工具状态和会话记录 - 添加 .sisyphus/ 计划文档 - 添加 project-structure.txt 项目结构 - 删除 timeline 测试截图
1.6 KiB
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_KEYenvironment 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
- Create
.mdfile with agent/command definition - Follow existing templates (frontmatter + instructions)
- Test with
/command-namebefore 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]