smithery/plurigrid

network

Network tools = tailscale + curl + ssh + nmap.

Installation

$ npx skills add smithery/plurigrid --skill network

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/plurigrid · top by installs.

npx skills add smithery/plurigrid

Browse all from smithery/plurigrid

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
trit
0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 860 B
  • docs SUMMARY.md 61 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

network

Network tools = tailscale + curl + ssh + nmap.

Atomic Skills

Skill Domain
tailscale Mesh VPN
curl HTTP client
ssh Remote shell
nmap Port scan

Tailscale

tailscale up
tailscale ssh hostname
tailscale serve http://localhost:8080
tailscale funnel 443

SSH

ssh user@host
ssh -L 8080:localhost:80 host  # Local forward
ssh -R 8080:localhost:80 host  # Remote forward
ssh -D 1080 host               # SOCKS proxy

Curl

curl -X POST -H "Content-Type: application/json" \
  -d '{"key":"value"}' https://api.example.com

curl -O https://example.com/file.zip

Discovery

nmap -sn 192.168.1.0/24
tailscale status --json | jq '.Peer | keys'