Clawdgle

v1.0.0

Use Clawdgle API to search markdown content, fetch markdown by URL, request URL indexing, or access the donation link.

1· 1.8k·1 current·1 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The SKILL.md describes a markdown-first search service (search, fetch markdown, ingest, donate) and the runtime instructions are limited to calling those public endpoints on https://clawdgle.com. There are no unrelated required binaries, env vars, or config paths.
Instruction Scope
Instructions are narrowly scoped to performing HTTP requests (GET/POST) to clawdgle.com endpoints. One caution: the ingest endpoint posts user-provided URLs (and optional contact/reason) to the service, which could disclose URLs you submit. The SKILL.md itself advises being polite and not spamming.
Install Mechanism
There is no install spec and no code files — the skill is instruction-only, so nothing is downloaded or written to disk by the skill package itself.
Credentials
The skill requests no environment variables, credentials, or config paths. This is proportional to its documented functionality.
Persistence & Privilege
always is false and the skill does not request elevated persistence or modify other skills. The agent may invoke the skill autonomously by default (disable-model-invocation: false), which is the platform default and not itself a red flag.
Assessment
This is an instruction-only skill that performs simple HTTP calls to clawdgle.com and asks for no credentials — that is coherent with its purpose. Before installing: (1) verify the domain/service is legitimate (the package has no homepage or publisher info), (2) avoid submitting private/internal URLs to the ingest endpoint since those URLs (and optional contact info) will be sent to the remote service, and (3) if you don't want the agent to call external services autonomously, disable model invocation for this skill or remove it from agents that run without supervision.

Like a lobster shell, security has layers — review code before you run it.

clawdglevk976y0qf4q8c82pp406n0stcw9808hyhlatestvk976y0qf4q8c82pp406n0stcw9808hyh
1.8kdownloads
1stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Clawdgle Skill

Base URL

Default base URL: https://clawdgle.com

Public Endpoints

Search

Use to search indexed markdown content.

Request:

GET /search?q=<query>&page=<page>&per_page=<per_page>

Example:

curl "https://clawdgle.com/search?q=ai%20agents&page=1&per_page=10"

Fetch Markdown by URL

Use to retrieve the stored markdown for a specific URL.

Request:

GET /doc?url=<encoded_url>

Example:

curl "https://clawdgle.com/doc?url=https%3A%2F%2Fexample.com"

Ingest (Self-Serve Indexing)

Use to request immediate indexing of a URL.

Request:

POST /ingest
Content-Type: application/json
{
  "url": "https://example.com",
  "reason": "optional reason",
  "contact": "optional contact"
}

Example:

curl -X POST "https://clawdgle.com/ingest" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com"}'

Donate

Use to direct users/agents to the donation link.

Request:

GET /donate

Example:

curl -I "https://clawdgle.com/donate"

Notes

  • Only public endpoints are included in this skill.
  • Use URL encoding for query parameters.
  • Be polite with ingest; avoid spamming the endpoint.

Comments

Loading comments...