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/hookdeck/agent-skills/outpostnpx skills add hookdeck/agent-skills --skill outpostgit clone --depth 1 https://github.com/hookdeck/agent-skillsWhat 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 | $0.00087 | $0.01783 |
| Opus 5 | $0.00044 | $0.00892 |
| Sonnet 5 | $0.00017 | $0.00357 |
| Haiku 4.5 | $0.00009 | $0.00178 |
Grade A, and why
outpost scanned grade A 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
| curl (HTTP only) | [Hookdeck Outpost curl quickstart](https://hookdeck.com/docs/outpost/quickstarts/hookdeck-outpost-curl) | How it starts
The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Hookdeck Outpost
Outbound event delivery: publish platform events to tenants’ destinations (webhooks, queues, cloud buses—see supported destinations). Open source on GitHub; managed on Hookdeck Cloud or self-hosted.
Single source of truth: Use Hookdeck Outpost documentation for concepts, API, quickstarts, and UI guidance. This skill links there and adds agent workflow notes under references/.
Documentation index for agents
llms.txt: https://hookdeck.com/docs/outpost/llms.txt — plain-text map of doc pages as.mdURLs; fetch once when you need the full tree or many pages.- Concepts: Tenants, destinations, topics, publish
- API reference: REST / OpenAPI; self-hosted spec file:
https://github.com/hookdeck/outpost/blob/main/docs/apis/openapi.yaml - SDKs: Overview — for TypeScript, Python, or Go, follow that language’s quickstart for correct signatures.
- Building your own UI: Guide — screen flow, BFF pattern, implementation checklists.
- Destinations / topics: Destination types · Topics and subscriptions
Quickstarts (smallest path first)
Use the official managed-Outpost walkthroughs before opening full-stack examples in this repo:
| curl (HTTP only) | Hookdeck Outpost curl quickstart |
| TypeScript | TypeScript quickstart |
| Python | Python quickstart |
| Go | Go quickstart |
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- examples/fastapi-saas/.copier/.copier-answers.yml.jinja 31 B
- examples/fastapi-saas/.copier/update_dotenv.py 977 B runs code
- examples/fastapi-saas/.gitattributes 29 B
- examples/fastapi-saas/.github/dependabot.yml 988 B
- examples/fastapi-saas/.github/DISCUSSION_TEMPLATE/questions.yml 4.4 KB
- examples/fastapi-saas/.github/FUNDING.yml 19 B
- examples/fastapi-saas/.github/ISSUE_TEMPLATE/config.yml 628 B
- examples/fastapi-saas/.github/ISSUE_TEMPLATE/privileged.yml 914 B
- examples/fastapi-saas/.github/labeler.yml 548 B
- examples/fastapi-saas/.github/workflows/add-to-project.yml 368 B
- examples/fastapi-saas/.github/workflows/deploy-production.yml 1.1 KB
- examples/fastapi-saas/.github/workflows/deploy-staging.yml 1.1 KB
- examples/fastapi-saas/.github/workflows/detect-conflicts.yml 499 B
- examples/fastapi-saas/.github/workflows/issue-manager.yml 1.8 KB
- examples/fastapi-saas/.github/workflows/labeler.yml 828 B
- examples/fastapi-saas/.github/workflows/latest-changes.yml 1.1 KB
- examples/fastapi-saas/.github/workflows/playwright.yml 3.7 KB
- examples/fastapi-saas/.github/workflows/pre-commit.yml 3.1 KB
- examples/fastapi-saas/.github/workflows/smokeshow.yml 1.0 KB
- examples/fastapi-saas/.github/workflows/test-backend.yml 1.1 KB
- examples/fastapi-saas/.github/workflows/test-docker-compose.yml 635 B
- examples/fastapi-saas/.gitignore 118 B
- examples/fastapi-saas/.pre-commit-config.yaml 2.0 KB
- examples/fastapi-saas/backend/.dockerignore 76 B
- examples/fastapi-saas/backend/.gitignore 74 B
- examples/fastapi-saas/backend/alembic.ini 1.6 KB
- examples/fastapi-saas/backend/app/__init__.py 0 B runs code
- examples/fastapi-saas/backend/app/alembic/env.py 2.3 KB runs code
- examples/fastapi-saas/backend/app/alembic/README 39 B
- examples/fastapi-saas/backend/app/alembic/script.py.mako 523 B
- examples/fastapi-saas/backend/app/alembic/versions/.keep 0 B
- examples/fastapi-saas/backend/app/alembic/versions/1a31ce608336_add_cascade_delete_relationships.py 1.1 KB runs code
- examples/fastapi-saas/backend/app/alembic/versions/9c0a54914c78_add_max_length_for_string_varchar_.py 2.2 KB runs code
- examples/fastapi-saas/backend/app/alembic/versions/d98dd8ec85a3_edit_replace_id_integers_in_all_models_.py 3.7 KB runs code
- examples/fastapi-saas/backend/app/alembic/versions/e2412789c190_initialize_models.py 1.7 KB runs code
- examples/fastapi-saas/backend/app/alembic/versions/fe56fa70289e_add_created_at_to_user_and_item.py 852 B runs code
- examples/fastapi-saas/backend/app/api/__init__.py 0 B runs code
- examples/fastapi-saas/backend/app/api/deps.py 1.7 KB runs code
- examples/fastapi-saas/backend/app/api/main.py 452 B runs code
- examples/fastapi-saas/backend/app/api/routes/__init__.py 0 B runs code
- examples/fastapi-saas/backend/app/api/routes/items.py 3.4 KB runs code
- examples/fastapi-saas/backend/app/api/routes/login.py 4.0 KB runs code
- examples/fastapi-saas/backend/app/api/routes/outpost.py 11 KB runs code
- examples/fastapi-saas/backend/app/api/routes/private.py 777 B runs code
- examples/fastapi-saas/backend/app/api/routes/users.py 8.5 KB runs code
- examples/fastapi-saas/backend/app/api/routes/utils.py 783 B runs code
- examples/fastapi-saas/backend/app/backend_pre_start.py 921 B runs code
- examples/fastapi-saas/backend/app/core/__init__.py 0 B runs code
- examples/fastapi-saas/backend/app/core/config.py 3.8 KB runs code
- examples/fastapi-saas/backend/app/core/db.py 1.2 KB runs code
- examples/fastapi-saas/backend/app/core/security.py 921 B runs code
- examples/fastapi-saas/backend/app/crud.py 2.4 KB runs code
- examples/fastapi-saas/backend/app/email-templates/src/new_account.mjml 1.3 KB
- examples/fastapi-saas/backend/app/email-templates/src/reset_password.mjml 1.9 KB
- examples/fastapi-saas/backend/app/email-templates/src/test_email.mjml 623 B
- examples/fastapi-saas/backend/app/initial_data.py 402 B runs code
- examples/fastapi-saas/backend/app/main.py 923 B runs code
- examples/fastapi-saas/backend/app/models.py 3.4 KB runs code
- examples/fastapi-saas/backend/app/tests_pre_start.py 917 B runs code
- examples/fastapi-saas/backend/app/utils.py 3.8 KB runs code
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.
- 2d ago First seen · 101 lines · 87 tokens per session scan A dc791c7109f7
outpost is a skill published in the GitHub repository hookdeck/agent-skills (5 stars, last pushed 13d ago), licensed MIT. It adds 87 tokens to every session and 1,783 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
hookdeck-cli-release
Guides maintainers through Hookdeck CLI releases (stable GA, beta from main, beta from feature branches) and user-centric GitHub release notes. Validates proposed versions against SemVer from the actual change set (e.g. breaking changes require a major bump). Use when cutting a release, publishing a tag, drafting…
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…