skills$openclaw/clawdgle
rubybrewsday9.1k

by rubybrewsday

clawdgle – OpenClaw Skill

clawdgle is an OpenClaw Skills integration for coding workflows. Public API usage for the Clawdgle markdown-first search engine. Use when interacting with Clawdgle to: (1) search indexed markdown content, (2) fetch markdown for a URL, (3) request indexing of a URL via ingest, or (4) direct users to the donate link.

9.1k stars6.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameclawdgle
descriptionPublic API usage for the Clawdgle markdown-first search engine. Use when interacting with Clawdgle to: (1) search indexed markdown content, (2) fetch markdown for a URL, (3) request indexing of a URL via ingest, or (4) direct users to the donate link. OpenClaw Skills integration.
ownerrubybrewsday
repositoryrubybrewsday/clawdgle
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @rubybrewsday/clawdgle
last updatedFeb 7, 2026

Maintainer

rubybrewsday

rubybrewsday

Maintains clawdgle in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
274 B
SKILL.md
1.4 KB
SKILL.md

name: clawdgle description: Public API usage for the Clawdgle markdown-first search engine. Use when interacting with Clawdgle to: (1) search indexed markdown content, (2) fetch markdown for a URL, (3) request indexing of a URL via ingest, or (4) direct users to the donate link.

Clawdgle Skill

Base URL

Default base URL: https://clawdgle.com

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"

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.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install clawdgle?

Run openclaw add @rubybrewsday/clawdgle in your terminal. This installs clawdgle into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/rubybrewsday/clawdgle. Review commits and README documentation before installing.