Skip to main content

Text-to-speech CLI, MCP server, and Claude Code plugin (ElevenLabs, AWS Polly, OpenAI)

Project description

vox

Voice and audio for your AI coding assistant.

License CI PyPI Python Working Backwards

vox is the voice and audio layer for AI coding agents --- voice personalities, mood-aware expressive delivery, and background music, through five TTS providers with zero-config offline fallbacks. Because listening and watching the screen draw on largely separate channels, you can track your agent's progress by ear while your eyes stay on other work. It speaks when a task finishes, hits an error, or needs approval --- and it's partly entertainment, too: the agent can play DJ for you.

Platforms: macOS, Linux

Hear It

Real samples generated by vox with ElevenLabs v3. The first three are the same recap with different /vibe moods --- expressive tags change how the voice sounds without changing the words.

Sample Vibe Voice
Task recap neutral sarah listen
Same recap [excited] sarah listen
Same recap [weary] [sighs] sarah listen
Task complete neutral matilda listen

Ways to use vox

vox is usable in three ways, all driving the same voxd audio daemon --- so it works outside a Claude Code plugin, in your own scripts or shell:

  • Claude Code plugin (MCP) --- the mic MCP server gives your agent voice, /vibe, and /music tools plus notification hooks. Drive it with /vox y, /recap, /vibe, /music.
  • Python library --- from punt_vox import VoxClient; async with VoxClient() as vox: await vox.synthesize("Build finished") (or the sync VoxClientSync). See Python API.
  • CLI --- vox say "Build finished", vox record, vox music on. A standalone TTS tool, independent of Claude Code. See CLI.

Quick Start

curl -fsSL https://raw.githubusercontent.com/punt-labs/vox/d99c8dd/install.sh | sh

Restart Claude Code, then:

/vox y        # hear when tasks complete or need input
/recap        # spoken summary of what just happened
Manual install (if you already have uv)
uv tool install punt-vox
vox install
vox doctor
Verify before running
curl -fsSL https://raw.githubusercontent.com/punt-labs/vox/d99c8dd/install.sh -o install.sh
shasum -a 256 install.sh
cat install.sh
sh install.sh

Configure providers

The Quick Start gets you running with the OS's built-in voice — say on macOS, espeak-ng on Linux. For a natural-sounding voice, configure any cloud provider. For /vibe expressive tags ([excited], [weary], [sighs], etc) you need ElevenLabs specifically — that's the only provider that supports them today.

1. Get an API key

Provider Where to sign up Free tier
ElevenLabs (recommended) elevenlabs.ioSettings → API Keys 10k characters/month
OpenAI platform.openai.comAPI Keys None — pay-as-you-go
AWS Polly Any AWS account; create an IAM user with the AmazonPollyReadOnlyAccess policy 5M chars/month, first 12 months

2. Add the keys to ~/.punt-labs/vox/keys.env

The keys file is in your home directory and owned by you — open it in your normal editor, no sudo:

nano ~/.punt-labs/vox/keys.env   # or vi, code, etc

Paste any of these lines that apply. All are optional; vox auto-detects which providers are configured.

# ElevenLabs — recommended
ELEVENLABS_API_KEY=sk_...

# OpenAI
OPENAI_API_KEY=sk-proj-...

# AWS Polly via an aws CLI profile (recommended if you use the AWS CLI)
AWS_PROFILE=default
AWS_DEFAULT_REGION=us-east-1

# AWS Polly via raw credentials (alternative to a profile)
# AWS_ACCESS_KEY_ID=AKIA...
# AWS_SECRET_ACCESS_KEY=...
# AWS_DEFAULT_REGION=us-east-1

# Optional: pin a specific provider.
# Auto-detect order: ElevenLabs > OpenAI > Polly > say (macOS) / espeak (Linux).
TTS_PROVIDER=elevenlabs

3. Restart the daemon to pick up the changes

vox daemon restart

Run it as your normal user, not under sudo. On macOS this is fully sudo-free — voxd is a user LaunchAgent, so no password is required. On Linux it prompts once for sudo internally, only for the systemctl call that manages the system service. Editing keys.env itself never needs sudo on either platform.

4. Verify

vox doctor                         # report system checks and the daemon's active provider
vox voices                         # list the voices your provider offers
vox say "hello from vox"           # speak through the default provider
echo "piped too" | vox say         # ...or read the text from stdin

vox doctor reports the Python version, ffmpeg/espeak presence, daemon status, and which provider the running daemon is currently using. vox say should speak the phrase through your speakers within a few seconds.

If something doesn't work, the daemon log at ~/.punt-labs/vox/logs/vox.log captures the spawn command, audio session env, exit code, elapsed time, and player stderr — enough detail to diagnose most failures without any extra tooling.

Upgrading

uv tool upgrade punt-vox replaces the wheel on disk, but it does not restart the long-running voxd daemon. Until you cycle the daemon, any change that touches daemon behavior — new WebSocket fields, new dedup semantics, new CLI flags that voxd has to parse — will silently be ignored by the old process. Always restart the daemon after an upgrade:

# macOS or Linux — identical command now
uv tool upgrade punt-vox
vox daemon restart

Run vox daemon restart as your normal user, not under sudo. The command refuses to run as root and prompts for sudo internally only for the two service-manager calls (systemctl/launchctl) that actually need it. It stops voxd via the service manager, waits for the port to free, starts it again, and polls the authenticated health endpoint until the new process is confirmed running. It prints the new PID and port on success, or points you at ~/.punt-labs/vox/logs/vox.log on failure.

To confirm the daemon and the installed wheel agree:

vox doctor

vox doctor now reports the running daemon version alongside the reachability check. When the running daemon does not match the wheel installed on disk, doctor emits a yellow ⚠ Daemon: running ... (version X — wheel has Y, run 'vox daemon restart' to refresh) warning. Exit code stays 0 — the daemon is still functional — but the warning catches stale daemons at smoke-test time instead of in production.

Doctor also inspects ~/.config/systemd/user/vox.service on Linux if it exists. An earlier install layout left a user-level unit behind with ExecStart=.../vox serve, a subcommand that no longer exists in the CLI; any surviving file crash-loops on the systemd restart schedule. Doctor fails loudly with a remediation hint when the referenced subcommand is not in the current CLI, and vox daemon install now removes the stale unit automatically on upgrade. macOS has no user-level systemd, so the check is gated off there.

Features

  • Spoken notifications --- summaries when tasks finish, chimes when Claude needs input
  • Session vibe --- /vibe sets the mood for all speech. Auto-mode keeps the voice in step with the session --- the agent sets the mood from the conversation, nudged by a periodic reminder: happy when flowing, focused/frustrated/weary when stuck, relieved after a fix. Manual mode lets you set it yourself. ElevenLabs expressive tags ([happy], [frustrated], [sighs], [weary]) color every utterance.
  • Five providers --- ElevenLabs, OpenAI, AWS Polly, macOS say, and Linux espeak-ng. The full experience (natural voice, expressive tags, /vibe) requires ElevenLabs.
  • Opt-in only --- no audio until you enable it, no surprises
  • Voice or chime --- /mute switches to audio tones, no TTS API calls
  • Graceful absence --- if vox isn't installed, Claude Code works exactly as before
  • MCP-native --- runs as a Claude Code plugin with slash commands and hooks
  • Audio daemon --- voxd is a system-level audio server that handles synthesis and playback. Deduplicates audio across sessions, serializes playback, caches synthesis results
  • Background music --- /music on generates a pool of up to 12 distinct instrumental tracks via the ElevenLabs Music API, plays the first at once, and rotates the full pool at zero credits. The agent plays DJ --- vibe-matched pools from a panel with a DJ-booth personality, because vox is partly entertainment by design. Saved pools replay by name and land in ~/Music/vox/<name>/ with ID3 tags. Requires an ElevenLabs paid plan. See Background Music

Python API

vox is also a Python library — the same voxd daemon the plugin and CLI use, driven from your own code (vox install is the only setup):

from punt_vox import VoxClientSync, SynthesisSpec, VoxError

vox = VoxClientSync()  # connects per call — no setup, no teardown

try:
    # Speak text through the daemon (plays on the local audio device):
    vox.synthesize("Build finished", SynthesisSpec(voice="sarah"))

    # ...or get the MP3 bytes to save or stream yourself:
    audio = vox.record("Deploy complete", SynthesisSpec(voice="matilda"))

    # List the voices the active provider offers:
    print(vox.voices())
except VoxError as exc:  # VoxdConnectionError (daemon down) or VoxdProtocolError
    print(f"vox failed: {exc}")

VoxClient is the async equivalent — it connects once and is an async context manager:

import asyncio
from punt_vox import VoxClient, SynthesisSpec

async def main() -> None:
    async with VoxClient() as vox:      # connect on enter, close on exit
        await vox.synthesize("Tests green", SynthesisSpec(voice="sarah"))
        health = await vox.health()     # typed HealthStatus, not a bare dict
        print(health.provider, health.daemon_version)

asyncio.run(main())

Every failure raises a VoxError subclass, and health() / program_* return typed results (HealthStatus, ProgramStatus, …) rather than bare dicts. The public names — VoxClient, VoxClientSync, SynthesisSpec, SynthesizeResult, VoxError, VoxdConnectionError, VoxdProtocolError, HealthStatus, ProgramStatus, CommandOutcome, ProgramSummary, PromptSet — are all exported from the top level (the package ships py.typed). Importing punt_vox pulls no provider SDK or daemon internals, so it stays light in a library context.

Remote Audio

Run Claude Code on a headless server or cloud VM and hear audio on your local machine — point the client at your local voxd by setting VOXD_HOST/VOXD_PORT/VOXD_TOKEN on the remote host (they are client-side). See docs/guide-remote-setup.md for the walkthrough (direct network and SSH tunnel).

Background Music

/music on fills your session with generated instrumental music. It plays the first track the moment it's ready, then --- with no further commands --- generates the rest of the pool (up to 12 distinct tracks) in the background and auto-advances to a different track as each one ends. Once the pool holds 12, generation stops and playback rotates it forever, shuffled and never the same track twice in a row, at zero credits.

You author the tracks: vox is a pipe to the ElevenLabs Music API and never decides what a genre sounds like. On /music on the agent supplies a genre-accurate base prompt plus 12 variations, so a pool is 12 distinct tracks within the style --- not 12 near-clones.

/music on                      # start music in the current style
/music on style techno         # start with a style modifier (persists across calls)
/music on --name focus-beats   # generate and save under a name --- or replay it if it exists
/music next                    # jump to another track now
/music play focus-beats        # replay a saved pool by name --- zero credits
/music list                    # list saved pools
/music                         # show current music state
/music off                     # stop

Each pool is saved under ~/Music/vox/<name>/ --- named by --name, else the style --- with ID3 tags (artist, album, title, genre, track number) on every track, so your generated music shows up in macOS Music.app, Rhythmbox, and other players. Replaying a saved pool, or rotating a full one, costs zero credits; generation runs only while a pool has fewer than 12 tracks.

Requires an ElevenLabs paid plan. Each generated track is ~2,000 credits (~3 minutes of audio), and a fresh pool fills to 12 --- roughly 24,000 credits for a complete pool. Replaying and rotating saved pools is free.

What It Looks Like

Enable notifications

> /vox y

Vox enabled. You'll hear when tasks finish or need approval.
Pick a voice with /unmute <name>.

Get a recap

> /recap

Speaking: "I refactored the authentication module into three files, added
comprehensive tests for the token refresh flow, and fixed a race condition
in the session middleware. All 47 tests pass."

Set the vibe

> /vibe banging my head against the wall

Vibe: banging my head against the wall → [frustrated] [sighs] [manual]

Auto-mode (default) keeps the mood current automatically --- the agent sets it from the conversation, nudged by a periodic reminder: a stretch of getting stuck degrades the voice toward [frustrated] then [weary], and it returns to [happy] (through a [relieved] beat) once things are flowing again.

Switch to chime-only

> /mute

Muted — chimes only.

Chimes are two short notification tones — one for task completion, one for a permission prompt. The session mood colors the spoken voice (via ElevenLabs expressive tags), not the chimes.

Commands

Command Purpose
/vox y Enable vox (chime notifications)
/vox n Disable vox
/vox c Continuous mode (spoken summaries on task completion)
/unmute Enable voice mode (spoken notifications), browse the roster
/unmute matilda Set session voice + enable voice
/mute Chimes only --- no voice
/recap Spoken summary of Claude's last response
/vibe <mood> Set session mood --- voice adapts to match
/vibe auto Auto-detect mood from session signals (default)
/vibe off Disable vibe --- neutral voice
/music on Start generated background music
/music on style techno Start music with a style modifier
/music next Jump to another track now
/music play <name> Replay a saved pool by name (zero credits)
/music list List saved pools
/music off Stop background music

Providers

The full experience --- natural voice with expressive tags that respond to /vibe --- requires ElevenLabs. The other providers are fallbacks for environments where ElevenLabs isn't available.

Provider API Key Default Voice Best For
ElevenLabs ELEVENLABS_API_KEY matilda Recommended. Natural voice, expressive tags via /vibe
OpenAI OPENAI_API_KEY nova Fast notifications, low latency
AWS Polly AWS credentials joanna Natural voice, cost-effective
macOS say samantha Zero-config on macOS, offline
espeak-ng en Zero-config on Linux, offline

Auto-detection order: ElevenLabs > OpenAI > Polly (if AWS credentials valid) > say (macOS) / espeak (Linux).

Per-call API keys for billing isolation

If you maintain multiple provider API keys for cost attribution (for example, separate ElevenLabs keys for different projects), you can pass a per-call override for any vox say invocation. The override is per-call only: never persisted to keys.env, never logged by the daemon, never echoed to stdout, never visible to concurrent requests on the same daemon. Four input paths are supported, from most to least secure:

  1. Environment variable (recommended for scripting):

    export VOX_API_KEY=$(pass show vox/proj_a)
    vox say "billable to project A"
    

    On Linux, VOX_API_KEY is exposed via /proc/<pid>/environ, which is typically only readable by the process owner. macOS has no Linux-style /proc filesystem so env vars are not exposed that way by default, but they are still generally less visible than argv (which ps prints on any shared system). Either way, env vars are materially safer than passing the key literally on the command line.

  2. File (recommended for stored keys):

    vox say "billable to project A" \
      --api-key-file ~/.config/vox/key_project_a.txt
    

    The file should be mode 0600 (owner read/write only). vox warns if any group or other permission bits are set and suggests chmod 600.

  3. Standard input (recommended for password managers):

    pass show vox/proj_a | vox say "billable to project A" --api-key-stdin
    

    Reads one line from stdin. Refuses to read from a tty so a forgotten pipe fails loudly instead of blocking on an interactive prompt.

  4. Command line (demo only — not for real credentials):

    vox say "billable to project A" --api-key sk_demo_key
    

    Warning: --api-key on the command line exposes the value via ps (and, on Linux, /proc/*/cmdline), shell history, and terminal recordings. vox prints a stderr warning whenever you use it. Use one of the other three paths for real credentials.

The four paths are mutually exclusive; specifying more than one is an error. This is not multi-tenant isolation — vox is a single-user tool. The feature is for attributing synthesis cost to the right project within one user's account, not for isolating tenants.

Per-call api_key calls bypass the synthesis cache so every invocation reaches the provider; use anonymous calls (keys.env) for cache hits.

Architecture

Claude Code ◄── stdio ──► vox mcp ── WebSocket ──► voxd :8421
                                                      │
Hook scripts ──► vox hook <event> ── WebSocket ──►    │
                                                      │
Shell        ──► vox say "hi"  ── WebSocket ──►    │
                                                      ▼
                                                   speakers

voxd is a system-level audio daemon. It synthesizes text via TTS providers and plays audio through the speakers. It owns the playback queue (sequential, no overlap), deduplicates identical requests within 5 seconds, and caches synthesis results. It knows nothing about MCP, hooks, projects, or Claude Code.

vox mcp is a lightweight stdio MCP server, one per Claude Code session. It holds session state (voice, vibe, notify mode) in memory and delegates synthesis to voxd over WebSocket. It inherits its working directory from Claude Code and finds .punt-labs/vox/ by walking up from there.

vox hook <event> handlers call voxd for chimes and speech. Hook shell scripts are thin gates per the hooks standard.

vox say and other CLI commands are one-shot WebSocket clients of voxd.

State Paths

voxd runs as a single user (User= in the systemd unit on Linux; a user LaunchAgent that runs as the logged-in user on macOS), so all of its state is per-user, not system-shared. Everything lives under the installing user's home directory — no /etc, no /var, same layout on macOS and Linux.

Purpose Path
Config (API keys) ~/.punt-labs/vox/keys.env
Agent usage guide ~/.punt-labs/vox/CLAUDE.md
Logs ~/.punt-labs/vox/logs/vox.log
Runtime state ~/.punt-labs/vox/run/serve.{port,token}
Cache ~/.punt-labs/vox/cache/
Service unit (Linux) /etc/systemd/system/voxd.service
Service plist (macOS) ~/Library/LaunchAgents/com.punt-labs.voxd.plist

Agent usage guide

vox install writes an agent-facing usage guide to ~/.punt-labs/vox/CLAUDE.md — how to drive the mic MCP tools and the vox slash commands — and registers the line @~/.punt-labs/vox/CLAUDE.md in ~/.claude/CLAUDE.md inside a shared <!-- punt:mandatory-reading --> section. Claude Code resolves that top-level @-import into every session's context, so agents get vox guidance in any project without a per-project edit. The installer rewrites the guide on every install (single source of truth), and the registration is a no-op when already present — it never rewrites ~/.claude/CLAUDE.md unnecessarily. vox uninstall deletes the guide and prunes the import line.

Service Install

vox daemon install    # registers service, writes keys.env, starts voxd

On macOS the install is fully sudo-free: voxd is a user LaunchAgent, so no password is required to install, restart, or uninstall it. On Linux vox prompts once for your sudo password to place the systemd unit file; everything else runs as your normal user. The keys.env file and all other per-user state are created in your home dir with normal user permissions — no chown, no fd tricks, no symlink defenses. The daemon runs as the installing user, not root — it needs audio device access tied to the desktop session.

Upgrading from v3 or v4.0.x? If you had cloud provider keys configured before v3.0.0 (2026-03-29), they will work again automatically after you upgrade. v3 moved voxd's config dir to /etc/vox/ but never migrated your existing ~/.punt-labs/vox/keys.env — this release reverts the path and your pre-v3 keys come back online without any manual intervention.

Session State

Session state (voice, provider, vibe, notify mode) lives in the MCP server's memory. The daemon is stateless with respect to sessions. Per-project config lives in .punt-labs/vox/ as two files: vox.md (tracked, durable preferences) and vox.local.md (gitignored, ephemeral session state like the current vibe and its nudge cadence). The MCP server reads these at startup; hook handlers read and write vox.local.md. The daemon never reads either file.

Daemon Restart

The MCP session (Claude Code ↔ vox mcp) is stdio — unaffected by daemon restarts. The WebSocket connection (vox mcpvoxd) reconnects automatically. No session data is lost.

CLI

vox is also a standalone TTS tool, independent of Claude Code.

vox say "Hello world"                       # Synthesize + play
vox say "Wall broadcast" --once 600         # Dedup identical text within 600s (for N-session broadcasts)
vox record "Hello world" -o hello.mp3          # Synthesize + save
vox record --from segments.json                # From JSON segments file
vox vibe excited                               # Set session mood
vox notify y                                   # Enable notifications
vox notify c                                   # Continuous spoken mode
vox speak n                                    # Chimes only
vox voice matilda                              # Set session voice
vox music on                                   # Start background music
vox music on --style techno                    # Start music with style modifier
vox music next                                 # Jump to another track
vox music play focus-beats                     # Replay a saved pool (zero credits)
vox music list                                 # List saved pools
vox music off                                  # Stop background music
vox status                                     # Current state
vox version                                    # Print version
vox doctor                                     # Check setup
vox install                                    # Install Claude Code plugin + register usage guide
vox mcp                                        # Start MCP server (stdio)
voxd                                           # Start audio daemon
vox daemon install                             # Register voxd as system service + write API keys (prompts once for sudo)
vox daemon status                              # Check if daemon is running

Environment Variables

Variable Description Default
TTS_PROVIDER Force a specific provider auto-detect
TTS_MODEL Model override provider default
VOX_OUTPUT_DIR Output directory ~/Music/vox/
VOXD_HOST Remote voxd host (client) 127.0.0.1
VOXD_PORT Remote voxd port (client) read serve.port file
VOXD_TOKEN Remote voxd auth token (client) read serve.token file
VOXD_BIND voxd bind address (server) 127.0.0.1

Provider API keys (ELEVENLABS_API_KEY, OPENAI_API_KEY, AWS_*) live in ~/.punt-labs/vox/keys.env, not in your shell rc. See Configure providers for the full walkthrough.

vox daemon install also seeds keys.env with any provider keys that happen to be set in the shell that runs the install, so setting them in .envrc or similar before running the installer works too. Either way, edits after install go directly into the file.

Roadmap

Shipped

  • Mic API: unified unmute/record/vibe/who MCP tools with segment-based input
  • Notification layer: /vox y|n|c, /mute, /unmute, /recap, Stop + Notification hooks
  • Multi-provider TTS engine: ElevenLabs, AWS Polly, OpenAI, macOS say, Linux espeak-ng
  • Claude Code plugin: marketplace install, MCP server, slash commands
  • CLI: say, voices, record, vibe, on/off, mute, version, status, doctor
  • Two-channel display: panel summaries with voice/provider context
  • ElevenLabs streaming API for lower time-to-first-audio
  • /vibe with auto, manual, and off modes --- ElevenLabs expressive tags color every utterance
  • Auto-vibe: the agent sets the mood from the conversation, nudged by a periodic reminder --- happy when flowing, focused/frustrated/weary when stuck, relieved after a fix
  • Notification chimes: two flat tones (task done, permission prompt)
  • Audio daemon (voxd): system-level audio server with in-memory playback queue, dedup, synthesis cache, launchd/systemd service management

Coming Soon

Feature What It Does
Per-session voices Each Claude Code session gets its own voice from a pool --- no more five matildas talking at once. /voice to audition and pick.
Codebase-aware audio programs Podcast and audiobook programs whose content is drawn from your codebase's own domain, the technology it uses, or fiction inspired by it --- step back and decompress between sessions instead of burning out.

Documentation

Architecture (PDF) | Design Log | Testing | Changelog

Development

uv sync                 # Install dev tools (auto via [dependency-groups].dev)
uv sync --all-extras    # Also install the `lux` optional extra
make check              # Run all quality gates

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

punt_vox-4.13.0.tar.gz (343.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

punt_vox-4.13.0-py3-none-any.whl (431.5 kB view details)

Uploaded Python 3

File details

Details for the file punt_vox-4.13.0.tar.gz.

File metadata

  • Download URL: punt_vox-4.13.0.tar.gz
  • Upload date:
  • Size: 343.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for punt_vox-4.13.0.tar.gz
Algorithm Hash digest
SHA256 2317d793a333d8ac272f777d0b0875f9c62c6123ecf0909ff0afb8350ad86042
MD5 ddc1920bde5bc6cb1c52589e5ccb947c
BLAKE2b-256 042a8726fc385574b826ba44af92ed149854d70c7d4cdd3648f6528bc8be7193

See more details on using hashes here.

Provenance

The following attestation bundles were made for punt_vox-4.13.0.tar.gz:

Publisher: release.yml on punt-labs/vox

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file punt_vox-4.13.0-py3-none-any.whl.

File metadata

  • Download URL: punt_vox-4.13.0-py3-none-any.whl
  • Upload date:
  • Size: 431.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for punt_vox-4.13.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8f99233601dd471e9dd071212342b8190be2b7fe582a4fc0924a04243adceb93
MD5 a3523110d8a4e2b35c6e31c0709eb683
BLAKE2b-256 4c622e4220a01b616e3297a36b3b20e988ad914e2e44b57f25ada6c63be47fc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for punt_vox-4.13.0-py3-none-any.whl:

Publisher: release.yml on punt-labs/vox

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page