Trigv home

Search docs

Getting started
  • Overview
  • How Trigv works
Help
  • Send test
  • API keys
  • Channels
  • Image attachments
Guides
  • All guides
  • cURL
  • Laravel
  • AI coding agents
  • Cursor
  • Claude Code
  • OpenAI Codex
  • Other agents
SDKs
  • All SDKs
  • JavaScript
  • Python
  • PHP
  • Go
  • Ruby
  • CLI
API reference
  • API overview
  • POST /api/v1/events
  • Errors & rate limits
  • API security
More
  • OpenAPI spec
Open in ChatGPT ↗ Ask questions about this page Open in Claude ↗ Ask questions about this page Open Markdown https://trigv.com/docs-md/learn/other-agents.md

Other AI tools

If a tool can run a shell command when work finishes, it can call Trigv — no special SDK.

Quick test (any terminal)

Code
curl -sS -X POST https://api.trigv.com/api/v1/events \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer $TRIGV_API_KEY" \
	-d '{"channel":"agents","title":"Agent done","level":"success"}'

Or use trigv-notify.sh for nicer titles.

By tool

ToolWhat to do
WindsurfWhen a Cascade flow ends, run trigv-notify.sh from a post-step shell command.
AiderWrap your session: aider …; trigv-notify.sh “Aider session ended”
Gemini CLIChain commands in one shell script — notify on exit code 0 or 1.
Custom agentsCall Trigv from your agent’s completion handler — same JSON as event ingest.

Wrapper pattern

Works when the tool has no hooks yet — run any command, notify on exit:

Code
#!/usr/bin/env bash
set -e
"$@"
STATUS=$?
if [ $STATUS -eq 0 ]; then
	trigv-notify.sh "Success" "$*"
else
	TRIGV_LEVEL=error trigv-notify.sh "Failed ($STATUS)" "$*"
fi
exit $STATUS

AI agents overview · API keys

Previous OpenAI Codex Next All SDKs

On this page

    Native push alerts for developers. Send alerts from webhooks, cron jobs, and scripts. We deliver alerts to your devices, but don't keep the message or notification history on our servers.

    Follow @trigvapp →

    Built by Harish Chouhan

    Product

    • Features
    • How it works
    • Pricing
    • Docs
    • Integrations
    • SDKs
    • API
    • Full LLMs text

    Company

    • About
    • Support
    • Changelog

    Legal

    • Terms & Conditions
    • Privacy Policy
    • Cookie Policy
    • API Security
    All systems ok. Get back to coding.

    © 2026 Webtions OU (dba Trigv)