skills$openclaw/clawdhub-contributor
starbuck1004.6k

by starbuck100

clawdhub-contributor – OpenClaw Skill

clawdhub-contributor is an OpenClaw Skills integration for data analytics workflows. Contribute to the ClawdHub ecosystem by scouting unknown skills, reporting bugs, and sharing skill recipes. Three modes (passive/active/full) let you control how much you contribute.

4.6k stars8.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameclawdhub-contributor
descriptionContribute to the ClawdHub ecosystem by scouting unknown skills, reporting bugs, and sharing skill recipes. Three modes (passive/active/full) let you control how much you contribute. OpenClaw Skills integration.
ownerstarbuck100
repositorystarbuck100/clawdhub-contributor
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @starbuck100/clawdhub-contributor
last updatedFeb 7, 2026

Maintainer

starbuck100

starbuck100

Maintains clawdhub-contributor in the OpenClaw Skills directory.

View GitHub profile
File Explorer
20 files
.
auditor
tests
__init__.py
test_patterns.py
7.5 KB
__init__.py
72 B
__main__.py
77 B
analyzer.py
7.3 KB
auditor.py
8.8 KB
patterns.py
12.3 KB
reporter.py
3.5 KB
requirements.txt
117 B
state.py
3.9 KB
config
default.json
109 B
scripts
report-bug.sh
1.9 KB
scout.sh
5.2 KB
submit-recipe.sh
1.2 KB
_meta.json
297 B
SKILL.md
2.6 KB
SKILL.md

name: clawdhub-contributor description: Contribute to the ClawdHub ecosystem by scouting unknown skills, reporting bugs, and sharing skill recipes. Three modes (passive/active/full) let you control how much you contribute. metadata: {"openclaw":{"requires":{"bins":["bash","jq"]}}}

ClawdHub Contributor

Adds contribution capabilities to your agent. Help grow the ClawdHub ecosystem by analyzing skills, reporting bugs, and sharing useful skill combinations.

Modes

ModeWhat it does
passiveBug reports and recipes only (safe default)
activeAdds auto-scout: analyze unknown skills locally and generate reports
fullAll above plus opt-in telemetry

Set mode in config/default.json or via CLAWDHUB_CONTRIB_MODE env var.

Features

Auto-Scout (active/full mode)

Analyze a local skill directory and produce a structured quality/security report:

bash scripts/scout.sh /path/to/skill-directory

Output: JSON report with dependency info, quality score, and security flags. Fully offline — no network access, pure static analysis.

Bug Reporting (all modes)

Report a skill failure with sanitized system context:

bash scripts/report-bug.sh <skill-slug> <error-message> [context]

Output: JSON bug report ready for API submission. Collects OS and node version but never leaks hostname, IP, or username.

Recipes (all modes)

Share a useful combination of skills that solved a task:

bash scripts/submit-recipe.sh <task-description> <skill1> [skill2] [skill3] ...

Output: JSON recipe ready for API submission.

Configuration

Edit config/default.json:

{
  "mode": "passive",
  "telemetry": false,
  "autoScout": false,
  "bugReports": true,
  "recipes": true
}
KeyTypeDescription
modestringpassive, active, or full
telemetryboolOpt-in anonymous usage stats (full mode only)
autoScoutboolAuto-scan skills on encounter (active/full mode)
bugReportsboolEnable bug report generation
recipesboolEnable recipe submission

Commands Summary

CommandMode RequiredDescription
scripts/scout.sh <dir>active+Analyze a skill directory
scripts/report-bug.sh <slug> <msg> [ctx]anyGenerate bug report
scripts/submit-recipe.sh <task> <skills...>anyGenerate recipe

Security

  • Scripts never access the network
  • No credentials, IPs, hostnames, or usernames are collected
  • All output is sanitized JSON to stdout
  • Scout performs read-only static analysis
README.md

No README available.

Permissions & Security

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

- Scripts never access the network - No credentials, IPs, hostnames, or usernames are collected - All output is sanitized JSON to stdout - Scout performs read-only static analysis

Requirements

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

Configuration

Edit `config/default.json`: ```json { "mode": "passive", "telemetry": false, "autoScout": false, "bugReports": true, "recipes": true } ``` | Key | Type | Description | |-----|------|-------------| | `mode` | string | `passive`, `active`, or `full` | | `telemetry` | bool | Opt-in anonymous usage stats (full mode only) | | `autoScout` | bool | Auto-scan skills on encounter (active/full mode) | | `bugReports` | bool | Enable bug report generation | | `recipes` | bool | Enable recipe submission |

FAQ

How do I install clawdhub-contributor?

Run openclaw add @starbuck100/clawdhub-contributor in your terminal. This installs clawdhub-contributor 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/starbuck100/clawdhub-contributor. Review commits and README documentation before installing.