Agent skill
watcher-creator
Guide for creating agent-deck watchers conversationally. This skill should be used when users want to set up a new watcher (webhook, ntfy, github, slack, gmail) to route events to a conductor. It walks the user through selecting an adapter type, gathering required settings, generating watcher.toml and clients.json entries, and emits the exact `agent-deck watcher create` command to run.
Install this agent skill to your Project
npx add-skill https://github.com/asheshgoplani/agent-deck/tree/main/cmd/agent-deck/assets/skills/watcher-creator
SKILL.md
Watcher Creator
Overview
This skill guides users through setting up a new agent-deck watcher from scratch. A watcher listens for incoming events (webhooks, ntfy notifications, GitHub events, Slack messages, or Gmail messages) and routes them to the appropriate conductor session. The skill asks clarifying questions, collects required settings, and emits the exact CLI command and configuration files to create a working watcher.
When to use
Invoke this skill when a user says things like:
- "I want to set up a new watcher"
- "How do I connect GitHub webhooks to agent-deck?"
- "Help me route Slack messages to a conductor"
- "Create a watcher for my Gmail inbox"
- "I need agent-deck to listen for ntfy notifications"
Step-by-step conversational flow
Step 1: Choose adapter type
Ask the user which source they want to receive events from. Present the five options:
- webhook - Generic HTTP POST webhook (any service that can send HTTP)
- ntfy - ntfy.sh push notification topic
- github - GitHub repository webhooks (issues, PRs, pushes)
- slack - Slack messages via a Cloudflare Worker bridge to ntfy
- gmail - Gmail inbox via Google Cloud Pub/Sub watch
Step 2: Gather required settings for the chosen type
Once the user picks a type, ask for the settings specific to that adapter (see the per-type sections below). Ask for each required setting one at a time to avoid overwhelming the user.
Also ask:
- Watcher name: A short lowercase identifier (e.g.,
my-webhook,github-alerts). This becomes the directory name under~/.agent-deck/watchers/. - Conductor: Which conductor session this watcher should route events to by default (the
conductorfield inclients.json). - Group: Which group the conductor session lives in (the
groupfield inclients.json).
Step 3: Generate a watcher.toml block
Produce a TOML configuration block for the user to save as ~/.agent-deck/watchers/<name>/watcher.toml.
Example for webhook:
[watcher]
name = "my-webhook"
type = "webhook"
[adapter]
port = "18460"
bind = "127.0.0.1"
[routing]
conductor = "main-conductor"
group = "inbox"
Step 4: Generate a clients.json entry
Produce the JSON entry keyed by the expected sender. The key format depends on adapter type:
- webhook: the
X-Webhook-Senderheader value the sender will use (e.g., an IP or a service name) - ntfy:
ntfy:<topic>@<server-host>(e.g.,ntfy:my-topic@ntfy.sh) - github:
<github-username>@github.com - slack:
slack:<CHANNEL_ID>(e.g.,slack:C0AABSF5GKD) - gmail: the sender's email address (e.g.,
user@example.com)
Entry format:
{
"sender-key": {
"conductor": "main-conductor",
"group": "inbox",
"name": "Human-readable label"
}
}
Step 5: Emit the exact agent-deck watcher create command
Show the user the full CLI command to run. Only emit commands — do not execute them.
Supported watcher types and required fields
webhook
The webhook adapter runs a local HTTP server. Any service that can POST to an HTTP endpoint can deliver events.
Required settings:
port(string): TCP port to listen on. Default is"18460". Must be available on the local machine.
Optional settings:
bind(string): Bind address. Default is"127.0.0.1"(loopback only, per security policy T-14-04). Use"0.0.0.0"only if the sender is remote and you understand the exposure.
Sender key in clients.json: Set the X-Webhook-Sender header from the sending service, or use the remote IP if the header is absent.
Create command:
agent-deck watcher create webhook --name <name> --port <port>
ntfy
The ntfy adapter subscribes to an ntfy.sh topic via NDJSON streaming. It auto-reconnects with exponential backoff.
Required settings:
topic(string): The ntfy topic name (e.g.,"my-alerts").
Optional settings:
server(string): ntfy server URL. Default is"https://ntfy.sh".
Sender key in clients.json: ntfy:<topic>@<server-host> (e.g., ntfy:my-alerts@ntfy.sh).
Create command:
agent-deck watcher create ntfy --name <name> --topic <topic>
github
The GitHub adapter runs a local HTTP server that receives GitHub webhook POST requests and verifies HMAC-SHA256 signatures.
Required settings:
secret(string): The webhook secret configured in GitHub (Settings > Webhooks > Secret). Used for HMAC-SHA256 signature verification.
Optional settings:
port(string): TCP port to listen on. Default is"18461".bind(string): Bind address. Default is"127.0.0.1". Use a public address or set up a tunnel (e.g., ngrok) if GitHub must reach this machine.
Supported event types: issues, pull_request, push. Unknown event types produce a generic event.
Sender key in clients.json: <github-username>@github.com (e.g., octocat@github.com).
Create command:
agent-deck watcher create github --name <name> --secret <secret>
slack
The Slack adapter subscribes to an ntfy topic that receives bridged Slack events from a Cloudflare Worker. It supports both v1 (plain text) and v2 (structured JSON) payloads.
Required settings:
topic(string): The ntfy topic that the Cloudflare Worker posts Slack events to.
Optional settings:
server(string): ntfy server URL. Default is"https://ntfy.sh".
Sender key in clients.json: slack:<CHANNEL_ID> (e.g., slack:C0AABSF5GKD). The channel ID comes from the Slack API or the channel URL in the Slack app.
Create command:
agent-deck watcher create slack --name <name> --topic <topic>
gmail
The Gmail adapter delivers normalized events from a Gmail account via Google Cloud Pub/Sub. It requires initial OAuth setup and a Pub/Sub topic + subscription.
Required settings:
topic(string): Full Pub/Sub topic resource name:projects/<project-id>/topics/<topic-name>.subscription(string): Full Pub/Sub subscription resource name:projects/<project-id>/subscriptions/<sub-name>.
Optional settings:
credentials_path(string): Path to the OAuth client credentials JSON file (downloaded from Google Cloud Console). Default:~/.agent-deck/watchers/<name>/credentials.json.token_path(string): Path to the persisted OAuth token JSON. Default:~/.agent-deck/watchers/<name>/token.json.labels(string): Comma-separated Gmail label filter (e.g.,"INBOX,UNREAD"). If absent, all messages pass through.account(string): Informational Gmail address for display purposes.
Pre-requisites before running agent-deck watcher create:
- Create a Google Cloud project and enable the Gmail API and Cloud Pub/Sub API.
- Create a Pub/Sub topic and subscription.
- Grant the Gmail service account (
gmail-api-push@system.gserviceaccount.com) thePub/Sub Publisherrole on the topic. - Download OAuth client credentials (Desktop app type) to
credentials.json. - Run
agent-deck watcher oauth login(Phase 19+) or manually place atoken.jsonin the watcher directory.
Sender key in clients.json: The sender's email address (e.g., contact@example.com).
Create command:
agent-deck watcher create gmail --name <name>
Validation checklist
Before emitting the final agent-deck watcher create command, confirm:
- Name is valid: Lowercase letters, numbers, and hyphens only. No spaces or special characters.
- Port is available (webhook/github): The chosen port is not already in use by another watcher or service.
- Conductor session exists: The conductor name matches an active agent-deck session (check with
agent-deck session list). - Required settings collected: All required fields for the chosen adapter type are present and non-empty.
- clients.json entry is correct: The sender key format matches the adapter's normalization (e.g.,
slack:CHANNEL_IDnot justCHANNEL_ID).
Example walkthrough
User: I want to set up a watcher for GitHub webhook events on my repo.
Skill response: Great, let me help you set up a GitHub watcher.
- What name should this watcher have? (e.g.,
github-myrepo) - What port should it listen on? (default: 18461)
- What webhook secret will you use? (you'll configure the same value in GitHub Settings > Webhooks)
- Which conductor session should receive the events? (e.g.,
main-conductor) - Which group is that conductor in? (e.g.,
dev)
User: Name: github-myrepo, port: 18461, secret: mysecret, conductor: main-conductor, group: dev
Skill response: Here is your configuration.
Save this as ~/.agent-deck/watchers/github-myrepo/watcher.toml:
[watcher]
name = "github-myrepo"
type = "github"
[adapter]
secret = "mysecret"
port = "18461"
bind = "127.0.0.1"
[routing]
conductor = "main-conductor"
group = "dev"
Add this entry to ~/.agent-deck/watchers/clients.json (key is <your-github-username>@github.com):
{
"octocat@github.com": {
"conductor": "main-conductor",
"group": "dev",
"name": "My GitHub Repo"
}
}
Now run:
agent-deck watcher create github --name github-myrepo --secret mysecret
Then start the watcher:
agent-deck watcher start github-myrepo
Configure GitHub to send webhooks to http://<your-server>:18461/github.
Notes
This skill is read-only (D-22): it guides you through configuration and emits commands to run, but it does NOT execute agent-deck watcher create itself. Copy and run the commands shown above in your terminal.
All five adapter types (webhook, ntfy, github, slack, gmail) route incoming events through the same engine. Events are matched against ~/.agent-deck/watchers/clients.json by sender. Unknown senders are sent to triage in Phase 18+.
Install this skill to your pool with:
agent-deck watcher install-skill watcher-creator
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
session-share
Share Claude Code sessions between developers. Use when user mentions "share session", "export session", "import session", "send session to", "continue from colleague", or needs to (1) export current session to file, (2) import session from another developer, (3) hand off work context. Enables private, secure session transfer via direct file sharing.
agent-deck
Terminal session manager for AI coding agents. Use when user mentions "agent-deck", "session", "sub-agent", "MCP attach", "git worktree", or needs to (1) create/start/stop/restart/fork sessions, (2) attach/detach MCPs, (3) manage groups/profiles, (4) get session output, (5) configure agent-deck, (6) troubleshoot issues, (7) launch sub-agents, or (8) create/manage worktree sessions. Covers CLI commands, TUI shortcuts, config.toml options, and automation.
verl-rl-training
Provides guidance for training LLMs with reinforcement learning using verl (Volcano Engine RL). Use when implementing RLHF, GRPO, PPO, or other RL algorithms for LLM post-training at scale with flexible infrastructure backends.
openrlhf-training
High-performance RLHF framework with Ray+vLLM acceleration. Use for PPO, GRPO, RLOO, DPO training of large models (7B-70B+). Built on Ray, vLLM, ZeRO-3. 2× faster than DeepSpeedChat with distributed architecture and GPU resource sharing.
gguf-quantization
GGUF format and llama.cpp quantization for efficient CPU/GPU inference. Use when deploying models on consumer hardware, Apple Silicon, or when needing flexible quantization from 2-8 bit without GPU requirements.
Claude Code Guide
Master guide for using Claude Code effectively. Includes configuration templates, prompting strategies "Thinking" keywords, debugging techniques, and best practices for interacting with the agent.
Didn't find tool you were looking for?