一键导入
tailscale
WireGuard-based overlay networking — mesh VPN, ACL policies, subnet routing, exit nodes, and Headscale self-hosted control server.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
WireGuard-based overlay networking — mesh VPN, ACL policies, subnet routing, exit nodes, and Headscale self-hosted control server.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
The craft of being a Chief of Staff — gatekeeping, force multiplication, executive briefing, organizational sensing, institutional memory, and meeting/calendar triage. Provides the frameworks and templates that make an executive more effective by managing their capacity, information flow, and decision surface.
Use when designing, operating, reviewing, or improving production reliability with SLOs, incident command, observability, error budgets, and operational excellence.
Use when exploring adjacent ideas, overlooked angles, or lateral research paths without prematurely collapsing into a single answer.
Shared decision-making and governance methodology for all C-suite profiles. Covers decision frameworks (RAPID, DACI, decision matrices, pre-mortems, red-teaming), strategic thinking patterns (inversion, first principles, second-order effects), stakeholder communication (executive summaries, board decks, strategy memos), and governance frameworks (risk appetite, delegation levels, escalation paths).
CFO methodology for unit economics, financial modeling, pricing strategy, fundraising, budget frameworks, and SaaS metrics. Covers CAC/LTV/payback analysis, revenue projections, cost structures, runway analysis, scenario planning, value-based pricing, cap tables, term sheets, zero-based budgeting, rolling forecasts, ARR/MRR, churn, NDR, Rule of 40, and Magic Number.
CMO methodology — positioning and messaging frameworks (April Dunford's positioning, message hierarchy), customer acquisition strategy (paid, organic, PLG, SLG), brand architecture (brand house vs house of brands), growth modeling (CAC/LTV by channel, cohort analysis), market entry strategy (beachhead, land-and-expand), competitive response (pricing wars, feature races, brand defense).
| name | tailscale |
| description | WireGuard-based overlay networking — mesh VPN, ACL policies, subnet routing, exit nodes, and Headscale self-hosted control server. |
| author | Hermes Profiles |
| license | MIT |
Load this skill when the task involves setting up or managing a Tailscale tailnet — or a self-hosted Headscale instance — including ACL policies, subnet routing, exit nodes, DERP relay servers, and node lifecycle.
Tailscale builds an overlay mesh network on top of WireGuard. Each node gets a unique Tailscale IP (100.x.x.x range) and communicates peer-to-peer via NAT traversal. The control server coordinates key exchange and ACL policy; data flows directly between nodes.
{ "acls": [...], "groups": {...}, "tags": [...], "hosts": {...}, "derpMap": {...}, "ssh": [...], "nodeAttrs": [...] }{ "action": "accept", "src": ["group:dev"], "dst": ["tag:prod-server:*"] } — src accepts connection to dst on given ports. Order independent; most specific policy wins."group:dev": ["alice@example.com", "bob@example.com"]. Referenced in ACL src/dst.{ "action": "deny" } rules with trailing refuse in dst — "*:refuse" blocks all ports. Deny overrides allow. Use for sensitive segments (prod-only database access, admin panels).{ "action": "check", "src": [...], "dst": [...], "users": [...] } — ACL-enforced, logs all sessions, no keys to manage.tailscale up --advertise-routes=10.0.1.0/24,192.168.0.0/16 — makes local subnets reachable via this node. Approved via ACL or admin console.tailscale up --advertise-exit-node — node becomes an exit to the internet for other tailnet membersderpMap)headscale users create, headscale nodes list, headscale routes enable)tailscale login --login-server https://headscale.example.com on clients