-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathrepo-manifest.yaml
More file actions
67 lines (67 loc) · 1.88 KB
/
repo-manifest.yaml
File metadata and controls
67 lines (67 loc) · 1.88 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"repo_name": "elephant-agent",
"checkout_aliases": [
"\u0061egis"
],
"repo_root": ".",
"default_branch": "main",
"entry_doc": "AGENTS.md",
"docs_root": "docs/agent",
"plans_root": "docs/agent/plans",
"adr_root": "docs/agent/adr",
"tech_debt_root": "docs/agent/tech-debt",
"hooks_path": ".githooks",
"worktree_root": ".worktrees",
"read_first": [
{
"path": "AGENTS.md",
"why": "Short agent entrypoint and canonical command list."
},
{
"path": "docs/agent/README.md",
"why": "Human-readable harness system of record."
},
{
"path": "CONTRIBUTING.md",
"why": "Commit, validation, and PR workflow contract."
}
],
"canonical_commands": [
"make agent-bootstrap",
"make agent-validate",
"make agent-scorecard",
"make agent-report CHANGED_FILES=\"<changed-files>\"",
"make agent-context-audit CHANGED_FILES=\"<changed-files>\"",
"make agent-lint",
"make agent-test",
"make agent-fast-gate",
"make agent-pr-gate",
"make agent-ship AGENT_COMMIT_MESSAGE=\"<type>(<scope>): <summary>\"",
"make agent-wave-show WAVE=<wave-id>",
"make agent-wave-start WAVE=<wave-id>",
"make agent-wave-status WAVE=<wave-id>"
],
"required_paths": [
"README.md",
"AGENTS.md",
"CONTRIBUTING.md",
"CHANGELOG.md",
"docs/agent/README.md",
"docs/agent/plans/README.md",
"docs/agent/adr/README.md",
"docs/agent/tech-debt/README.md",
"tools/agent/repo-manifest.yaml",
"tools/agent/task-matrix.yaml",
"tools/agent/skill-registry.yaml",
"tools/agent/structure-rules.yaml",
"tools/agent/context-map.yaml",
"tools/agent/public-contracts.yaml",
"tools/agent/wave-registry.yaml",
"tools/make/agent.mk",
".github/workflows/ci.yml",
".github/PULL_REQUEST_TEMPLATE.md",
"apps/README.md",
"packages/README.md",
"tests/README.md"
]
}