Statuskit
БесплатноНе проверенSelf-hosted status page with incident timeline and subscribers
Описание
Self-hosted status page with incident timeline and subscribers
README
STATUSKIT
Self-hosted status page with incident timeline and subscribers
PyPI CI License: COCL 1.0 Suite
DevOps & Observability — status, synthetics, alerts, and cloud cost.
pip install cognis-statuskit
statuskit scan . # → prioritized findings in seconds
🔎 Example output
Real, reproducible output from the tool — runs offline:
$ statuskit-emit --version
statuskit 0.1.0
$ statuskit-emit --help
usage: statuskit [-h] [--version] [--format {table,json}]
{status,uptime,incidents,subscribers,check,notify} ...
Self-hosted status page engine.
positional arguments:
{status,uptime,incidents,subscribers,check,notify}
status status report
uptime uptime report
incidents incidents report
subscribers subscribers report
check check report
notify resolve subscriber notify targets
options:
-h, --help show this help message and exit
--version show program's version number and exit
--format {table,json}
Blocks above are real
statuskitoutput — reproduce them from a clone.
Sample result format (illustrative values — run on your own data for real findings):
{
"status": "ok",
"results": [
{
"id": "1234567890",
"title": "Example Incident 1",
"description": "This is an example incident.",
"severity": "high",
"created_at": "2023-02-20T14:30:00Z"
},
{
"id": "2345678901",
"title": "Example Incident 2",
"description": "This is another example incident.",
"severity": "medium",
"created_at": "2023-02-21T10:15:00Z"
}
]
}
Contents
- Why statuskit? · Features · Quick start · Example · Architecture · AI stack · How it compares · Integrations · Install anywhere · Related · Contributing
Usage — step by step
statuskit reads a status-page JSON config and reports component health, uptime, incidents, and subscriber notifications. Exit codes: 0 ok, 1 findings (non-operational / active incidents on check), 2 usage/error.
Install
pip install statuskitPrint overall + per-component status from a config file:
statuskit status config.jsonInspect uptime and incidents for the same config:
statuskit uptime config.json statuskit incidents config.jsonRead machine-readable output with
--format json(works on every subcommand) and pipe into tooling:statuskit --format json status config.json | jq '.overall_status'Gate automation/CI with
check— it exits non-zero when the page is not fully operational or has active incidents:statuskit check config.json || echo "status page degraded"You can also resolve who to page for an incident:
statuskit notify config.json <incident-id>.
Why statuskit?
classic self-host win
statuskit is single-purpose, scriptable, and self-hostable: point it at a target, get prioritized results in the format your workflow already speaks (table · JSON · SARIF), gate CI on it, and let agents drive it over MCP.
Features
✅ Fast, single-purpose CLI
✅ JSON / SARIF output for pipelines
✅ CI fail-gate (
--fail-on)✅ MCP server for AI agents
✅ Runs on Linux/macOS/Windows · Docker · devcontainer
✅ Ports in Python, JavaScript, Go, and Rust (
ports/)
Quick start
pip install cognis-statuskit
statuskit --version
statuskit scan . # scan current project
statuskit scan . --format json # machine-readable
statuskit scan . --fail-on high # CI gate (non-zero exit)
Example
$ statuskit scan .
[HIGH ] STA-001 example finding (./src/app.py)
[MEDIUM ] STA-002 another signal (./config.yaml)
2 findings · risk score 5 · 38ms
Architecture
flowchart LR
IN[disk / memory artifact] --> P[statuskit<br/>parse]
P --> OUT[timeline + IOCs]
Use it from any AI stack
statuskit is interoperable with every popular way of using AI:
MCP server —
statuskit mcp(Claude Desktop, Cursor, Cognis.Studio, uncensored-fleet)OpenAI-compatible / JSON — pipe
statuskit scan . --format jsoninto any agent or LLMLangChain · CrewAI · AutoGen · LlamaIndex — wrap the CLI/JSON as a tool in one line
CI / scripts — exit codes + SARIF for non-AI pipelines
How it compares
| | Cognis statuskit | Statuspal |
|---|:---:|:---:|
| Self-hostable, no account | ✅ | varies |
| Single command, zero config | ✅ | ⚠️ |
| JSON + SARIF for CI | ✅ | varies |
| MCP-native (AI agents) | ✅ | ❌ |
| Polyglot ports (JS/Go/Rust) | ✅ | ❌ |
| Open license | ✅ COCL | varies |
Built in the spirit of Statuspal / Cachet, re-framed the Cognis way. Missing a credit? Open a PR.
Integrations
Pipes into your stack: SARIF for code-scanning, JSON for anything, an MCP server (statuskit mcp) for AI agents, and a webhook forwarder for SIEM/Slack/Jira. See docs/INTEGRATIONS.md.
Install — every way, every platform
pip install "git+https://github.com/cognis-digital/statuskit.git" # pip (works today)
pipx install "git+https://github.com/cognis-digital/statuskit.git" # isolated CLI
uv tool install "git+https://github.com/cognis-digital/statuskit.git" # uv
pip install cognis-statuskit # PyPI (when published)
docker run --rm ghcr.io/cognis-digital/statuskit:latest --help # Docker
brew install cognis-digital/tap/statuskit # Homebrew tap
curl -fsSL https://raw.githubusercontent.com/cognis-digital/statuskit/main/install.sh | sh
| Linux | macOS | Windows | Docker | Cloud |
|---|---|---|---|---|
| scripts/setup-linux.sh | scripts/setup-macos.sh | scripts/setup-windows.ps1 | docker run ghcr.io/cognis-digital/statuskit | DEPLOY.md (AWS/Azure/GCP/k8s) |
Related Cognis tools
probesite — Synthetic uptime and Playwright checks exported to Prometheus
alertmux — Alert dedup, correlation, and routing in front of Grafana / PagerDuty
cloudbill — Multi-cloud cost report, anomaly detection, and FOCUS export
k8scost — Kubernetes cost and rightsizing advisor with no Prometheus dependency
otelbox — One-command OpenTelemetry collector + dashboards bundle
Explore the suite → 🗂️ all 170+ tools · ⭐ awesome-cognis · 🔗 cognis-sources · 🤖 uncensored-fleet · 🧠 engram
Contributing
PRs, new rules, and demo scenarios are welcome under the collaboration-pull model — see CONTRIBUTING.md and SECURITY.md.
⭐ If
statuskitsaved you time, star it — it genuinely helps others find it.
Interoperability
{} composes with the 300+ tool Cognis suite — JSON in/out and a shared
OpenAI-compatible /v1 backbone. See INTEROP.md for the
suite map, composition patterns, and reference stacks.
License
Source-available under the Cognis Open Collaboration License (COCL) v1.0 — free for personal, internal-evaluation, research, and educational use; commercial / production use requires a license ([email protected]). See LICENSE.
Установка Statuskit
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/cognis-digital/statuskitFAQ
Statuskit MCP бесплатный?
Да, Statuskit MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Statuskit?
Нет, Statuskit работает без API-ключей и переменных окружения.
Statuskit — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Statuskit в Claude Desktop, Claude Code или Cursor?
Открой Statuskit на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Statuskit with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
