Awesome-omni-skill clawdhub-contributor

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.

install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/clawdhub-contributor-demerzels-lab" ~/.claude/skills/diegosouzapw-awesome-omni-skill-clawdhub-contributor && rm -rf "$T"
manifest: skills/development/clawdhub-contributor-demerzels-lab/SKILL.md
source content

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
mode
string
passive
,
active
, or
full
telemetry
boolOpt-in anonymous usage stats (full mode only)
autoScout
boolAuto-scan skills on encounter (active/full mode)
bugReports
boolEnable bug report generation
recipes
boolEnable 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