Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "pytest-codingagents"
version = "0.2.2"
version = "0.2.3"
description = "Pytest plugin for testing real coding agents via their SDK"
readme = "README.md"
license = { text = "MIT" }
Expand Down
6 changes: 6 additions & 0 deletions src/pytest_codingagents/copilot/personas.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,12 @@ def _build_agents_block(custom_agents: list[dict[str, Any]], tool_name: str = "r
"appropriate agent from this list."
),
f"Use the {tool_name} tool with the agent name to run the subagent.",
(
f"You are an orchestrator. All task work must be delegated to "
f"subagents via the `{tool_name}` tool. "
f"Do not implement, edit files, or perform task work directly — "
f"delegate every phase of work to the appropriate subagent."
),
]
for a in custom_agents:
lines.append("<agent>")
Expand Down