Module — 5 operations

System

Connection, environment, integration health, one operation’s schema on demand, and the change ledger.

Nothing extra to install. This module runs on core WordPress alone.

Cue 2 — first light

Before you call anything here

Note 1

Start every session with system-connection, then system-integrations. Two calls tell an agent what is actually available before it plans anything.

Note 2

system-operation-schema returns one named operation’s full input and output schema, so an agent fetches the schema it is about to use instead of loading all of them.

Note 3

audit-list is the same ledger the plugin’s Activity screen shows: what changed, when, by whom, and what can still be rolled back.

Reads — 5

What it can tell you

A read still asks WordPress for a capability against the object. There is no anonymous read anywhere in the surface.

system-connection

system-read

Confirms the gateway is reachable and reports who is authenticated

needs read

Read
system-environment

system-read

WordPress and PHP versions, theme, post types, taxonomies

needs manage_options

Read
system-integrations

system-read

Health of every optional integration: Active, Inactive, VersionBlocked

needs manage_options

Read
system-operation-schema

system-read

Returns one named operation's full input and output schema, so an agent fetches only the schema it is about to use

needs read

Read
audit-list

system-read

Reads the change ledger: what changed, when, by whom, and what can be rolled back

needs manage_options

Read
Cue 5 — day

Keep reading