You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add Continue output
* Revert "Update generated skills from shared Studio guidance"
This reverts commit d02642d, reversing
changes made to 4ccad40.
* Repair Continue plugin branch after trunk merge
Copy file name to clipboardExpand all lines: README.md
+36-1Lines changed: 36 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
Shared source for WordPress-focused agent skills and plugin packaging.
4
4
5
-
This repo currently packages shared skills for Codex, Claude Code, Cursor, GitHub Copilot, Gemini, and Roo Code as separate plugin outputs:
5
+
This repo currently packages shared skills and setup files for Codex, Claude Code, Cursor, Continue, GitHub Copilot, Gemini, and Roo Code as separate outputs:
6
6
7
7
- prefers the WordPress Studio MCP server for site management, screenshots, and block validation
8
8
- falls back to the Studio CLI through a shared Studio skill when MCP is unavailable
@@ -14,6 +14,7 @@ This repo currently packages shared skills for Codex, Claude Code, Cursor, GitHu
14
14
- can optionally generate three design preview directions before building a site theme
15
15
- bundles a plugin-local telemetry MCP server so workflow events do not depend on Studio shipping telemetry support
16
16
- keeps skills shared so other surfaces can reuse them later
17
+
- includes Continue-native setup files for WordPress.com rules, prompts, and MCP configuration
17
18
- adds Roo Code workspace rules and project MCP config without introducing a Roo-specific backend service
18
19
19
20
## Testing
@@ -103,6 +104,19 @@ claude --plugin-dir ./plugins/claude-code
103
104
- running an audit request
104
105
6. For workflow telemetry coverage, make sure the generated `wordpress-telemetry` MCP server starts alongside `wordpress-studio`.
105
106
107
+
### Test in Continue
108
+
109
+
1. Review the generated Continue output in `./plugins/continue`.
The generated Continue MCP guidance uses the same existing `studio mcp` entrypoint as the shared WordPress.com MCP substrate. Continue-specific files cover rules, prompts, and MCP block placement; they do not define a separate backend service.
270
+
236
271
The generated Copilot MCP config launches both `studio mcp` and the bundled `wordpress-telemetry` MCP server through VS Code's MCP configuration.
description: WordPress.com guidance for Continue Agent, Chat, and Edit requests.
5
+
---
6
+
7
+
# WordPress.com
8
+
9
+
- Use the product name WordPress.com in user-facing text.
10
+
- Prefer the WordPress.com and Jetpack MCP tools for site discovery, site changes, screenshots, validation, and WordPress operations when they are available.
11
+
- Use Continue Agent mode for tasks that need MCP tools.
12
+
- Preserve existing project conventions and make the smallest complete change.
13
+
- For themes, blocks, plugins, and content changes, inspect the current WordPress project structure before editing.
14
+
- Use WordPress APIs, Gutenberg block markup, and WP-CLI-compatible operations instead of custom one-off storage or service layers.
15
+
- Explain whether a recommendation depends on Continue configuration or the shared WordPress.com MCP substrate.
This output shows how to configure the Continue IDE assistant for WordPress.com work using Continue-native configuration files.
4
+
5
+
Continue does not install this repository as a plugin. Instead, copy the example files into your Continue workspace or user configuration:
6
+
7
+
-`.continue/rules/wordpress-com.md` contains WordPress.com instructions for Agent, Chat, and Edit modes
8
+
-`.continue/prompts/create-wordpress-com-site.md` adds a reusable slash-command prompt for new site work
9
+
-`.continue/prompts/audit-wordpress-com-project.md` adds a reusable slash-command prompt for review work
10
+
-`.continue/mcpServers/wordpress-com.yaml` shows the MCP server block Continue can load in Agent mode
11
+
-`config.yaml` shows the equivalent user-level `~/.continue/config.yaml` snippet
12
+
13
+
## Setup
14
+
15
+
1. Install Continue in VS Code or JetBrains.
16
+
2. Copy the example `.continue/` directory from this folder into the root of the project you want Continue to help with.
17
+
3. Open Continue's local config at `~/.continue/config.yaml` and merge in the relevant parts of `config.yaml` if you prefer user-level configuration.
18
+
4. Keep using the existing WordPress.com and Jetpack MCP flow. The example MCP block launches `studio mcp`, matching the shared WordPress.com MCP substrate used by the other outputs in this repository. If your environment exposes the WordPress.com or Jetpack MCP bridge through a different command, replace only the `command` and `args` values with that existing entrypoint.
19
+
5. Use Continue Agent mode when you need MCP tools; Continue exposes MCP tools to Agent mode.
20
+
21
+
## Continue-specific pieces
22
+
23
+
These files are specific to Continue:
24
+
25
+
- local rule files under `.continue/rules/`
26
+
- local prompt files under `.continue/prompts/` with `invokable: true`
27
+
- local MCP server blocks under `.continue/mcpServers/`
0 commit comments