Skip to main content

Akita Sentinel — local AI agent monitoring. Watch your agents, scan new skills before they run.

Project description

Akita Sentinel

Know what your AI agent just did.

PyPI License: MIT CI Python 3.10+ macOS | Windows | Linux

AI agents install tools, read files, make API calls, and run code on your machine.
Most people have no idea what those tools actually do.

Akita watches every tool call your agent makes, scans new skills before they run, and blocks the dangerous ones.


Install

pip install akita-sentinel
akita sentinel start

That's it. Akita discovers your agent frameworks, watches their skill directories, and starts scanning. Your agents never know it's there.

Want the system tray icon and notification popups?

pip install 'akita-sentinel[tray]'
akita tray start

What You Get

Akita Dashboard

Dashboard — real-time agent status, recent activity, and system health at a glance.

Governance Rules

Define what your agents can and can't do. Rules are enforced automatically — the most dangerous actions are blocked before they execute.

Governance Rules

26 built-in rules covering file access, network calls, money transfers, destructive operations, and more.

Trust Center

See exactly which governance rules protect each agent and skill. Connection map shows the relationship between your agents, their skills, and the rules that guard them.

Trust Center

Skills Library

Browse and manage every skill your agents have access to. Risk scores, metadata, and scan results in one place.

Skills Library

Agent Management

Monitor connected agents, test connections, and see protection status for each framework.

Agent Management


Why Akita?

Problem How Akita Helps
New skill installed silently Immediate detection + risk scan
Agent calls a suspicious tool Hook-based governance (blocking for Hermes; advisory alerts for other frameworks)
No audit trail of agent activity Local audit log with 30-day retention
Credentials scattered in plaintext files OS keychain storage (macOS Keychain, Windows Credential Locker)
Different agents, different configs Single sentinel monitors all your agent frameworks

Features

  • Auto-discovery — detects installed agent frameworks automatically
  • Skill scanning — new or modified skills are scanned before they run
  • Governance enforcement — Hermes hook-based blocking for governed tool calls (requires hook to be installed; advisory alerts for other frameworks)
  • 26 built-in rules — file access, network calls, money transfers, destructive operations, off-hours gates, and more
  • Trust center — visual map of which rules protect which agents and skills
  • Local audit log — every event logged to ~/.akita/audit.db with 30-day retention
  • OS keychain — credentials stored in macOS Keychain, Windows Credential Locker, or Linux SecretService (requires libsecret)
  • Cloud pairing — pair with your Akita account for governance rules and remote visibility
  • Cross-platform — macOS and Windows with native system tray; Linux on X11/Wayland desktop environments with D-Bus support
  • Start at login — one command to auto-start on boot (launchd / Registry Run / systemd)

How It Works

┌──────────────────────────────────────────────┐
│  Your Machine                                │
│                                              │
│  ┌───────────┐         ┌──────────────────┐  │
│  │  Hermes   │────────▶│   Tool Call      │  │
│  │  (agent)  │         └──────────────────┘  │
│  └───────────┘                               │
│       │ hooks                                │
│       ▼                                      │
│  ┌──────────────────┐                        │
│  │  Akita Sentinel  │──▶ Scan new skills     │
│  │  (background)    │──▶ Block or allow      │
│  │                  │──▶ Local audit log     │
│  └────────┬─────────┘                        │
│           │                                  │
└───────────┼──────────────────────────────────┘
            │ paired
┌───────────▼─────────────────────────────────┐
│  Akita Cloud                                │
│  (governance rules, remote visibility)      │
└─────────────────────────────────────────────┘

The sentinel hooks into the framework's tool-call pipeline and watches skill directories. Your agent runs normally while Akita monitors from the side.

Supported Frameworks

Framework Status
Hermes Supported — hook-based governance
Claude Code Coming soon
Cursor Coming soon

Adding a new framework requires a discovery config + hook adapter.

Commands

Command Description
akita sentinel start Start watching your agents
akita sentinel stop Stop the sentinel
akita sentinel status Check health and watched agents
akita sentinel events View recent audit log
akita sentinel pair Pair with your Akita account
akita sentinel unpair Remove pairing
akita sentinel enable-autostart Auto-start at login
akita frameworks check Detect installed frameworks
akita tray start Start with tray icon and notifications
akita update Update to latest version
akita config show Show configuration
akita config set <key> <val> Set a config value

System Tray

Install the tray extras for a live status icon and notification popups:

pip install 'akita-sentinel[tray]'
akita tray start
Icon Meaning
Blue shield Watching — all clear
Blue + amber dot Scanning a new skill
Amber shield Warning — suspicious skill detected
Red shield Suspicious activity detected
Grey shield Stopped

Configuration

Settings live in ~/.akita/config.yaml:

akita config show                                        # show current settings
akita config set update.check_interval_hours 12         # check every 12 hours
akita config set update.auto_update true                # auto-install updates
akita config set registration.base_url https://my.url   # set Akita server URL

Auto-update downloads and installs from PyPI using pip. Review the changelog before enabling in security-sensitive environments.

Start at Login

akita sentinel enable-autostart          # headless
akita sentinel enable-autostart --tray   # with tray icon
akita sentinel disable-autostart         # remove
Platform Method Location
macOS launchd Launch Agent ~/Library/LaunchAgents/io.plugpipe.akita-sentinel.plist
Windows Registry Run key HKCU\Software\Microsoft\Windows\CurrentVersion\Run
Linux systemd user service ~/.config/systemd/user/akita-sentinel.service

Security

  • OS keychain for credential storage — no plaintext secrets on disk
  • Automatic keychain migration from file-based credentials on first access
  • Unix socket IPC with owner-only permissions (0600)
  • Cryptographically random single-use pairing codes
  • Signed governance tokens (JWT, JWKS-validated) for cloud enforcement
  • Atomic file writes to prevent partial-state corruption
  • TLS certificate verification on all outbound connections
  • Path traversal guards on all filesystem operations
  • Symlink protection (O_NOFOLLOW) on security-sensitive file reads

Files

Path Description
~/.akita/audit.db Local audit log (SQLite, 30-day retention)
~/.akita/sentinel.sock IPC socket (owner-only)
~/.akita/config.yaml User configuration
~/.akita/credentials.json Credentials (migrated to keychain on first access)

Developer Install

git clone https://github.com/PlugPipe/akita-sentinel.git
cd akita-sentinel
pip install -e ".[dev,tray]"
pytest tests/ -x -v

License

MIT — see LICENSE.

Little Snitch is a registered trademark of Objective Development Software GmbH. Not affiliated.

Links

  • Akita — Personal AI agent hub
  • PlugPipe — AI-native infrastructure

Detection Accuracy Notice

No detection system is perfect. Akita Sentinel layers rule-based, heuristic, signature, behavioural-contract, allow/deny-list, and audit-logging techniques to reduce prompt-injection and tool-misuse risk — but it will miss some threats and may flag some safe activity. The software is provided "AS IS" / "AS AVAILABLE" with no warranty. By installing it you accept the residual risk; first-run requires explicit acknowledgement of the detection disclaimer. Full disclaimer also available via the tray menu > Detection Disclaimer.

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

akita_sentinel-0.1.0.tar.gz (275.7 kB view details)

Uploaded Source

Built Distribution

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

akita_sentinel-0.1.0-py3-none-any.whl (294.8 kB view details)

Uploaded Python 3

File details

Details for the file akita_sentinel-0.1.0.tar.gz.

File metadata

  • Download URL: akita_sentinel-0.1.0.tar.gz
  • Upload date:
  • Size: 275.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for akita_sentinel-0.1.0.tar.gz
Algorithm Hash digest
SHA256 9a732967e38ada407b2bc403a9d6d101bf1d2a3eed52685393d67122cb868017
MD5 0bdedb6be4b4c837c39e5a53ee74508b
BLAKE2b-256 c9806323330ae4f3116a15a7067732574dc5314793509ef55fcc9f5124455d19

See more details on using hashes here.

Provenance

The following attestation bundles were made for akita_sentinel-0.1.0.tar.gz:

Publisher: publish-pypi.yaml on PlugPipe/akita-sentinel

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

File details

Details for the file akita_sentinel-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: akita_sentinel-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 294.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for akita_sentinel-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d4fee5f70011a3ff57321c37d1774b930f8db9d7ddeefc579a07af1ad26a21e6
MD5 728ca134fa1ef601928e6380734c95b6
BLAKE2b-256 24af48ee94257fa80b0cd42081611967f6e846dc54c5cbaaee4049743f7b53e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for akita_sentinel-0.1.0-py3-none-any.whl:

Publisher: publish-pypi.yaml on PlugPipe/akita-sentinel

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