relic-routing
Pass
Audited by Gen Agent Trust Hub on Jul 13, 2026
Risk Level: SAFE
Full Analysis
- [SAFE]: The skill consists of instructional content and Dart code snippets for defining web routes. No malicious logic, obfuscation, or unauthorized data access patterns were detected.
- [INDIRECT_PROMPT_INJECTION]: The skill defines a data ingestion surface through URL path parameters.
- Ingestion points: Path parameters are captured in
Requestobjects as described inSKILL.md(e.g.,req.pathParameters). - Boundary markers: Not explicitly mentioned in the provided snippets, though common in routing logic.
- Capability inventory: Request handlers can return responses, upgrade to WebSockets, or use
req.forwardToto re-route requests internally as documented inSKILL.md. - Sanitization: The documentation explicitly demonstrates security best practices by using typed parameter accessors (e.g.,
IntPathParam,DoublePathParam,PathParam<T>) which provide automatic parsing and validation of external input.
Audit Metadata