b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
CI / Deny unrelated histories (push) Has been skipped
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / CI timing report (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
CI / All required checks pass (push) Has been cancelled
84 lines
3.0 KiB
Python
84 lines
3.0 KiB
Python
"""``hermes webhook`` subcommand parser.
|
|
|
|
Extracted verbatim from ``hermes_cli/main.py:main()`` (god-file Phase 2).
|
|
Handler injected to avoid importing ``main``.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Callable
|
|
|
|
|
|
def build_webhook_parser(subparsers, *, cmd_webhook: Callable) -> None:
|
|
"""Attach the ``webhook`` subcommand to ``subparsers``."""
|
|
# =========================================================================
|
|
# webhook command
|
|
# =========================================================================
|
|
webhook_parser = subparsers.add_parser(
|
|
"webhook",
|
|
help="Manage dynamic webhook subscriptions",
|
|
description="Create, list, and remove webhook subscriptions for event-driven agent activation",
|
|
)
|
|
webhook_subparsers = webhook_parser.add_subparsers(dest="webhook_action")
|
|
|
|
wh_sub = webhook_subparsers.add_parser(
|
|
"subscribe", aliases=["add"], help="Create a webhook subscription"
|
|
)
|
|
wh_sub.add_argument("name", help="Route name (used in URL: /webhooks/<name>)")
|
|
wh_sub.add_argument(
|
|
"--prompt", default="", help="Prompt template with {dot.notation} payload refs"
|
|
)
|
|
wh_sub.add_argument(
|
|
"--events", default="", help="Comma-separated event types to accept"
|
|
)
|
|
wh_sub.add_argument("--description", default="", help="What this subscription does")
|
|
wh_sub.add_argument(
|
|
"--skills", default="", help="Comma-separated skill names to load"
|
|
)
|
|
wh_sub.add_argument(
|
|
"--deliver",
|
|
default="log",
|
|
help="Delivery target: log, telegram, discord, slack, etc.",
|
|
)
|
|
wh_sub.add_argument(
|
|
"--deliver-chat-id",
|
|
default="",
|
|
help="Target chat ID for cross-platform delivery",
|
|
)
|
|
wh_sub.add_argument(
|
|
"--secret", default="", help="HMAC secret (auto-generated if omitted)"
|
|
)
|
|
wh_sub.add_argument(
|
|
"--deliver-only",
|
|
action="store_true",
|
|
help="Skip the agent — deliver the rendered prompt directly as the "
|
|
"message. Zero LLM cost. Requires --deliver to be a real target "
|
|
"(not 'log').",
|
|
)
|
|
wh_sub.add_argument(
|
|
"--script",
|
|
default="",
|
|
help="Filter/transform script under ~/.hermes/scripts/. The route "
|
|
"payload is passed as JSON on stdin; empty stdout, [SILENT], or a "
|
|
"nonzero exit code ignores the webhook.",
|
|
)
|
|
|
|
webhook_subparsers.add_parser(
|
|
"list", aliases=["ls"], help="List all dynamic subscriptions"
|
|
)
|
|
|
|
wh_rm = webhook_subparsers.add_parser(
|
|
"remove", aliases=["rm"], help="Remove a subscription"
|
|
)
|
|
wh_rm.add_argument("name", help="Subscription name to remove")
|
|
|
|
wh_test = webhook_subparsers.add_parser(
|
|
"test", help="Send a test POST to a webhook route"
|
|
)
|
|
wh_test.add_argument("name", help="Subscription name to test")
|
|
wh_test.add_argument(
|
|
"--payload", default="", help="JSON payload to send (default: test payload)"
|
|
)
|
|
|
|
webhook_parser.set_defaults(func=cmd_webhook)
|