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 agentmods add skills/enablement-engineering/gobbler/gobbler-setupnpx skills add Enablement-Engineering/gobbler --skill gobbler-setupgit clone --depth 1 https://github.com/Enablement-Engineering/gobblerWrote 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/enablement-engineering/gobbler/gobbler-setup)<a href="https://agentmods.dev/skills/enablement-engineering/gobbler/gobbler-setup"><img src="https://agentmods.dev/badge/skills/enablement-engineering/gobbler/gobbler-setup.svg" alt="Measured on agentmods" 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.00050 | $0.01262 |
| Opus 5 | $0.00025 | $0.00631 |
| Sonnet 5 | $0.00010 | $0.00252 |
| Haiku 4.5 | $0.00005 | $0.00126 |
Grade A, and why
gobbler-setup scanned grade A with 0 findings 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 5d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 196 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Gobbler setup and troubleshooting
Use this Skill for installation, configuration, dependency checks, Docker services, the SQLite worker, and browser-relay problems.
Start with diagnostics
gobbler --version
gobbler doctor --json
gobbler status --json
doctor --jsonis the broad setup report: Python, ffmpeg, Docker, config, and conversion services.status --jsonfocuses on provider readiness and YouTube fallback/proxy state.status --jsoncan emit a useful JSON body and exit nonzero when degraded.
Do not assume every degraded service blocks every workflow. YouTube needs no local service; local audio needs ffmpeg; documents need Docling; web pages need Crawl4AI.
Install
Requirements: Python 3.11+ and uv. ffmpeg is needed for audio/video. Docker is needed for documents/web pages.
git clone https://github.com/Enablement-Engineering/gobbler.git
cd gobbler
uv sync
uv run gobbler --version
uv run gobbler doctor --json
Optional isolated global tool:
uv tool install .
gobbler --version
After pulling updates:
uv tool install . --force
Docker services
The Compose stack has Docling and Crawl4AI only:
make start-docker
docker compose ps
gobbler doctor --json
Default endpoints:
- Docling:
http://localhost:5001 - Crawl4AI:
http://localhost:11235
Inspect failures:
docker compose logs --tail 100 docling
docker compose logs --tail 100 crawl4ai
Do not tell users Redis or RQ is required. The current queue is SQLite-backed.
Configuration
Path:
~/.config/gobbler/config.yml
Commands:
gobbler config path
gobbler config show --format json
gobbler config init
Edit the YAML file directly; the current CLI has no config set or config validate command. There is no universal environment override system and GOBBLER_CONFIG does not select another config file. Current integration variables include:
TRANSCRIPTAPI_KEYWEBSHARE_USER,WEBSHARE_PASS,YOUTUBE_PROXYCRAWL4AI_PROXYOPENAI_API_KEYCRAWL4AI_API_TOKENfor Compose, paired with configGOBBLER_MODELS_PATHfor the Docling cache mount
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.
- 5d ago First seen · 196 lines · 50 tokens per session scan A 76d7596f6065
gobbler-setup is a skill published in the GitHub repository Enablement-Engineering/gobbler (4 stars, last pushed 5d ago), licensed MIT. It adds 50 tokens to every session and 1,262 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
whendone-plus
Automatically notify the user when long-running terminal commands finish (npm test, docker build, git push, etc.). The agent monitors command execution and sends a desktop notification on completion if the command ran longer than threshold (default 10s). Use when user asks to "notify me when done", "desktop…
system-environment-setup
Build reproducible developer environments for real projects: local toolchains, runtime versions, Docker Compose or dev containers, onboarding flows, local service parity, bootstrap scripts, and environment troubleshooting. Use when the user needs a repo to run consistently across machines, containers, or staged…
vscode-workspace-setup
Configures VS Code workspaces with optimal settings, extensions, tasks, and debugging for team consistency. Use when users request "VS Code setup", "workspace settings", "team VS Code config", "editor configuration", or "devcontainer setup".
developer-experience-patterns
Use when designing or reviewing developer tooling, monorepo structure, dev environments, onboarding flows, or internal platforms — covers Monorepo tooling (Nx/Turborepo), dev containers, golden path / platform engineering, local-prod parity, fast feedback loops, DX-first API design, developer onboarding, and DX…
makefile
Create a Makefile with central commands for a project — build, test, lint, deploy, docker, and dev workflow commands. Use when asked to add a Makefile, standardize project commands, or create dev tooling.
terminal-execution
Guide for using the execute tool to run shell commands in workspace. Use when agent needs to: build/test code, run scripts, check system status, install dependencies, or execute deployment commands.