-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathsample_input.json
More file actions
53 lines (53 loc) · 1.52 KB
/
sample_input.json
File metadata and controls
53 lines (53 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"action": "generate-agents-md",
"project_root": "/Users/example/projects/my-claude-project",
"options": {
"validate_codex": true,
"auto_init": true,
"include_mcp": true,
"skill_detail_level": "relevant"
},
"description": "Sample input for generating AGENTS.md from a Claude Code project",
"expected_behavior": {
"step_1": "Validate Codex CLI installed and CLAUDE.md exists",
"step_2": "Parse CLAUDE.md and scan project structure (skills, agents, documentation)",
"step_3": "Generate AGENTS.md with reference-based approach (no file duplication)",
"step_4": "Write AGENTS.md to project root",
"output_file": "/Users/example/projects/my-claude-project/AGENTS.md"
},
"sample_project_structure": {
"root": "/Users/example/projects/my-claude-project",
"files": [
"CLAUDE.md",
"README.md",
"package.json"
],
"folders": [
".claude/skills/",
".claude/agents/",
"documentation/",
"src/"
],
"skills": [
{
"name": "data-visualizer",
"type": "functional",
"location": ".claude/skills/data-visualizer",
"python_files": ["chart_generator.py", "dashboard.py"]
},
{
"name": "brand-guidelines",
"type": "prompt-based",
"location": ".claude/skills/brand-guidelines",
"python_files": []
}
],
"agents": [
{
"name": "code-reviewer",
"location": ".claude/agents/code-reviewer.md",
"tools": ["Read", "Grep", "Bash"]
}
]
}
}