← All skills
Tencent SkillHub · Developer Tools

Zero2ai Security Audit

Security auditing for git commits, repos, and skills before publishing. Run automatically before any `git commit`, `git push`, or `clawhub publish`. Detects...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Security auditing for git commits, repos, and skills before publishing. Run automatically before any `git commit`, `git push`, or `clawhub publish`. Detects...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/audit.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Security Audit

Run scripts/audit.py before every commit, push, or skill publish. No exceptions.

When to run

TriggerCommandBefore git commitpython3 {skill_dir}/scripts/audit.py --stagedBefore git pushpython3 {skill_dir}/scripts/audit.py --last-commitBefore clawhub publish <path>python3 {skill_dir}/scripts/audit.py <skill_path>Ad-hoc scan any pathpython3 {skill_dir}/scripts/audit.py <path> {skill_dir} = /home/aladdin/.openclaw/workspace/skills/skill-security-audit

Exit codes

0 = clean 1 = HIGH or MEDIUM findings (block publish/push) 2 = usage error

What it detects

SeverityPattern🔴 HIGHAPI keys, secrets, passwords, JWT tokens, WooCommerce keys, AWS keys, private key blocks, bearer tokens, .env files🟡 MEDIUMAbsolute /home/<user>/ paths, /root/ paths, refresh tokens, node_modules/ committed🔵 LOWHardcoded IPs, long base64 strings

Rules

HIGH findings = hard block. Never commit or publish with HIGH findings. Rotate any exposed secret immediately. MEDIUM findings = fix before publish. Replace absolute paths with relative or env-var defaults. Remove node_modules/. LOW findings = review. Not blocking but investigate. False positives: If a match is a variable name or safe placeholder (not an actual value), document why it's safe in a comment and re-run.

After finding a real secret

Do NOT push the commit. If already pushed: rotate the secret immediately, then rewrite history or delete the file from git. Rotate in the provider portal (TikTok Dev, AWS IAM, WooCommerce, etc.) Move to env var: process.env.SECRET_NAME or read from a local config file outside the repo. Add the config file path to .gitignore. Report to Aladdin immediately with severity and what was exposed.

Skill publish checklist

Before clawhub publish: audit.py <skill_path> returns 0 (clean) node_modules/ not present in skill folder No absolute paths to user home directories No hardcoded business-specific IDs or credentials package.json name matches skill folder name SKILL.md description updated if renamed

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/audit.py Scripts