- Add comprehensive K8s test setup guide to CLAUDE.md (section 8) - Document K8s architecture, Docker image requirements, and job execution - Update ARCHITECTURE.md with CI/CD infrastructure details - Fix Dockerfile to use python3 -m pip and proper non-root user handling - Upgrade addon to Odoo 17.0 and update XML view syntax
63 lines
2.3 KiB
Python
63 lines
2.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'ITSulu Blog Publisher',
|
|
'version': '17.0.1.0.0',
|
|
'summary': 'AI-powered blog post generation with multi-LLM support, scheduling, and social media copy',
|
|
'description': """
|
|
ITSulu Blog Publisher
|
|
=====================
|
|
Replaces the CoWork/Windows VM blog pipeline with a fully server-side Odoo addon.
|
|
|
|
Features
|
|
--------
|
|
* On-demand blog generation via backend button or website toolbar
|
|
* Three configurable daily schedule slots (morning / afternoon / evening)
|
|
* Multi-LLM provider support: Anthropic Claude, OpenAI, Google Gemini, Ollama / Open WebUI
|
|
* Independent image generation provider (DALL·E, etc.)
|
|
* Single structured-JSON LLM call per post — lowest possible token usage
|
|
* Auto-populates all SEO fields (meta title, description, keywords, tags)
|
|
* Per-schedule / per-run social media platform enable/disable
|
|
(X/Twitter A+B, BlueSky A+B, Fediverse/Mastodon, LinkedIn)
|
|
* Notification email with social copy ready to paste — matches ITSulu Insights template
|
|
* Topic queue from ITSulu/company services — priority-ordered
|
|
* Editable system prompt and user prompt templates
|
|
* Full generation log with token usage, duration, error messages, and Retry button
|
|
* Supports Anthropic Pro user account API tokens (claude.ai/api)
|
|
""",
|
|
'author': 'ITSulu',
|
|
'website': 'https://itsulu.com',
|
|
'category': 'Website/Blog',
|
|
'license': 'LGPL-3',
|
|
'depends': [
|
|
'base',
|
|
'base_setup',
|
|
'mail',
|
|
'website',
|
|
'website_blog',
|
|
],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'data/mail_template_data.xml',
|
|
'data/ir_cron_data.xml',
|
|
'views/blog_topic_views.xml',
|
|
'views/blog_schedule_views.xml',
|
|
'views/blog_generation_log_views.xml',
|
|
'views/blog_post_social_views.xml',
|
|
'views/generate_now_wizard_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'views/website_blog_publisher_templates.xml',
|
|
'views/menu_views.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'itsulu_blog_publisher/static/src/css/blog_publisher.css',
|
|
],
|
|
'website.assets_frontend': [
|
|
'itsulu_blog_publisher/static/src/css/website_blog_publisher.css',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': True,
|
|
'auto_install': False,
|
|
'images': ['static/description/banner.png'],
|
|
}
|