Documentation
Technical reference for the d0a1 stack: installation, configuration, extensions, skills, workflows and API.
Quick start
- WordPress + AI Kit — Deployment checklist and operational prompts
- WP-CLI Cheatsheet — Quick reference for operations
- Live demo — See the system in action
Installation
Requirements
- VPS with Ubuntu 22.04+ (recommended: 2 vCPU, 8 GB RAM)
- Domain pointing to the VPS
- SSH access with root privileges
Deploy
git clone https://git.d0a1.es/d0a1/workspace.git
cd workspace
./manage.sh start
This installs WordPress, Ollama, n8n, Qdrant and AI Agent Bridge. Estimated time: 5 minutes.
Configuration
# Edit configuration
cp .env.example .env
nano .env
# Set domain
DOMAIN=yourdomain.com
# Select AI model
OLLAMA_MODEL=llama3
# Restart services
./manage.sh restart
Stack components
WordPress + WP-CLI
The base CMS. Managed programmatically via WP-CLI for bulk operations, backups, migrations and automation.
Ollama
Local language model inference. Supports Llama 3, Mistral, Qwen, Phi, Gemma and dozens more. Switch models with ollama run model.
AI Agent Bridge
WordPress plugin that connects your site to Ollama. Exposes REST endpoints for extensions, skills and workflows to run prompts against local AI.
n8n
Self-hosted workflow orchestrator. Connects WordPress with Ollama, Qdrant and external services without code.
Qdrant
Vector database for semantic search. Indexes WordPress content to find answers by meaning, not just keywords.
Extensions
Extensions are WordPress plugins that add specific functionality. Each installs from the stack’s extensions directory.
- Scheduled Backup — Automatic backups before updates and configurable scheduling
- Redirect Manager — Smart redirects, no 404s, with hit logging
- Media Optimizer — Image compression without visible quality loss, modern formats
- SEO Meta Toolkit — AI-generated meta tags for every page and post
- Content Pipeline Pro — Full pipeline: idea → draft → review → publish
- AI Agent Bridge — The bridge connecting WordPress to Ollama
Skills
Skills are AI capabilities that operate on your content. They run against Ollama via AI Agent Bridge.
- Image Alt Generator — Accessible, SEO-friendly alt text for every image
- Link Validator — Real-time broken link detection
- Draft Reviewer — Review drafts with local AI
- Content Review Operator — Full review of published content
- Guardian Operator — Security monitoring and alerts
- SEO Content Operator — Local AI-powered SEO optimization
Workflows
Workflows are complete automations that connect stack components.
- Scheduled Health Check — Periodic WordPress health monitoring
- Social Auto-Publish — Automatically publish new content to social networks
- RSS to Post — Convert RSS feeds into AI-processed WordPress content
- Weekly Report Generator — Generate weekly status and metrics reports
- Comment Moderation Flow — AI-powered automatic comment moderation
- Auto-Publish Pipeline — Full staging-to-production pipeline
See all extensions, skills, and workflows.