Network tools = tailscale + curl + ssh + nmap.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add plurigrid/asi --skill network --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Network?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/plurigrid-network-asi)More formats (shields.io, HTML) on the badges page.
---
name: network
description: Network tools = tailscale + curl + ssh + nmap.
metadata:
trit: 0
---
# network
Network tools = tailscale + curl + ssh + nmap.
## Atomic Skills
| Skill | Domain |
|-------|--------|
| tailscale | Mesh VPN |
| curl | HTTP client |
| ssh | Remote shell |
| nmap | Port scan |
## Tailscale
```bash
tailscale up
tailscale ssh hostname
tailscale serve http://localhost:8080
tailscale funnel 443
```
## SSH
```bash
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
```bash
curl -X POST -H "Content-Type: application/json" \
-d '{"key":"value"}' https://api.example.com
curl -O https://example.com/file.zip
```
## Discovery
```bash
nmap -sn 192.168.1.0/24
tailscale status --json | jq '.Peer | keys'
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!