
內容簡介
ComputeLib Blog Genie AI 是一款連接 WordPress 或 WooCommerce 網站與後端服務的外掛,能夠直接在 WordPress 控制台中嵌入應用程式,簡化內容生成與管理流程。
【主要功能】
• 瀏覽產品目錄與文章
• 從產品生成部落格文章
• 設定內容偏好與目標受眾
• 審核生成的文章狀態
• 使用 AI 改進草稿內容
• 編輯豐富的文字編輯器
外掛標籤
開發者團隊
📦 歷史版本下載
原文外掛簡介
ComputeLib Blog Genie AI connects your WordPress or WooCommerce site to the backend service and embeds the application directly in your WordPress admin — no separate login, no copy-pasting content between tabs.
On activation the plugin registers your site with the service and receives a store API key. Every request the admin app makes is then proxied server-side through WordPress, so your browser never has to talk to the backend cross-origin and the API key never leaves your server.
What you can do
Browse your catalogue — the dashboard lists your WooCommerce products (or your posts on a plain WordPress install) with search, sorting and pagination.
Generate blogs from products — generate an article for one product, or select several products and generate in bulk.
Set your content preferences — niche/topic, comma-separated keywords, tone of voice, language and target age group are applied to every generation.
Review before anything goes live — generated articles land in Generated Blogs with a live status (generating, pending, improving, approved, rejected). Nothing is published without your approval.
Improve with AI — send a draft back for another AI pass with your own instructions.
Edit in a rich text editor — fix wording, headings or formatting yourself before approving.
Publish or schedule to many destinations — pick which connected platforms each approved article goes to, and optionally set a publish time per platform.
Track usage — remaining credits and plan limits (blogs generated, AI improvements used) are shown in the app and enforced by the backend.
Live progress updates — a WebSocket/Socket.IO connection streams generation progress into the admin screen.
Supported publishing destinations
WordPress, Medium, Ghost, Blogger, LinkedIn, Hashnode, Wix, Shopify, BigCommerce, HubSpot, Google Docs, Reddit, Google My Business, Tumblr, Dev.to, X/Twitter, Instagram and Notion.
Options created
blog_genie_ai_consumer_key — generated ck_… publishing key
blog_genie_ai_consumer_secret — generated cs_… publishing secret
blog_genie_ai_store_api_key — key returned by the backend; sent as X-Store-Api-Key
blog_genie_ai_platform_id — woocommerce or wordpress, kept in sync on each load
blog_genie_ai_synced_platform_id — platform type at the last successful backend sync
External services
This plugin connects to the ComputeLib Blog Genie AI service, an external API operated by ComputeLib and hosted at https://proxy-outbound2.helpusbloom.com
The service performs the AI article generation and the publishing to third-party destinations. The plugin is a client for that service and does not function without it. No data is sent before the plugin is activated.
What is sent, and when:
On activation, and each time the plugin’s admin screen is opened: your site name, your site URL, the site administrator email address, the detected platform type (“wordpress” or “woocommerce”) and a randomly generated access token pair. This registers your site with the service and returns the store API key used to authenticate later requests.
When you generate an article, in bulk or for a single item: the selected product or post data (title, description, price, category and image URLs) together with the content preferences you set (topic, keywords, tone, language, target age group).
When you request an AI improvement: the article identifier and the instructions you type.
When you view, edit, approve, reject or delete generated articles: the article identifier and, when editing, the article content.
When you connect a publishing destination: the API credentials you enter for that destination, so the service can publish on your behalf.
When you open a plan upgrade: the name of the plan you selected, to start a Stripe checkout session.
While an article is generating: the plugin holds an authenticated Socket.IO connection to the same host to stream progress into the admin screen.
All of the above are sent from your server, not from your browser. Requests are proxied through this plugin’s own REST routes so that the store API key never leaves your server.
This service is provided by ComputeLib.
Terms of Service: https://computelib.com/terms-of-service.html
Privacy Policy: https://computelib.com/privacy-policy.html
Source code
The admin interface is a React application. The plugin ships the compiled bundle
in dist/assets/, and the complete, unminified source for that bundle is included
in the source/ directory of this plugin. No separate download is required.
To rebuild the bundle from the included source:
Install Node.js 18 or newer.
From the source/ directory, install the dependencies:
npm install
Build the application:
npm run build
Copy the generated source/dist/assets/*.js and *.css files into the plugin’s
dist/assets/ directory, replacing the existing files.
The build uses Vite (see source/vite.config.ts) and TypeScript. Environment
variables are documented in source/.env.example. All third-party libraries are
declared in source/package.json and are installed from the public npm registry.
