Skip to content
Merged
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
6 changes: 4 additions & 2 deletions manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1349,9 +1349,11 @@ templates:
path: templates/investigate-security.md
description: >
Security audit of code or a system component. Systematic
vulnerability analysis with severity classification.
vulnerability analysis with severity classification. Applies
exhaustive path tracing selectively to parser/decoder functions
that handle untrusted structured input.
persona: security-auditor
protocols: [anti-hallucination, self-verification, operational-constraints, adversarial-falsification, security-vulnerability]
protocols: [anti-hallucination, self-verification, operational-constraints, adversarial-falsification, security-vulnerability, exhaustive-path-tracing]
Copy link

Copilot AI Apr 14, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description indicates the protocol identifier being added to templates is reasoning/exhaustive-path-tracing, but this manifest entry adds exhaustive-path-tracing without the reasoning/ prefix. If protocol IDs are expected to match exactly across the manifest and template/protocol definitions, this mismatch can cause the protocol to not resolve (or be duplicated under two IDs). Align the manifest entry with the canonical protocol identifier used elsewhere (either add the reasoning/ prefix here, or standardize on the unprefixed name across all references).

Suggested change
protocols: [anti-hallucination, self-verification, operational-constraints, adversarial-falsification, security-vulnerability, exhaustive-path-tracing]
protocols: [anti-hallucination, self-verification, operational-constraints, adversarial-falsification, security-vulnerability, reasoning/exhaustive-path-tracing]

Copilot uses AI. Check for mistakes.
taxonomies: [stack-lifetime-hazards]
format: investigation-report

Expand Down
Loading