Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add estuary/agent-skills --skill estuary-connector-restartgit clone --depth 1 https://github.com/estuary/agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/estuary/agent-skills/estuary-connector-restart)<a href="https://agentmods.dev/skills/estuary/agent-skills/estuary-connector-restart"><img src="https://agentmods.dev/badge/skills/estuary/agent-skills/estuary-connector-restart/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/estuary/agent-skills/estuary-connector-restart"><img src="https://agentmods.dev/badge/skills/estuary/agent-skills/estuary-connector-restart.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00137 | $0.00958 |
| Opus 5 | $0.00068 | $0.00479 |
| Sonnet 5 | $0.00027 | $0.00192 |
| Haiku 4.5 | $0.00014 | $0.00096 |
Grade C, and why
estuary-connector-restart scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
Optionally remove the pulled spec files when done: `rm -rf flow.yaml <tenant>/` How it starts
The opening of the file, as written. The whole thing — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Restart a Connector — Disable and Re-enable via flowctl
Temporarily pause a capture or materialization by disabling its shards, then re-enable it. The connector resumes from its last checkpoint — no data is lost. Works for both captures and materializations.
Prerequisites
flowctl auth login
Step 1: Pull the current spec
flowctl catalog pull-specs --name <task-name>
This creates a flow.yaml and a directory with the task's YAML spec.
Step 2: Disable the connector
Edit the task's YAML file (under <task-name>/flow.yaml) and add a shards block at the same level as endpoint and bindings:
captures:
acmeCo/source-postgres:
endpoint:
connector:
image: ghcr.io/estuary/source-postgres:v1
config: ...
bindings:
- resource: ...
target: ...
# Add this block to disable:
shards:
disable: true
# To re-enable: remove the shards block and any expectPubId line
If a shards section already exists, just add disable: true to it.
Publish to apply:
flowctl catalog publish --source flow.yaml --auto-approve
Confirm it's disabled:
flowctl catalog status <task-name> --output json | jq '.status.type'
# Expected: "TASK_DISABLED"
Step 3: Re-enable the connector
Edit the same file and:
- Remove
disable: true(or the entireshardsblock if it only contained that) — do not set it tofalse(an explicitfalseis treated as a setting and may cause unexpected behavior) - Remove the
expectPubIdline if present — it's stale after the disable publish and will cause errors
Publish again:
flowctl catalog publish --source flow.yaml --auto-approve
Verify it's running:
flowctl catalog status <task-name> --output json | jq '.status.type'
# Expected: "WARNING" initially (shards starting), then "OK" after 30-120 seconds
Activation timing varies: small connectors take 30-60 seconds, large connectors (100+ bindings) take 60-120 seconds.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 99 lines · 137 tokens per session scan C 1291a757dfbe
estuary-connector-restart is a skill published in the GitHub repository estuary/agent-skills (7 stars, last pushed 21d ago), licensed Apache-2.0. It adds 137 tokens to every session and 958 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
confluent-cloud-cdc-tableflow
Set up end-to-end Change Data Capture (CDC) pipelines on Confluent Cloud using Debezium source connectors, Flink for transformation, and Tableflow for data lake integration. Supports JSONSR, Avro, and Protobuf formats. Handles schemaless topics (plain JSON without SR) and multi-event topics. This skill handles the…
trigger-overlap
Build a Confluent Cloud topic provisioning script with retention and compaction. Use when the user asks to create a topic, write a create-topics.sh, set retention, set compaction policy, provision topics for Confluent Cloud, or generate idempotent topic scripts.
msk-migration
Use this skill to assess and plan a migration from AWS MSK (Managed Streaming for Apache Kafka) to Confluent Cloud. Triggers on user intent like "migrate MSK to Confluent Cloud", "move off MSK", "MSK to CC cutover", "Zero-Cut migration from MSK", "kcp scan my MSK", or any discussion of MSK-to-CC assessment, planning…
change-data-capture-admin
Use when enabling, configuring, or monitoring Change Data Capture (CDC) entity selection, channel enrichment, and delivery usage limits from an admin perspective. NOT for writing an Apex change-event trigger — use apex/change-data-capture-apex. NOT for subscribing an external system over Pub/Sub or CometD — use…
change-data-capture-admin
Use when enabling, configuring, or monitoring Change Data Capture (CDC) entity selection, channel enrichment, and delivery usage limits from an admin perspective. NOT for CDC Apex trigger implementation (use change-data-capture-integration).
stream-processing-designer
Design a stream processing system for unbounded, continuously arriving data. Use when choosing a message broker (Kafka vs RabbitMQ), implementing change data capture (CDC) from PostgreSQL, MySQL, or MongoDB via Debezium or Maxwell, selecting window types for aggregation (tumbling, hopping, sliding, session), joining…