Align copilot-instructions.md descriptions with actual prompt behavior#168
Conversation
There was a problem hiding this comment.
Hi @Copilot! 👋
Your private repo does not have access to Sourcery.
Please upgrade to continue using Sourcery ✨
… behavior Agent-Logs-Url: https://github.com/Bryan-Roe/Aria/sessions/2fd5a298-589f-4f1d-8a56-bf0ee365d28e Co-authored-by: Bryan-Roe <74067792+Bryan-Roe@users.noreply.github.com>
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates .github/copilot-instructions.md so that the documented behavior of the AGI reasoning agent and the reasoning prompt accurately reflects whether chain-of-thought is internal-only or exposed in responses, without changing any actual prompt behavior. Flow diagram for choosing AGI reasoning agent vs reasoning promptflowchart TD
Start([Start])
Decide["Need visible reasoning steps in output?"]
Hidden["Use agi.prompt.md and agi-reasoning.agent.md (chain-of-thought is internal, not exposed)"]
Exposed["Use reason.prompt.md (exposed chain-of-thought with structured steps and confidence scores)"]
End([End])
Start --> Decide
Decide -->|Yes| Exposed
Decide -->|No| Hidden
Hidden --> End
Exposed --> End
File-Level Changes
Assessment against linked issues
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Pull request overview
Updates .github/copilot-instructions.md documentation so the “Agents” and “Prompts” tables better reflect the intended behavior of the AGI reasoning-related prompt/agent entries.
Changes:
- Refines the
agi-reasoning.agent.mdtable description to clarify chain-of-thought handling. - Updates the
reason.prompt.mdtable description to indicate it is intended for visible/structured reasoning output (including confidence scoring).
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Bryan <74067792+Bryan-Roe@users.noreply.github.com>
| | `ai.agent.md` | Primary autonomous agent — task decomposition, multi-step execution | | ||
| | `my-agent.agent.md` | QAI specialist — quantum-AI/ML development | | ||
| | `agi-reasoning.agent.md` | Chain-of-thought reasoning, self-reflection | | ||
| | `agi-reasoning.agent.md` | Autonomous multi-step reasoning with internal self-reflection | | ||
| | `aria-character.agent.md` | Interactive character commands, animations | |
Signed-off-by: Bryan <74067792+Bryan-Roe@users.noreply.github.com>
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
🔴 Coverage —
|
| Metric | Value |
|---|---|
| Total coverage | 59.7% |
→ vs main |
0.0% |
| Minimum threshold | 60% |
Updated on every push · 2026-05-09
The guide had two mismatches with the actual prompt files:
agi-reasoning.agent.mdwas labeled "Chain-of-thought reasoning, self-reflection" — implying exposed CoT — whileagi.prompt.mdexplicitly hides it.reason.prompt.mdwas labeled "Structured analysis", obscuring that it's the prompt that exposes chain-of-thought steps to the user.Changes
agi-reasoning.agent.mdtable entry:Chain-of-thought reasoning, self-reflection→Autonomous multi-step reasoning with internal self-reflection (chain-of-thought is not exposed in output)— matchesagi.prompt.mdconstraint: "Do not expose hidden chain-of-thought in responses"reason.prompt.mdprompt entry:Structured analysis→Exposed chain-of-thought analysis with structured reasoning steps and confidence scores— reflects that this is the correct prompt to use when visible reasoning steps are desiredNo changes to the prompt files themselves; both were already correctly authored.
Summary by Sourcery
Align Copilot instructions with actual behavior of AGI reasoning and reasoning prompts, clarifying when chain-of-thought is internal vs exposed.
Documentation: