AI Valve
Control, meter, and permission-gate AI usage from plugins that connect through the WordPress 7 AI connector.
Heavily inspired by the WordPress AI Connectors Need More Friction, Not Less article.
Works with WordPress 7 RC2. Tested using WordPress AI, Virtual Media Folders AI Organizer and the AI Provider for Azure OpenAI.
Features
Section titled “Features”- Per-plugin access control — Allow or deny individual plugins from making AI requests.
- Token budgets — Set daily and monthly token limits per plugin and globally.
- Context restrictions — Control which execution contexts (admin, frontend, cron, REST, AJAX, CLI) may trigger AI calls.
- Usage dashboard — See token consumption at a glance with summary cards, progress bars, and per-plugin breakdowns.
- Request logging — Every AI request is logged with provider, model, capability, tokens, and caller attribution.
- Budget alerts — Admin notices and optional email when usage approaches or exceeds limits.
- Automatic updates — Receives updates directly from GitHub releases.
Requirements
Section titled “Requirements”- WordPress 7.0+
- PHP 8.3+
- A configured AI provider in Settings → Connectors
Installation
Section titled “Installation”- Download
ai-valve.zip - Upload via
Plugins → Add New → Upload Plugin - Activate the plugin through the WordPress admin
- Go to Settings → AI Valve to configure.
The plugin updates itself automatically via GitHub releases using plugin-update-checker.
From source
Section titled “From source”git clone https://github.com/soderlind/ai-valve.gitcd ai-valvecomposer installAfter activation, AI Valve intercepts all calls made through wp_ai_client_prompt(). Navigate to Settings → AI Valve:
- Dashboard — Token usage for today and this month, per-plugin access/budget controls, provider breakdown, and recent requests.
- Settings — Master switch, default policy, context restrictions, global budgets, and alert configuration.
- Logs — Filterable request log with pagination.
How It Works
Section titled “How It Works”AI Valve hooks into three WordPress 7 AI connector events:
| Hook | Purpose |
|---|---|
wp_ai_client_prevent_prompt | Gate requests — evaluate policy |
wp_ai_client_before_generate_result | Insert a pending log row with caller attribution |
wp_ai_client_after_generate_result | Update the pending row with token usage and status |
A pending log row is created before the AI provider is called. If the provider throws (auth error, timeout, bad deployment), a shutdown handler marks the row as error so failed requests are never lost.
Caller attribution uses debug_backtrace() to identify which plugin initiated the AI request.
When a request is blocked, the calling plugin receives a WP_Error with code prompt_prevented and the denial reason is logged. See docs/how-blocking-works.md for the full explanation.
How do I block all plugins and only allow specific ones?
Section titled “How do I block all plugins and only allow specific ones?”- Go to Settings → AI Valve → Settings.
- Set the Default policy to Deny.
- Switch to the Dashboard tab.
- In the Per-plugin access table, set the plugins you want to allow to Allow.
Only explicitly allowed plugins will be able to make AI requests; everything else is denied by default.
Development
Section titled “Development”# PHP (PHPUnit 11 + Brain Monkey)composer installvendor/bin/phpunit
# JavaScript (Vitest)npm installnpx vitest runProject structure
Section titled “Project structure”ai-valve.php Bootstrapclass-github-updater.php GitHub release updatersrc/ Plugin.php Hook registration orchestrator Settings/Settings.php Options read/write/sanitize Interceptor/ RequestInterceptor.php WP 7 AI hook wiring + pending-row logging PolicyEngine.php Allow/deny/budget evaluation CallerDetector.php Backtrace → plugin slug Tracking/ LogRepository.php Custom DB table CRUD UsageTracker.php Rolling token counters Admin/AdminPage.php Settings page (dashboard, settings, logs) Alert/AlertManager.php Budget threshold notices + email REST/UsageController.php REST API endpointsLicense
Section titled “License”GPL-2.0-or-later — see LICENSE.
📦 Source: soderlind/ai-valve · Edit on GitHub