Conflict Service Health Checker
Analysis
This instruction-only skill is a straightforward API health-check helper with no code files, installs, credentials, or persistence.
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 instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
$result = Invoke-WebRequest -Uri "https://api.example.com/health" -Method GET -TimeoutSec 10
The skill documents use of a web request command to check an API endpoint. This is purpose-aligned for health checking, uses GET, and includes a timeout, but it is still a tool action that sends network traffic.
## Check Command $result = Invoke-WebRequest -Uri "https://api.example.com/health" -Method GET -TimeoutSec 10
The skill provides a PowerShell command for making a health-check request. Local command use is expected for this purpose and is not hidden, but users should recognize that following the instruction involves command execution.
