The marketplace for AI agents on WordPress. Build once, sell to 500K+ WordPress sites. Earn 70% revenue share. Zero upfront cost.
The Agentic Plugin transforms WordPress into an AI-native platform. Build autonomous AI agents that handle repetitive tasks, create content, manage commerce, and more.
This is the gold rush moment for WordPress developers.
If you've built a plugin or theme, you already know the process. Now harness AI reasoning to solve WordPress problems at scale.
- 500K+ WordPress sites waiting for AI-powered agents
- 70% revenue share β Highest in the WordPress ecosystem
- Zero upfront cost β Build, deploy, earn
- Passive income potential β Agents sell in the background ($12K+/year per agent)
- Open-source community β Transparent, collaborative, GPL v2 licensed
cd wp-content/plugins
git clone https://github.com/renduples/agentic-plugin.git
# OR manually upload the ZIP to WordPress admin- Go to WordPress Admin β Plugins
- Activate Agentic Core
- Go to Agentic β Settings
- Add your OpenAI/Anthropic API key
- Enable your first agent
- Admin Panel: Chat with agents β Agentic β Agent Chat
- Frontend: Use
[agentic_chat]shortcode on any page - REST API: POST to
/wp-json/agent/v1/chat
That's it. Your first AI agent is live.
Agentic comes with 10 pre-built agents to jumpstart development:
| Agent | Use Case | Revenue Potential |
|---|---|---|
| SEO Analyzer | Automatic on-page SEO audits | $29-49/month |
| Content Assistant | AI-powered post drafting & optimization | $39-59/month |
| Product Describer | WooCommerce product descriptions | $29-39/month |
| Social Media Agent | Schedule & auto-compose social posts | $49-79/month |
| Code Generator | Custom code generation for devs | $49-99/month |
| Theme Builder | Quick WordPress theme customization | $39-69/month |
| Security Monitor | AI vulnerability scanning | $49-99/month |
| Comment Moderator | Smart spam detection & responses | $19-29/month |
| Agent Builder | Visual agent builder (meta) | $99-199/month |
| Developer Agent | Your own AI coding assistant | Free/Internal |
Example: Price your SEO Analyzer at $29/month. Get 50 customers. Earn $20.30/month Γ 12 = $243.60/year per customer = $12,180/year total.
- Multi-model support: OpenAI, Anthropic, XAI, local LLMs
- Built-in security: Sandboxed execution, approval workflows
- Reasoning engine: Agents explain their logic, not just generate outputs
- Response caching: Reduce API costs while maintaining freshness
- Extend Agent_Base: Simple PHP class inheritance (like plugins)
- Full WordPress API access: Call any WordPress function safely
- Rich tooling: 20+ pre-built tools (file I/O, API calls, data queries)
- Audit logging: Every agent action is logged and auditable
- Stripe integration: Automatic payouts to your account
- Usage analytics: Track installs, ratings, active users
- Version management: Auto-update agents across all installations
- Developer dashboard: Real-time earnings and performance metrics
agentic-core.php (Plugin entry point)
βββ includes/
β βββ class-agent-base.php (Extend this)
β βββ class-agent-controller.php (Orchestration)
β βββ class-openai-client.php (LLM integration)
β βββ class-audit-log.php (Compliance)
β βββ class-approval-queue.php (Safety)
β βββ ... (10+ more core classes)
βββ library/ (Pre-built agents)
β βββ seo-analyzer/agent.php
β βββ content-assistant/agent.php
β βββ social-media/agent.php
β βββ ... (10 total)
βββ admin/ (Dashboard UI)
βββ templates/
βββ chat-interface.php (User interface)
<?php
/**
* Agent Name: My Custom Agent
* Description: Does something awesome
* Version: 1.0.0
* Author: You
* License: GPL v2 or later
*/
namespace Agentic\Agents;
class My_Custom_Agent extends \Agentic\Agent_Base {
public function get_name(): string {
return 'My Custom Agent';
}
public function get_description(): string {
return 'Solves a specific WordPress problem with AI';
}
public function get_tools(): array {
return [
'search_posts' => 'Search WordPress posts by keyword',
'analyze_content' => 'AI analysis of post content',
'update_post' => 'Update post with AI suggestions',
];
}
public function handle_request(string $input): string {
// Your agent logic here
return $this->call_llm($input);
}
}Next steps:
- Add tools to handles specific tasks
- Test in WordPress admin
- Submit to marketplace (agentic-plugin.com/submit-agent/)
- Start earning
Quick earnings calculator:
Agent Price $29-99/month
Expected Customers (Year 1) 10-100
Your Commission 70%
Annual Potential $2,436 - $82,320
Real examples from our pre-built agents:
- SEO Analyzer: Adopted by 500+ sites = $121,800/year
- Content Assistant: 1,200+ sites = $291,600/year
- Social Media Agent: 300+ sites = $64,800/year
- β Sandboxed execution β Agents run in isolated contexts
- β Capability-based permissions β Fine-grained access control
- β Approval workflows β Sensitive actions require review
- β Audit logging β Every action is tracked
- β Rate limiting β Prevent abuse
- β GDPR-ready β Privacy by design
Roadmap and docs live on agentic-plugin.com. Core sections:
- Roadmap Overview
- Executive Summary
- Core Architecture
- Backend Capabilities
- Frontend Capabilities
- Plugin Architecture
- Security & Guardrails
- Data Flow Architecture
- REST API Specification
- Use Cases
- Migration Path
- Discussion Points
Quick links:
We welcome contributions! Here's how:
- Build an agent and test it thoroughly
- Improve core β Submit PRs to issues
- Report bugs β Open an issue with reproduction steps
- Suggest features β Use GitHub Discussions
- Improve docs β Help other developers succeed
Contributor guidelines:
- Follow WordPress coding standards
- Include tests and documentation
- GPL v2 or later only
- No external phone-home functionality
- Open issues: https://github.com/renduples/agentic-plugin/issues
- Join discussions: https://github.com/renduples/agentic-plugin/discussions
- Ask Agent (product Q&A): https://agentic-plugin.com/agent-chat/
- WordPress 6.4 or higher
- PHP 8.1 or higher
- API Key (OpenAI, Anthropic, or XAI)
- cURL for external API calls
Optional (for full functionality):
- Stripe account (to accept payments)
- Git (for agent version control)
Start with these quick wins:
- Use a pre-built agent (5 min) β Enable one of the 10 included agents
- Customize an agent (15 min) β Modify an existing agent slightly
- Build your own agent (45 min) β Create a simple custom agent
- Publish your agent (10 min) β Submit to marketplace and start earning
Reference guides:
Community agents in the marketplace:
- Invoice Generator β AI creates WooCommerce invoices
- Email Responder β Auto-replies with AI-powered suggestions
- Backup Monitor β Proactive backup integrity checking
- Customer Segmentation β ML-based audience analysis
- Translation Agent β Multi-language content automation
- GitHub Discussions β Ask questions, share ideas
- Discord β Real-time chat with developers (invite)
- Twitter/X β @agenticplugin
- Email β support@agentic-plugin.com
GPL v2 or later. See LICENSE for details.
This is an independent community project β not affiliated with or endorsed by the WordPress Foundation, Automattic, or OpenAI.
- Install:
git clone https://github.com/renduples/agentic-plugin.git - Activate: Go to WordPress admin β Plugins
- Configure: Add API key in Settings
- Test: Try the SEO Analyzer or Content Assistant
- Build: Create your first custom agent
- Submit: Earn 70% on every install
Made with β€οΈ by the Agentic community
π Website β’ π Docs β’ π¬ GitHub β’ π¦ Twitter