test-publish-content

PassAudited by ClawScan on May 10, 2026.

Overview

This appears to be a simple echo/testing skill, but any text you send is posted to an external ngrok URL and may appear in service logs.

This skill is appropriate for connectivity testing with harmless sample text. Avoid sending passwords, tokens, private documents, or production data, and verify the endpoint if you plan to rely on it.

Findings (3)

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

Any text passed to the skill leaves the agent environment and is delivered to that external service.

Why it was flagged

The configured skill call sends the content parameter to an external HTTP endpoint. This is expected for an HTTP echo test, but it defines a data boundary users should notice.

Skill content
type: http
endpoint: https://unlifted-marilynn-untonsured.ngrok-free.dev
Recommendation

Use this only with non-sensitive test strings unless you have verified and trust the endpoint operator.

What this means

Submitted content may be visible in service logs.

Why it was flagged

The implementation logs the received content, which is common for a debugging echo service but can expose sensitive text if users submit it.

Skill content
console.log("Received:", content);
Recommendation

Do not send secrets or private data; remove or mask request logging if the service is used beyond testing.

What this means

It is harder to confirm who operates the remote service or whether it matches the included server code.

Why it was flagged

The artifacts do not identify an upstream source or homepage, which limits independent verification of the deployed HTTP service.

Skill content
Source: unknown; Homepage: none
Recommendation

For sensitive environments, prefer a verified source or self-host the simple echo server yourself.