🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@drdeploy/skills

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@drdeploy/skills

Claude Code / Cursor / Cline skills for drdeploy. One command sets up SKILL.md files, installs the drdeploy CLI binary, and adds drdeploy routing to your CLAUDE.md.

latest
Source
npmnpm
Version
0.1.4
Version published
Weekly downloads
4
-60%
Maintainers
1
Weekly downloads
 
Created
Source

@drdeploy/skills

Skills for Claude Code, Cursor, Cline, Continue, and other AI editors that speak the agentskills.io format. One command:

  • Drops SKILL.md files into your skill directory (global or project-local)
  • Downloads the drdeploy CLI binary if you don't have it yet
  • Adds drdeploy routing rules to your CLAUDE.md

After setup, your AI editor knows when to invoke drdeploy and how to read the results.

Install

npx @drdeploy/skills setup

That's it. The setup is interactive; it asks before writing anywhere.

$ npx @drdeploy/skills setup

drdeploy skills v0.1.0

? Where do you want to install the skill?
  ❯ Project local — ./.claude/skills/drdeploy/
    Global       — ~/.claude/skills/drdeploy/
    Both
✓ Wrote SKILL.md to ./.claude/skills/drdeploy/

? drdeploy CLI not found on PATH. Install it now?
  ❯ Yes — runs https://drdeploy.dev/install
    No — I'll install manually later
✓ drdeploy 0.1.0 installed at /usr/local/bin/drdeploy

? Append drdeploy routing rules to ./CLAUDE.md? (Y/n)
✓ Done.

Try in your AI editor:
  > scan myapp.com with drdeploy
  > what did drdeploy find on my last deploy

Uninstall

npx @drdeploy/skills uninstall

Removes the SKILL.md files and the routing block in CLAUDE.md. Does NOT uninstall the CLI binary itself (use your package manager / rm /usr/local/bin/drdeploy).

What gets written

Skill file (SKILL.md)

A markdown file with frontmatter that AI editors read as a "this is a tool I have" prompt. Tells the agent: "if the user wants to check a website, run drdeploy scan <host>, parse the output like this, surface findings like that."

See the source for the full content.

CLAUDE.md routing

A short, dismissible block:

## drdeploy

Use `/drdeploy` skill (or invoke `drdeploy` CLI directly) when:
- User wants to scan a deployed site for issues
- User mentions broken og:image, leaked API keys, missing favicons, exposed .env
- After a deploy, to verify the live site is healthy

See ~/.claude/skills/drdeploy/ for the full skill.

Self-contained. You can edit or delete it any time.

Why this exists

The drdeploy CLI is a static binary — fast, no runtime deps. But getting it on PATH AND telling your AI editor when to use it AND configuring CLAUDE.md is three steps. This package collapses them to one command, the same way gstack does for its skills.

Other ways to install

As a Claude Code plugin (zero-npm path)

> /plugin marketplace add Dr-Deploy/drdeploy
> /plugin install drdeploy

This reads .claude-plugin/marketplace.json at the repo root and installs the skill via Claude Code's native plugin system. No npx needed.

Manual SKILL.md drop

If your AI editor speaks the agentskills.io format, you can copy skill/SKILL.md into your editor's skills directory by hand. That's the entire contract.

Spec compliance

The SKILL.md follows the agentskills.io specification (open standard, used by Claude Code, OpenAI Codex CLI, Cursor, Cline, Gemini CLI, GitHub Copilot, and ~30 others).

Where to find this skill

ChannelStatusURL
npmyeshttps://www.npmjs.com/package/@drdeploy/skills
GitHubyeshttps://github.com/Dr-Deploy/drdeploy/tree/main/packages/skills
Claude plugin marketplaceyes/plugin marketplace add Dr-Deploy/drdeploy
skills.shsubmittedhttps://skills.sh — auto-indexes public repos with SKILL.md
anthropics/skillsrequestedhttps://github.com/anthropics/skills — partner inclusion
claudeskills.infosubmittedhttps://claudeskills.info
skillsmp.comsubmittedhttps://skillsmp.com
lobehub.com/skillssubmittedhttps://lobehub.com/skills

License

MIT.

Keywords

drdeploy

FAQs

Package last updated on 07 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts