# Send DepGuard to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "depguard",
    "name": "DepGuard",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/suhteevah/depguard",
    "canonicalUrl": "https://clawhub.ai/suhteevah/depguard",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/depguard",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=depguard",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "config/lefthook.yml",
      "README.md",
      "scripts/depguard.sh",
      "scripts/hooks.sh",
      "scripts/license.sh",
      "scripts/policy.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "depguard",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T06:00:12.924Z",
      "expiresAt": "2026-05-06T06:00:12.924Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=depguard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=depguard",
        "contentDisposition": "attachment; filename=\"depguard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "depguard"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/depguard"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/depguard",
    "downloadUrl": "https://openagent3.xyz/downloads/depguard",
    "agentUrl": "https://openagent3.xyz/skills/depguard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/depguard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/depguard/agent.md"
  }
}
```
## Documentation

### DepGuard — Dependency Audit & License Compliance

DepGuard scans your project dependencies for known vulnerabilities, license violations, and outdated packages. It uses native package manager audit tools (npm audit, pip-audit, cargo-audit, etc.) and enriches results with license analysis and risk scoring.

### Free Tier (No license required)

depguard scan [directory]

One-shot vulnerability and license scan of your project dependencies.

How to execute:

bash "<SKILL_DIR>/scripts/depguard.sh" scan [directory]

What it does:

Detects package manager (npm, yarn, pnpm, pip, cargo, go, composer, bundler, maven, gradle)
Runs native audit commands (npm audit, pip-audit, cargo audit, etc.)
Parses dependency manifests for license information
Generates a security report with severity levels
Lists packages with problematic or unknown licenses

Example usage scenarios:

"Scan my dependencies for vulnerabilities" → runs depguard scan .
"Check the licenses of my node modules" → runs depguard scan . --licenses-only
"Are any of my packages insecure?" → runs depguard scan

depguard report [directory]

Generate a formatted dependency health report in markdown.

bash "<SKILL_DIR>/scripts/depguard.sh" report [directory]

### Pro Tier ($19/user/month — requires DEPGUARD_LICENSE_KEY)

depguard hooks install

Install git hooks that scan dependencies on every commit that modifies lockfiles.

bash "<SKILL_DIR>/scripts/depguard.sh" hooks install

What it does:

Validates Pro+ license
Installs lefthook pre-commit hook targeting lockfile changes
On every commit that modifies package-lock.json, yarn.lock, Cargo.lock, etc.: runs vulnerability scan, blocks commit if critical/high vulns found

depguard hooks uninstall

Remove DepGuard git hooks.

bash "<SKILL_DIR>/scripts/depguard.sh" hooks uninstall

depguard watch [directory]

Continuous monitoring — re-scans on any lockfile change.

bash "<SKILL_DIR>/scripts/depguard.sh" watch [directory]

depguard fix [directory]

Auto-fix vulnerabilities by upgrading to patched versions where available.

bash "<SKILL_DIR>/scripts/depguard.sh" fix [directory]

### Team Tier ($39/user/month — requires DEPGUARD_LICENSE_KEY with team tier)

depguard policy [directory]

Enforce a dependency policy: block specific licenses, require minimum versions, deny specific packages.

bash "<SKILL_DIR>/scripts/depguard.sh" policy [directory]

depguard sbom [directory]

Generate a Software Bill of Materials (SBOM) in CycloneDX or SPDX format.

bash "<SKILL_DIR>/scripts/depguard.sh" sbom [directory]

depguard compliance [directory]

Generate a compliance report for auditors — maps licenses to categories (permissive, copyleft, proprietary, unknown).

bash "<SKILL_DIR>/scripts/depguard.sh" compliance [directory]

### Supported Package Managers

ManagerLockfileAudit Toolnpmpackage-lock.jsonnpm audityarnyarn.lockyarn auditpnpmpnpm-lock.yamlpnpm auditpiprequirements.txt / Pipfile.lockpip-audit / safetycargoCargo.lockcargo auditgogo.sumgovulncheckcomposercomposer.lockcomposer auditbundlerGemfile.lockbundle auditmavenpom.xmlmvn dependency-checkgradlebuild.gradlegradle dependencyCheck

### Configuration

Add to ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "depguard": {
        "enabled": true,
        "apiKey": "YOUR_LICENSE_KEY",
        "config": {
          "severityThreshold": "high",
          "blockedLicenses": ["GPL-3.0", "AGPL-3.0"],
          "allowedLicenses": ["MIT", "Apache-2.0", "BSD-2-Clause", "BSD-3-Clause", "ISC"],
          "ignoredVulnerabilities": [],
          "autoFix": false,
          "sbomFormat": "cyclonedx"
        }
      }
    }
  }
}

### Important Notes

Free tier works immediately — no configuration needed
All scanning happens locally using native package manager audit tools
License validation is offline — no phone-home
Falls back to manifest parsing if native audit tools aren't available
Supports monorepos — scans all workspaces/packages

### When to Use DepGuard

The user might say things like:

"Scan my dependencies for vulnerabilities"
"Check my package licenses"
"Are any of my npm packages insecure?"
"Generate a security audit report"
"Set up dependency monitoring"
"Block GPL dependencies in this project"
"Generate an SBOM"
"Check if we're compliant with our license policy"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: suhteevah
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T06:00:12.924Z
- Expires at: 2026-05-06T06:00:12.924Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/depguard)
- [Send to Agent page](https://openagent3.xyz/skills/depguard/agent)
- [JSON manifest](https://openagent3.xyz/skills/depguard/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/depguard/agent.md)
- [Download page](https://openagent3.xyz/downloads/depguard)