Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

caddy-subdomain-addcaddy 子域添加

Agent Skill

caddy-subdomain-add 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

212

周安装

9

GitHub Stars

1

下载量

74
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:caddy-subdomain-add(caddy 子域添加)
来源仓库:https://github.com/dawiddutoit/custom-claude
仓库路径:skills/caddy-subdomain-add
安装命令:
npx skills add https://github.com/dawiddutoit/custom-claude --skill caddy-subdomain-add
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dawiddutoit/custom-claude --skill caddy-subdomain-add

简介

caddy-subdomain-add 交互式添加新子域名至 Caddy 配置,自动申请 HTTPS 证书并支持 OAuth 保护。

  • 适用于快速上线 Grafana、Prometheus 等服务,无需手动编辑 Caddyfile。
  • 通过 domains.toml 集中管理服务映射,便于批量管理与权限控制。
  • 使用前请确保 Cloudflare API 密钥有效,并具有对应域名的 DNS 修改权限。
  • 建议首次使用时选择测试环境验证流程,确认无误后再应用于生产站点。

SKILL.md

Add Subdomain Skill

Interactive guide for adding new subdomains to the network infrastructure.

Quick Start

Minimal Request: "Add grafana running on port 3001"

Full Request Example:

Add a new subdomain:
- Name: Grafana Dashboard
- Subdomain: grafana
- Backend: 192.168.68.135:3001
- HTTPS: yes
- Auth: yes

Result: Service accessible at https://grafana.temet.ai with Google OAuth protection.

Table of Contents

  1. When to Use This Skill
  2. What This Skill Does
  3. Instructions

- 3.1 Gather Service Information - 3.2 Validate Input - 3.3 Determine Configuration - 3.4 Add to domains.toml - 3.5 Apply Changes - 3.6 Manual Tunnel Step - 3.7 Verify Setup

  1. Supporting Files
  2. Expected Outcomes
  3. Integration Points
  4. Expected Benefits
  5. Requirements
  6. Red Flags to Avoid

When to Use This Skill

Explicit Triggers:

  • "Add a subdomain for [service]"
  • "Create subdomain [name]"
  • "Add [service] to the network"
  • "Set up reverse proxy for [service]"
  • "Expose [service] externally"

Implicit Triggers:

  • Setting up a new Docker container that needs external access
  • Installing new software that requires HTTPS
  • Configuring a new IoT device for remote access

Debugging Triggers:

  • "Why can't I access [service].temet.ai?"
  • "How do I add HTTPS to my service?"

What This Skill Does

  1. Gathers Information - Asks interactive questions about the service
  2. Validates Input - Checks subdomain format, IP addresses, ports
  3. Suggests Defaults - Recommends settings based on service type
  4. Configures domains.toml - Adds service entry with correct options
  5. Applies Changes - Runs manage-domains.sh to generate configs
  6. Provides Tunnel Instructions - Guides user through manual Cloudflare step
  7. Verifies Setup - Tests DNS, HTTPS, and authentication

Instructions

3.1 Gather Service Information

Ask the user for the following details (provide examples):

Required:

FieldQuestionExample
nameWhat is the display name for this service?"Grafana Dashboard"
subdomainWhat subdomain do you want? (without.temet.ai)"grafana"
backendWhere is the service running? (IP:port or container:port)"192.168.68.135:3001" or "grafana:3000"

Service Type (for intelligent defaults):

TypeDescription
webStandard web application (default settings)
dockerDocker container on the same network
iotIoT device (needs header stripping)
apiAPI service (may need custom headers)
externalService on different machine on LAN

3.2 Validate Input

Use the validation script to check subdomain and backend:

python3 .claude/skills/add-subdomain/scripts/validate-subdomain.py grafana 192.168.68.135:3001

Rules:

  • Subdomain: lowercase alphanumeric + hyphens, max 63 chars, no leading/trailing hyphens
  • Backend: IP:port (e.g., 192.168.68.135:3001) or container:port (e.g., grafana:3000)
  • Check for duplicates before adding

3.3 Determine Configuration

Use service type to select defaults (see references/reference.md for full matrix):

Typeenable_httpsenable_httprequire_authSpecial
webtruefalsetrueproxy_headers
dockertruefalsetruecontainer:port backend
iotfalsetruetruestrip_cf_headers
externaltruefalsetrueLAN IP backend
self-signedtruefalsetruetls_insecure
publicfalsetruefalseno auth

3.4 Add to domains.toml

Location: /home/dawiddutoit/projects/network/domains.toml

Steps:

  1. Read current domains.toml
  2. Find appropriate section (Core Infrastructure, IoT Devices, or Utility Services)
  3. Append new service entry before the Advanced Configuration section
  4. Use Edit tool to add the entry

Template:

[[services]]
name = "{name}"
subdomain = "{subdomain}"
backend = "{backend}"
enable_https = {enable_https}
enable_http = {enable_http}
dns_ip = "{dns_ip}"
require_auth = {require_auth}
{optional_fields}

3.5 Apply Changes

Run the management script:

cd /home/dawiddutoit/projects/network && ./scripts/manage-domains.sh apply

Expected output:

=== Applying Domain Configuration ===

Validating configuration...
[checkmark] Configuration is valid

Generating Caddyfile...
[checkmark] Caddyfile generated successfully

Updating Pi-hole DNS entries...
[checkmark] Pi-hole DNS entries updated

Syncing Cloudflare Access applications...
[checkmark] Cloudflare Access synced successfully

Reloading Caddy configuration...
[checkmark] Caddy reloaded successfully

Restarting Pi-hole to apply DNS changes...
[checkmark] Pi-hole restarted successfully

3.6 Manual Tunnel Step

Provide clear instructions for the Cloudflare Tunnel configuration:

MANUAL STEP REQUIRED: Add Cloudflare Tunnel Route

1. Go to: https://one.dash.cloudflare.com
2. Navigate to: Access -> Tunnels
3. Click on tunnel: "pi-home" (or your tunnel name)
4. Click "Configure" -> "Public Hostname" -> "Add a public hostname"
5. Enter:
   - Subdomain: {subdomain}
   - Domain: temet.ai
   - Type: {HTTP or HTTPS}
   - URL: {backend_for_tunnel}

   For HTTPS services: https://caddy:443
   For HTTP-only services: http://caddy:80 or direct to service

6. Click "Save hostname"

Tunnel Backend Selection:

Service TypeTunnel URL
HTTPS enabledhttps://caddy:443
HTTP only (IoT)Direct to service: http://192.168.68.XXX:80
Docker containerhttps://caddy:443 or http://caddy:80

3.7 Verify Setup

After tunnel configuration, run verification:

1. DNS Resolution (local):

dig @192.168.68.135 {subdomain}.temet.ai +short

Expected: Returns the dns_ip configured

2. HTTPS Certificate:

echo | openssl s_client -servername {subdomain}.temet.ai \
  -connect {subdomain}.temet.ai:443 2>/dev/null | \
  openssl x509 -noout -dates -issuer

Expected: Valid certificate from Let's Encrypt

3. HTTP Response:

curl -I https://{subdomain}.temet.ai

Expected: HTTP/2 200 or 302 (redirect to login)

4. Service List:

./scripts/manage-domains.sh list

Expected: New service appears in list

Supporting Files

FilePurpose
references/reference.mdComplete configuration options reference
examples/examples.mdCommon service configuration examples
scripts/validate-subdomain.pyPre-validation of subdomain and backend

Validation Script Usage:

python3 .claude/skills/add-subdomain/scripts/validate-subdomain.py grafana 192.168.68.135:3001

Expected Outcomes

Success:

  • Service entry added to domains.toml
  • Caddyfile regenerated with new service block
  • Pi-hole DNS entry created
  • Cloudflare Access application created (if require_auth=true)
  • Caddy reloaded with new certificate
  • Service accessible at https://{subdomain}.temet.ai

Partial Success:

  • Configuration applied but tunnel not configured (user reminder provided)
  • Certificate pending (may take 1-2 minutes)

Failure Indicators:

  • domains.toml syntax error -> validate and fix
  • Caddy reload failed -> check Caddyfile syntax
  • DNS not resolving -> check Pi-hole logs
  • Certificate error -> check Cloudflare API token

Integration Points

This skill integrates with:

ComponentPurpose
domains.tomlCentral configuration source
manage-domains.shApplies configuration changes
generate-caddyfile.pyGenerates Caddyfile from domains.toml
generate-pihole-dns.pyUpdates Pi-hole DNS entries
sync-cloudflare-access.pyCreates/updates Access applications
Cloudflare TunnelManual public hostname configuration

Related Skills:

  • setup-new-domain-services - For adding new top-level domains
  • troubleshoot-ssl-certificates - For certificate issues
  • diagnose-cloudflare-access - For authentication problems

Expected Benefits

MetricBeforeAfter
Time to add service15-30 min (manual)2-5 min (guided)
Configuration errorsCommon (manual editing)Rare (validated)
Documentation neededMultiple filesSingle skill reference
ConsistencyVariableStandardized

Requirements

Environment:

  • Docker running with caddy, pihole containers
  • Cloudflare tunnel connected
  • Valid .env with API tokens

Tools needed:

  • Read, Write, Edit (for domains.toml)
  • Bash (for apply script and verification)
  • Grep (for duplicate checking)

Red Flags to Avoid

  • Do not add duplicate subdomains (check first)
  • Do not use uppercase in subdomain names
  • Do not forget the manual tunnel step
  • Do not skip verification after apply
  • Do not use host.docker.internal on Linux (use actual IP)
  • Do not enable both HTTPS and HTTP unless specifically needed
  • Do not set require_auth=false unless service must be public
  • Do not skip tls_insecure for services with self-signed certs

Notes

  • The Pi IP is typically 192.168.68.135 for services running on the Pi
  • IoT devices need strip_cf_headers = true to work properly
  • Services with self-signed certs need tls_insecure = true
  • Root redirects (like /admin/) use root_redirect option
  • The tunnel step is manual because Cloudflare API for tunnels is complex
  • Always run ./scripts/manage-domains.sh list to see current services

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.03%
按下载量换算27

Claude

32.62%
按下载量换算24

Cursor

18.53%
按下载量换算14

Gemini CLI

9.59%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills