agent-protocol

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If used with real company data, information provided to one role may be included in questions, responses, or synthesized outputs involving other roles.

Why it was flagged

The skill explicitly enables inter-agent communication. This is the core purpose of the skill and is paired with loop-prevention and isolation rules, but users should recognize that business context may be shared across role agents during use.

Skill content
Any agent can query another using:

```
[INVOKE:role|question]
```
Recommendation

Use this only in contexts where sharing the relevant business information across the selected agent roles is acceptable, and continue to review final outputs for sensitive details.

NoteHigh Confidence
ASI08: Cascading Failures
What this means

A poorly framed prompt could influence several role responses at once, producing a broader but still bounded synthesis error.

Why it was flagged

The skill supports multi-role broadcasts, which can propagate one prompt across several role outputs. The artifacts also include containment controls such as independent responses, depth limits, conflict surfacing, and loop prevention, so this remains purpose-aligned.

Skill content
CEO can broadcast to all roles simultaneously:
```
[BROADCAST:all|What's the impact if we miss the fundraise?]
```
Recommendation

Use specific, scoped prompts for broadcasts and rely on the skill’s conflict and assumption markers to review uncertain or conflicting outputs.