Title: BatchPilot
Author: Jean Galea
Published: <strong>2026年7月14日</strong>
Last modified: 2026年7月14日

---

プラグインを検索

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

![](https://ps.w.org/batchpilot/assets/icon-256x256.png?rev=3612554)

# BatchPilot

 作者: [Jean Galea](https://profiles.wordpress.org/jeangalea/)

[ダウンロード](https://downloads.wordpress.org/plugin/batchpilot.1.0.0.zip)

 * [詳細](https://ja.wordpress.org/plugins/batchpilot/#description)
 * [レビュー](https://ja.wordpress.org/plugins/batchpilot/#reviews)
 *  [インストール](https://ja.wordpress.org/plugins/batchpilot/#installation)
 * [開発](https://ja.wordpress.org/plugins/batchpilot/#developers)

 [サポート](https://wordpress.org/support/plugin/batchpilot/)

## 説明

BatchPilot is a single plugin that replaces the usual stack of bulk-delete, bulk-
edit, and duplicate-post plugins. Every action is previewed before it runs, can 
be undone, and is recorded in a history log you can re-run.

Three operations on posts, pages, and any registered public post type:

 * Delete. Trash by default, with a separate permanent option.
 * Duplicate. Copies meta, taxonomies, featured image, and optionally child posts.
 * Bulk edit. Change status, author, publish dates, taxonomies, password, comment
   status, or menu order.

Twelve filters narrow the matching set: post type, status, author, date ranges (
modified, published), taxonomy terms, has comments, has featured image, parent, 
children.

Four ways to drive it:

 * Admin UI. Stepper-driven Operations Builder with live preview.
 * WP-CLI. `wp batchpilot delete`, `duplicate`, `edit`, `history`, `undo`, `doctor`.
 * REST API. `/wp-json/batchpilot/v1/*` endpoints with capability-gated permissions.
 * WordPress Abilities API. Each Target × Operation pair is exposed as a registered
   ability so AI agents and other clients can drive operations.

Safety features:

 * Every operation is previewed (count plus sample rows) before it runs.
 * Preview tokens (HMAC-signed, 5-minute TTL) prevent stale state from being executed.
 * Snapshots are written before mutation so Undo restores the previous state.
 * Operations over a configurable threshold (default 100 items) run in the background
   via Action Scheduler.
 * Per-operation capabilities: `batchpilot_delete`, `batchpilot_edit`, `batchpilot_duplicate`,`
   batchpilot_move`, `batchpilot_schedule`. Grant per-role or per-user.

Use cases:

 * Trash old drafts, auto-drafts, or revisions on a schedule.
 * Re-attribute posts from a departing author.
 * Shift publish dates on a backlog.
 * Add or remove taxonomy terms across a content set.
 * Duplicate templates or landing pages.

### Development

Source code, including the un-minified JavaScript sources for the admin app, lives
at https://github.com/jgalea/batchpilot

The compiled assets in `assets/build/` are generated with [@wordpress/scripts](https://www.npmjs.com/package/@wordpress/scripts)
from the sources in `assets/src/`. To rebuild:

    ```
    npm install && npm run build
    ```

PHP dependencies are managed with Composer (`composer install`).

## スクリーンショット

[⌊Operations Builder. Pick a target, add filters, choose an operation, preview, 
execute.⌉⌊Operations Builder. Pick a target, add filters, choose an operation, preview,
execute.⌉[

Operations Builder. Pick a target, add filters, choose an operation, preview, execute.

[⌊Live preview panel showing matched count and sample rows.⌉⌊Live preview panel 
showing matched count and sample rows.⌉[

Live preview panel showing matched count and sample rows.

[⌊History screen with one-click undo and re-run.⌉⌊History screen with one-click 
undo and re-run.⌉[

History screen with one-click undo and re-run.

[⌊Dashboard with quick actions, weekly stats, and environment checks for Action 
Scheduler, Abilities API, and database tables.⌉⌊Dashboard with quick actions, weekly
stats, and environment checks for Action Scheduler, Abilities API, and database 
tables.⌉[

Dashboard with quick actions, weekly stats, and environment checks for Action Scheduler,
Abilities API, and database tables.

## インストール

 1. Upload BatchPilot to `/wp-content/plugins/batchpilot/` or install via the Plugins
    screen.
 2. Activate the plugin.
 3. Open BatchPilot  Operations from the admin sidebar.

## FAQ

### Is everything undoable?

Yes, except a permanent delete (which you have to enable explicitly). Trash, bulk
edits, and duplicates all write before-state snapshots and can be reversed from 
the History screen.

### How long is the history kept?

Configurable in Settings. Default is 90 days. Snapshots older than the retention
window are pruned on a daily cron.

### Will it work on a large site?

Operations exceeding the async threshold (default 100 items) run in the background
via Action Scheduler, batched at 50 items per chunk. The plugin defers to WooCommerce’s
bundled Action Scheduler when present.

### Can AI agents use it?

Yes. With the WordPress Abilities API installed, each Target × Operation pair is
registered as an ability under the `batchpilot` category. Agents can query the catalog,
preview, execute, and undo via the standard abilities surface.

### Does it work with WooCommerce?

WooCommerce HPOS is detected (see the Doctor screen). Direct Woo product/order operations
are on the roadmap; current release covers posts, pages, and any registered public
post type.

### How do I uninstall cleanly?

By default, uninstall leaves your operation history in place. To drop everything
on uninstall, enable Settings  Delete data on uninstall before removing the plugin.

## 評価

このプラグインにはレビューがありません。

## 貢献者と開発者

BatchPilot はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献してい
ます。

貢献者

 *   [ Jean Galea ](https://profiles.wordpress.org/jeangalea/)

“BatchPilot” は3ロケールに翻訳されています。 [翻訳者](https://translate.wordpress.org/projects/wp-plugins/batchpilot/contributors)
のみなさん、翻訳へのご協力ありがとうございます。

[“BatchPilot” をあなたの言語に翻訳しましょう。](https://translate.wordpress.org/projects/wp-plugins/batchpilot)

### 開発に興味がありますか ?

[コードを閲覧](https://plugins.trac.wordpress.org/browser/batchpilot/)するか、[SVN リポジトリ](https://plugins.svn.wordpress.org/batchpilot/)
をチェックするか、[開発ログ](https://plugins.trac.wordpress.org/log/batchpilot/)
を [RSS](https://plugins.trac.wordpress.org/log/batchpilot/?limit=100&mode=stop_on_copy&format=rss)
で購読してみてください。

## 変更履歴

#### 1.0.0

Initial release.

 * Three operations on posts, pages, and any registered public post type: Delete(
   trash or permanent), Duplicate (meta, taxonomies, featured image, optional child
   posts), Bulk Edit (status, author, dates, taxonomies, password, comment status,
   menu order).
 * Thirteen filters: specific IDs, post type, status, author, modified before/after,
   published before/after, taxonomy term, has comments, has featured image, post
   parent, has children.
 * Stepper-driven Operations Builder with live preview, smart widgets per param 
   type, and a destructive-action confirmation guard for unfiltered or large deletes.
 * Snapshot-based undo for every operation except permanent deletes. Full audit 
   history with one-click re-run.
 * Preview tokens (HMAC-signed, 5-minute TTL) prevent stale state from being executed.
 * Async execution via Action Scheduler when matched count exceeds the configurable
   threshold.
 * Surfaces: admin UI, WP-CLI (`wp batchpilot`), REST API (`/wp-json/batchpilot/
   v1/*`), WordPress Abilities API.
 * Post-list integration: row action (“Duplicate with BatchPilot”) and bulk actions
   deep-link into the Operations Builder pre-filled with the selected IDs.
 * Per-operation capability gates: `batchpilot_delete`, `batchpilot_edit`, `batchpilot_duplicate`,`
   batchpilot_move`, `batchpilot_schedule`.
 * Doctor screen and `wp batchpilot doctor` for environment checks.

## メタ

 *  バージョン **1.0.0**
 *  最終更新日 **1週間前**
 *  有効インストール数 **10未満**
 *  WordPress バージョン ** 6.9またはそれ以降 **
 *  検証済み最新バージョン: **7.0.2**
 *  PHP バージョン ** 7.4またはそれ以降 **
 *  言語
 * [Dutch](https://nl.wordpress.org/plugins/batchpilot/)、[English (US)](https://wordpress.org/plugins/batchpilot/)、
   [Japanese](https://ja.wordpress.org/plugins/batchpilot/)、[Spanish (Spain)](https://es.wordpress.org/plugins/batchpilot/).
 *  [プラグインを翻訳](https://translate.wordpress.org/projects/wp-plugins/batchpilot)
 * タグ
 * [bulk delete](https://ja.wordpress.org/plugins/tags/bulk-delete/)[bulk edit](https://ja.wordpress.org/plugins/tags/bulk-edit/)
   [duplicate posts](https://ja.wordpress.org/plugins/tags/duplicate-posts/)[undo](https://ja.wordpress.org/plugins/tags/undo/)
 *  [詳細を表示](https://ja.wordpress.org/plugins/batchpilot/advanced/)

## 評価

レビューはまだ送信されていません。

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

[すべてのレビューを見る](https://wordpress.org/support/plugin/batchpilot/reviews/)

## 貢献者

 *   [ Jean Galea ](https://profiles.wordpress.org/jeangalea/)

## サポート

意見や質問がありますか ?

 [サポートフォーラムを表示](https://wordpress.org/support/plugin/batchpilot/)