Satellite Comm
Analysis
This skill appears to collect career assessment details for a satellite communications learning roadmap, with no code, installs, credentials, or destructive actions shown.
Findings (2)
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.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
"/api/satcom/roadmap": { "post": { ... "description": "Generate personalized satellite communication engineering roadmap" ... "requestBody": ... "#/components/schemas/RoadmapRequest" } }The skill exposes an API endpoint that receives user-provided assessment data to generate a roadmap. This is aligned with the skill's purpose, but it means user profile/career information may be transmitted through the API interface.
"RoadmapRequest": { "properties": { "assessmentData": ..., "sessionId": { "type": "string" }, "userId": { "anyOf": [{ "type": "integer" }, { "type": "null" }] }, "timestamp": { "type": "string" } } }The request schema includes session and optional user identifiers. These fields are expected for an API workflow but are still metadata that can link roadmap requests to a user or session.
