-
Notifications
You must be signed in to change notification settings - Fork 0
Quick Start
Forge is UnleashWP's AI tool + plugin platform for WordPress; it ships with one plugin today, the Changelog Generator. This guide installs Forge and uses that first plugin — from nothing to a WordPress release changelog in about a minute.
npm install -g @unleashwp/ai-forgeThis puts the ai-forge command on your PATH (uwp and forge are aliases). The CLI is plain Node ≥ 18 with zero runtime dependencies; the browser UI ships pre-built.
ai-forge changelog --since 2026-07-15 --until 2026-07-22 --milestone 7.1 --postThat prints a ready-to-edit release-post template: a headline, a count line, the two canonical source links, a highlights placeholder, and the grouped changelog as raw material.
- Drop
--postfor the full technical report. - Add
--jsonfor structured data. - Run
ai-forge -hfor every command.
That's it — no account, no token, no cookie required. Forge reads everything it needs from public GitHub data. A GitHub token and a wordpress.org cookie are optional and only unlock higher rate limits and deep mode — see Connectors.
ai-forge serveOpens a browser UI at http://localhost:4321 with a date-range picker and Copy buttons.
Register Forge once as an MCP server, then just ask Claude Code or Codex:
claude mcp add forge -- npx -y @unleashwp/ai-forge@latest mcp"Give me the WordPress 7.1 release changelog for July 15–22, as a post."
The agent calls Forge's tools and drafts the post grounded in the real PRs and tickets. See Using Forge from Claude & Codex.
- Connectors — raise the GitHub limit to 5,000/h and turn on deep mode.
- The Changelog Tool — all the flags and how the counts are derived.
- Installation — the Claude Desktop one-click bundle and the dev setup.