bosshogg 2026.5.3

BossHogg — the agent-first PostHog CLI. Feature flags, HogQL queries, insights, dashboards, cohorts, persons, events, experiments, and more — from the terminal or from a Claude Code / Cursor / other coding-agent loop. Ships with a Claude Code skill (~200 idle tokens) that teaches models how to use it.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! BossHogg — agent-first PostHog CLI.
//!
//! Library crate exposes internals for integration tests. Binary consumers
//! should invoke the `bosshogg` executable, not this crate.
//!
//! Module layout mirrors docs/architecture.md.

pub mod analytics;
pub mod cli;
pub mod client;
pub mod commands;
pub mod config;
pub mod error;
pub mod output;
pub mod util;

pub use error::{BosshoggError, Result};