Title: Clautron
Author: dudaster
Published: <strong>2026 年 6 月 23 日</strong>
Last modified: 2026 年 7 月 1 日

---

搜索插件

![](https://ps.w.org/clautron/assets/banner-772x250.png?rev=3592659)

![](https://ps.w.org/clautron/assets/icon.svg?rev=3592659)

# Clautron

 作者：[dudaster](https://profiles.wordpress.org/dudaster/)

[下载](https://downloads.wordpress.org/plugin/clautron.1.1.0.zip)

 * [详情](https://cn.wordpress.org/plugins/clautron/#description)
 * [评价](https://cn.wordpress.org/plugins/clautron/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/clautron/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/clautron/#developers)

 [支持](https://wordpress.org/support/plugin/clautron/)

## 描述

Clautron is an AI-powered WordPress functionality builder that lets you create workflows,
admin tools, and custom site behaviors from reusable declarative primitives — without
writing code.

Describe what you want in plain language and Clautron generates the configuration.
Features are built from pre-defined, composable building blocks called primitives.

**Key features:**

 * **AI-assisted blueprint generation** — describe functionality in plain language
   and Clautron generates the configuration automatically
 * **Reusable primitives** — build features from pre-defined, composable building
   blocks
 * **Scheduled jobs** — run one-time or recurring automated tasks with cron expressions
 * **Custom reports** — create data queries and display results in the admin area
 * **Safe by design** — a safety policy layer prevents dangerous operations

### External Services

This plugin uses the WordPress AI Client (built into WordPress 7.0+) to generate
blueprint configurations from natural language descriptions. Clautron does not directly
connect to any external AI service.

All AI requests are routed through the WordPress AI Client. The provider that receives
your prompts is determined by the AI provider configured in your WordPress installation’s
AI settings. Please refer to the terms of service and privacy policy of your configured
AI provider.

## 屏幕截图

[⌊AI Assistant — describe the functionality you want in plain language and Clautron
generates a blueprint from primitives.⌉⌊AI Assistant — describe the functionality
you want in plain language and Clautron generates a blueprint from primitives.⌉[

AI Assistant — describe the functionality you want in plain language and Clautron
generates a blueprint from primitives.

[⌊Blueprints — manage saved features, their primitives, triggers, status, and last
run.⌉⌊Blueprints — manage saved features, their primitives, triggers, status, and
last run.⌉[

Blueprints — manage saved features, their primitives, triggers, status, and last
run.

[⌊Primitives — the catalog of composable building blocks, grouped by category.⌉⌊
Primitives — the catalog of composable building blocks, grouped by category.⌉[

Primitives — the catalog of composable building blocks, grouped by category.

[⌊Scheduled Jobs — one-time or recurring tasks defined with cron expressions.⌉⌊Scheduled
Jobs — one-time or recurring tasks defined with cron expressions.⌉[

Scheduled Jobs — one-time or recurring tasks defined with cron expressions.

## 安装

 1. Upload the `clautron` folder to the `/wp-content/plugins/` directory.
 2. Activate the plugin through the **Plugins** menu in WordPress.
 3. Navigate to **Clautron** in the admin menu.
 4. Go to **Settings** and enter your AI provider API key.

## 常见问题

### Which AI providers are supported?

Clautron uses the WordPress AI Client (built into WordPress 7.0+). The provider 
is configured at the WordPress level — go to your WordPress AI settings to choose
and configure a provider. No API keys are stored by this plugin.

### Is my data sent to third-party services?

Only the natural language prompts you type in the AI Assistant are sent to your 
AI provider, via the WordPress AI Client. Clautron does not directly connect to 
any external AI service — all communication is handled by WordPress core. No WordPress
content, posts, users, or site data is transmitted.

### What are primitives?

Primitives are the building blocks of Clautron features — pre-defined, reusable 
units of WordPress functionality such as custom post types, meta fields, admin columns,
scheduled tasks, and more.

### Does this plugin store data in the database?

Yes. Clautron creates its own database tables (prefixed with `wp_clautron_`) to 
store blueprints, conversation history, scheduled jobs, workflow state, and execution
logs. All data is removed if you uninstall the plugin.

### What permissions are required?

Clautron is accessible only to administrators (`manage_options` capability). No 
frontend functionality or public-facing pages are added to your site.

## 评价

此插件暂无评价。

## 贡献者及开发者

「Clautron」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ dudaster ](https://profiles.wordpress.org/dudaster/)

[帮助将「Clautron」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/clautron)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/clautron/)，查看[SVN仓库](https://plugins.svn.wordpress.org/clautron/)，
或通过[RSS](https://plugins.trac.wordpress.org/log/clautron/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/clautron/)。

## 更新日志

#### 1.1.0

 * Added Elementor widget primitive — create custom Elementor widgets from blueprints
   with full controls and template rendering.
 * Added WordPress widget primitive — create classic sidebar widgets from blueprints
   with text, textarea, select, number, URL, and checkbox controls.
 * Fixed missing nonce on the New Widget link in the Widgets admin page.
 * Updated admin menu icon to a custom SVG logo.

#### 1.0.9

 * Hardened write_option primitive: added comprehensive denylist blocking WordPress
   core options and any option name containing sensitive substrings (password, secret,
   api_key, token, salt, private_key).
 * Hardened read_option primitive: added denylist blocking reads of auth keys, salts,
   passwords, and API credential options to prevent exposure of sensitive data.

#### 1.0.8

 * Migrated AI integration to WordPress AI Client (WordPress 7.0+) — removed direct
   Anthropic, OpenAI, Grok, and Ollama provider integrations.
 * Added missing nonce checks to handle_delete_blueprint, handle_rollback_version,
   handle_get_blueprint_preview AJAX handlers.
 * Added nonce to admin list table filter (primitive-ui) and verified on parse_query.
 * Fixed unsafe SQL in DB uninstall and migration: DROP TABLE, SHOW COLUMNS, ALTER
   TABLE now use wpdb::prepare() with %i placeholder.
 * Updated minimum WordPress requirement to 7.0.

#### 1.0.7

 * Fixed SQL query builders: replaced dynamic WHERE/ORDER concatenation with fully
   literal SQL strings and bypass conditions to satisfy WordPress.DB.PreparedSQL.
   NotPrepared.
 * Moved tests/ directory outside the plugin folder (development-only, not distributed).
 * Removed stray .DS_Store file.

#### 1.0.6

 * Fixed EscapeOutput: use JSON_HEX_TAG instead of str_replace for JSON-LD script
   output.
 * Fixed SQL preparation: refactored query/aggregate builders to use %i table placeholder
   and single prepare() call with explicit placeholders.
 * Fixed input handling: replaced direct $_GET/$_POST access with filter_input()
   throughout.
 * Renamed non-prefixed page-scope variables to use clautron_ prefix.

#### 1.0.4

 * Replaced all external policy deep-links with root domain URLs to avoid Cloudflare-
   blocked automated checks.

#### 1.0.3

 * Updated external service URLs in readme (OpenAI policy links).
 * Confirmed compatibility with WordPress 7.0.

#### 1.0.2

 * Security: added explicit nonce checks in all AJAX handlers.
 * Security: added capability checks in admin page callbacks.
 * Removed create_user primitive per wp.org review guidelines.
 * Author URI updated to WordPress.org profile.

#### 1.0.0

 * Initial release.

## 额外信息

 *  版本 **1.1.0**
 *  最后更新：**1 周前**
 *  活跃安装数量 **不到10**
 *  WordPress 版本 ** 7.0 或更高版本 **
 *  已测试的最高版本为 **7.0**
 *  PHP 版本 ** 8.1 或更高版本 **
 *  语言
 * [English (US)](https://wordpress.org/plugins/clautron/)
 * 标签
 * [AI](https://cn.wordpress.org/plugins/tags/ai/)[automation](https://cn.wordpress.org/plugins/tags/automation/)
   [blueprints](https://cn.wordpress.org/plugins/tags/blueprints/)[No-code](https://cn.wordpress.org/plugins/tags/no-code/)
   [workflow](https://cn.wordpress.org/plugins/tags/workflow/)
 *  [高级视图](https://cn.wordpress.org/plugins/clautron/advanced/)

## 评级

尚未提交反馈。

[Your review](https://wordpress.org/support/plugin/clautron/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/clautron/reviews/)

## 贡献者

 *   [ dudaster ](https://profiles.wordpress.org/dudaster/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/clautron/)