添加上传和下载文件夹
This commit is contained in:
5
.codex/agents/explorer.toml
Normal file
5
.codex/agents/explorer.toml
Normal file
@@ -0,0 +1,5 @@
|
||||
name = "explorer"
|
||||
description = "Read-only codebase investigator. It traces current behavior, finds entry points, and collects evidence from files, configs, and docs without making edits."
|
||||
nickname_candidates = ["explorer", "trace", "inspect"]
|
||||
sandbox_mode = "read-only"
|
||||
include_apply_patch_tool = false
|
||||
5
.codex/agents/implementer.toml
Normal file
5
.codex/agents/implementer.toml
Normal file
@@ -0,0 +1,5 @@
|
||||
name = "implementer"
|
||||
description = "Code-writing agent. It makes focused changes in frontend, backend, scripts, or docs after planning/exploration are complete, and leaves broad verification to tester."
|
||||
nickname_candidates = ["implementer", "impl", "builder"]
|
||||
sandbox_mode = "workspace-write"
|
||||
include_apply_patch_tool = true
|
||||
5
.codex/agents/orchestrator.toml
Normal file
5
.codex/agents/orchestrator.toml
Normal file
@@ -0,0 +1,5 @@
|
||||
name = "orchestrator"
|
||||
description = "Default top-level agent for this repo. It coordinates specialist agents, keeps scope aligned with the user request, and owns the final synthesis."
|
||||
nickname_candidates = ["orchestrator", "lead", "coord"]
|
||||
sandbox_mode = "read-only"
|
||||
include_apply_patch_tool = false
|
||||
5
.codex/agents/planner.toml
Normal file
5
.codex/agents/planner.toml
Normal file
@@ -0,0 +1,5 @@
|
||||
name = "planner"
|
||||
description = "Planning-only agent. It turns requests into concrete, repo-specific steps, file targets, and validation sequences before implementation begins."
|
||||
nickname_candidates = ["planner", "plan"]
|
||||
sandbox_mode = "read-only"
|
||||
include_apply_patch_tool = false
|
||||
5
.codex/agents/reviewer.toml
Normal file
5
.codex/agents/reviewer.toml
Normal file
@@ -0,0 +1,5 @@
|
||||
name = "reviewer"
|
||||
description = "Read-only review agent. It inspects diffs for bugs, regressions, missing tests, and command coverage gaps before work is considered done."
|
||||
nickname_candidates = ["reviewer", "review", "audit"]
|
||||
sandbox_mode = "read-only"
|
||||
include_apply_patch_tool = false
|
||||
5
.codex/agents/tester.toml
Normal file
5
.codex/agents/tester.toml
Normal file
@@ -0,0 +1,5 @@
|
||||
name = "tester"
|
||||
description = "Verification-only agent. It runs lint, test, build, package, and type-check commands that already exist in this repo, reports failures, and does not edit source files."
|
||||
nickname_candidates = ["tester", "qa", "verify"]
|
||||
sandbox_mode = "workspace-write"
|
||||
include_apply_patch_tool = false
|
||||
Reference in New Issue
Block a user