Back to skill
v1.0.0

Conflict Service Health Checker

BenignClawScan verdict for this skill. Analyzed Apr 30, 2026, 10:50 PM.

Analysis

This instruction-only skill is a straightforward API health-check helper with no code files, installs, credentials, or persistence.

GuidanceThis skill appears safe for its stated purpose. Before using it, confirm the endpoint URL is one you are allowed to test, and review any command before running it locally.

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.

Abnormal behavior control

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.

Tool Misuse and Exploitation
SeverityLowConfidenceHighStatusNote
SKILL.md
$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.

User impactUsing the skill may cause the agent to make an HTTP request to an API endpoint.
RecommendationOnly check endpoints you own or are authorized to test, and confirm the intended URL before running the command.
Unexpected Code Execution
SeverityLowConfidenceHighStatusNote
SKILL.md
## 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.

User impactIf followed, the instruction runs a local PowerShell command that performs a network request.
RecommendationReview and adjust the URL before running it, and avoid executing modified commands that include unrelated shell operations.