feat: add wordvibe_build_page (Word Page Builder over MCP)

Wraps the site tool wpb_build_page: build or update a Word Page from {kind, html} sections. The page lands as a native Word Page (payload in post meta, builder-rendered), so it stays editable and undoable in the builder. Also documents the builder tools in the bundled skill and README.
This commit is contained in:
2026-09-22 01:59:54 +03:00
parent ab1cfc88da
commit 6eeb8b9087
6 changed files with 103 additions and 0 deletions
+1
View File
@@ -65,6 +65,7 @@ def register(ctx):
("wordvibe_write_file", schemas.WRITE_FILE, tools.write_file),
("wordvibe_edit_file", schemas.EDIT_FILE, tools.edit_file),
("wordvibe_search", schemas.SEARCH, tools.search),
("wordvibe_build_page", schemas.BUILD_PAGE, tools.build_page),
]
for name, schema, handler in registry: