| name | librarian-indexer |
| description | Meta-skill that indexes, optimizes, and auto-generates Claude skills with GitOps automation, OCA GitHub bot integration, and Odoo developer tools. Use for skill creation, CI/CD workflows, OCA module management, and advanced Odoo development. |
Librarian Indexer Skill v2.0
Purpose
Advanced meta-skill that combines knowledge base optimization, skill auto-generation, GitOps automation, OCA GitHub bot workflows, and Odoo developer mode expertise for maximum development efficiency.
Version History
v2.0.0 (2025-10-30):
added:
- GitOps expertise (CI/CD, GitHub Actions)
- OCA GitHub bot integration and commands
- Odoo Developer Mode tools and techniques
- Automated workflow patterns
- Advanced debugging capabilities
v1.0.0 (2025-10-30):
- Initial release
- Core skill templates
- Knowledge base optimization
- Skill taxonomy
Core Functions
1. Skill Taxonomy & Indexing
Automatically catalog all skills with metadata:
- Category: Technical, Business, Integration, Domain-Specific
- Dependencies: Which skills/tools/APIs this skill relies on
- Cross-references: Related skills, overlapping functionality
- Complexity: Beginner, Intermediate, Advanced, Expert
- Update frequency: Static knowledge vs. rapidly evolving domains
- GitOps: CI/CD pipeline requirements, automated testing
2. GitOps Expertise
CI/CD Pipeline Architecture
github_actions_workflows:
module_testing:
name: "Test Odoo Module"
trigger: [push, pull_request]
steps:
- checkout_code
- setup_odoo_environment
- install_dependencies
- run_unit_tests
- run_integration_tests
- generate_coverage_report
best_practices:
- Use OCA's maintainer-tools for testing
- Test against multiple Odoo versions
- Cache dependencies for speed
- Fail fast on critical errors
docker_build_push:
name: "Build and Push Docker Image"
trigger: [push_to_main, release]
steps:
- checkout_code
- setup_docker_buildx
- login_to_registry
- build_multi_arch_image
- push_to_dockerhub
- create_github_release
best_practices:
- Use multi-stage builds
- Tag with version + latest
- Sign images for security
- Use BuildKit for caching
oca_bot_integration:
name: "OCA Bot Automated Workflows"
trigger: [pull_request_review, schedule]
commands:
- /ocabot merge [major|minor|patch|nobump]
- /ocabot rebase
- /ocabot migration <module_name>
automation:
- Auto-generate README.rst from fragments
- Auto-generate addon icons
- Auto-update setup.py
- Auto-approve with 2+ approvals
- Auto-merge after 5 days + green CI
deployment_pipeline:
name: "Deploy to Production"
trigger: [release, manual_dispatch]
environments: [staging, production]
steps:
- run_all_tests
- build_docker_image
- push_to_registry
- deploy_to_staging
- run_smoke_tests
- manual_approval
- deploy_to_production
- rollback_on_failure
Git Workflow Patterns
git clone https://github.com/YOUR_USERNAME/OCA_REPO.git
cd OCA_REPO
git remote add upstream https://github.com/OCA/OCA_REPO.git
git checkout -b 19.0-feat-new-feature origin/19.0
pre-commit install
pre-commit run --all-files
git push origin 19.0-feat-new-feature
git checkout 19.0
git fetch upstream
git merge upstream/19.0
git push origin 19.0
GitHub Actions Templates
name: Test Odoo Modules
on:
push:
branches: [19.0, 18.0]
pull_request:
branches: [19.0, 18.0]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
odoo-version: ['19.0']
python-version: ['3.11']
services:
postgres:
image: postgres:15
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
- name: Install OCA maintainer-tools
run: |
git clone https://github.com/OCA/maintainer-tools.git
cd maintainer-tools
pip install -r requirements.txt
- name: Install Odoo
run: |
git clone --depth=1 --branch=${{ matrix.odoo-version }} https://github.com/odoo/odoo.git
pip install -r odoo/requirements.txt
- name: Install module dependencies
run: |
# Auto-detect and install OCA dependencies
python maintainer-tools/tools/install_odoo_modules.py
- name: Run tests
run: |
export ODOO_RC=/dev/null
python -m pytest tests/ --cov=. --cov-report=xml
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
name: Build and Push Docker Image
on:
push:
branches: [main]
tags: ['v*']
release:
types: [published]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: yourorg/insightpulse-odoo
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
3. OCA GitHub Bot Integration
Bot Commands
/ocabot merge major
/ocabot merge minor
/ocabot merge patch
/ocabot merge nobump
/ocabot rebase
/ocabot migration account_payment_order
Bot Automated Operations
Webhooks (Real-time):
on_pull_request_opened:
- mention_maintainers
- call_for_maintainers
on_pull_request_approved:
- set_approved_label
- set_ready_to_merge_label
on_ci_success:
- set_needs_review_label
on_merge:
- delete_pr_branch
- bump_version
- update_changelog
- generate_wheel
Scheduled Tasks (Nightly):
daily_maintenance:
- update_readme_table
- generate_addon_readme
- generate_addon_icons
- update_setup_py
- generate_wheels
- upload_to_pypi
Setting Up OCA Bot for Your Org
git clone https://github.com/OCA/oca-github-bot.git
cd oca-github-bot
cp environment.sample .env
GITHUB_TOKEN=ghp_xxxxx
GITHUB_SECRET=your_webhook_secret
BOT_TASKS=all
BOT_TASKS_DISABLED=
docker-compose up -d
ngrok http 8080
Custom Bot Tasks
from celery import task
from ..github import gh_call
@task()
def validate_module_structure(org, repo, pr_number):
"""Custom task: Validate Odoo module structure"""
files = gh_call(f'repos/{org}/{repo}/pulls/{pr_number}/files')
required_files = [
'__manifest__.py',
'__init__.py',
'README.rst',
'security/ir.model.access.csv'
]
for module_path in detect_modules(files):
missing = []
for req_file in required_files:
if not file_exists(module_path, req_file):
missing.append(req_file)
if missing:
gh_call(
f'repos/{org}/{repo}/issues/{pr_number}/comments',
method='POST',
data={
'body': f'⚠️ Module `{module_path}` is missing: {", ".join(missing)}'
}
)
return False
return True
4. Odoo Developer Mode
Activation Methods
https://example.odoo.com/odoo?debug=1
https://example.odoo.com/odoo?debug=assets
https://example.odoo.com/odoo?debug=tests
https://example.odoo.com/odoo?debug=0
Developer Mode Tools
View Architecture:
→ Edit View: Form / Tree / Kanban / etc.
→ View Fields: See all field definitions
→ View Metadata: Created, modified, version info
→ Manage Filters: Edit search filters
→ Edit Action: Modify window actions
→ Edit Workflow: (Legacy) View state transitions
→ Hover over field → See technical name
→ Right-click field → "View Field"
- Name: account_id
- Model: account.move
- Type: many2one
- Widget: many2one
- Required: True
- Readonly: False
Database Tools:
Settings → Technical
Database Structure/
├── Models
├── Fields
├── Menu Items
├── Views
├── Actions
├── Translations
└── Parameters
Sequences/
└── Sequences
Automation/
├── Scheduled Actions (Cron)
├── Automation Rules
└── Server Actions
Security/
├── Users & Companies
├── Groups
├── Access Rights
├── Record Rules
└── Access Control Lists
Python Debugging:
self.env.user.write({'debug': True})
import logging
_logger = logging.getLogger(__name__)
_logger.setLevel(logging.DEBUG)
self.env['sale.order'].search([('state', '=', 'draft')])
order = self.env['sale.order'].browse(1)
_logger.info(f"Order: {order}")
_logger.info(f"Fields: {order.fields_get()}")
_logger.info(f"Values: {order.read()}")
order._compute_amount_total()
self.env['sale.order'].check_access_rights('write', raise_exception=False)
order.check_access_rule('write')
_logger.info(f"Context: {self.env.context}")
import pdb; pdb.set_trace()
XML ID Inspector:
→ View Metadata → External ID
record = self.env['res.partner'].browse(1)
xml_id = record.get_external_id()
partner = self.env.ref('base.main_partner')
self.env['ir.model.data'].create({
'module': 'my_module',
'name': 'partner_demo',
'model': 'res.partner',
'res_id': partner.id,
})
Performance Profiling:
[options]
limit_time_cpu = 3600
limit_time_real = 7200
log_level = debug
log_db = True
log_db_level = debug
?debug=1&profile=1
import cProfile
import pstats
profiler = cProfile.Profile()
profiler.enable()
self.env['sale.order'].search([])
profiler.disable()
stats = pstats.Stats(profiler)
stats.sort_stats('cumulative')
stats.print_stats(20)
5. Knowledge Base Optimization
Information Architecture Patterns
Pattern 1: API-First Documentation
Best for: Odoo, OCA, Salesforce, SAP
Structure:
1. Quick Reference (most common operations)
2. API Endpoints/Methods (with examples)
3. Data Models/Schema
4. Integration Patterns
5. GitOps/CI-CD workflows
6. Troubleshooting Guide
7. Deep Reference (comprehensive docs)
Pattern 2: Decision Tree Format
Best for: Module selection, architecture decisions
Structure:
1. Decision flowchart (IF/THEN logic)
2. Comparison matrices
3. Use case mappings
4. Cost/benefit analysis
5. Implementation priorities
6. GitOps automation opportunities
Pattern 3: Recipe Book
Best for: Deployment, automation, scripts
Structure:
1. Prerequisites checklist
2. Step-by-step instructions (copy-paste ready)
3. Configuration templates
4. GitHub Actions workflows
5. OCA bot commands
6. Validation steps
7. Common pitfalls & solutions
8. Real examples from your stack
6. Skill Generation Templates
Template A: SaaS Replacement Skill
# [SaaS Product] → Odoo Replacement
## Gap Analysis
- Feature comparison matrix
- OCA module coverage
- Custom module requirements
- GitOps considerations
## Implementation Guide
- Module installation order
- Configuration steps
- Integration points (Supabase, Superset, Notion)
- CI/CD pipeline setup
## Migration Path
- Data export from SaaS
- Import scripts/mappings
- User training plan
- Rollback strategy
## GitOps Automation
- GitHub Actions workflows
- Automated testing
- Deployment pipelines
- OCA bot integration
## Cost Savings
- Annual licensing: $XXX
- Self-hosted cost: $XX
- Net savings: $XXX
## Maintenance
- Update schedule
- Backup strategy
- Monitoring setup
- Support resources
Template B: GitOps Workflow Skill
# [Project] GitOps Automation
## Repository Structure
- Branch strategy
- Commit conventions
- PR templates
- Code review process
## CI/CD Pipeline
- Test workflows
- Build processes
- Deployment stages
- Rollback procedures
## OCA Bot Integration
- Webhook configuration
- Automated tasks
- Bot commands
- Custom workflows
## Monitoring
- GitHub Actions logs
- Deployment metrics
- Error tracking
- Performance monitoring
Template C: Odoo Development Skill
# [Module/Feature] Development Guide
## Developer Mode Setup
- Activation methods
- Debugging tools
- Performance profiling
## Module Structure
- Required files
- Naming conventions
- OCA compliance
## Development Workflow
- Local development setup
- Git workflow with OCA bot
- Testing strategy
- CI/CD integration
## Debugging Techniques
- ORM query inspection
- Computed field testing
- Access rights validation
- XML ID management
7. Skill Dependency Mapping
skill_dependencies:
odoo-finance-automation:
requires:
- odoo19-oca-devops (deployment)
- supabase-rpc-manager (database)
- paddle-ocr-validation (document processing)
- gitops-odoo (CI/CD workflows)
- oca-bot-integration (automated merges)
integrates_with:
- superset-dashboard-automation (reporting)
- notion-workflow-sync (task management)
- travel-expense-management (AP integration)
gitops:
- .github/workflows/test-finance-module.yml
- .github/workflows/deploy-finance.yml
oca-module-development:
requires:
- gitops-odoo (GitHub Actions)
- oca-bot-integration (merge automation)
- odoo-developer-mode (debugging)
tools:
- pre-commit hooks
- OCA maintainer-tools
- pytest for testing
workflows:
- Fork → Feature branch → PR → OCA bot → Merge
8. GitOps Best Practices
Repository Organization
odoo-project/
├── .github/
│ ├── workflows/
│ │ ├── test.yml
│ │ ├── deploy-staging.yml
│ │ ├── deploy-production.yml
│ │ ├── oca-bot-sync.yml
│ │ └── security-scan.yml
│ ├── PULL_REQUEST_TEMPLATE.md
│ └── ISSUE_TEMPLATE/
│ ├── bug_report.md
│ └── feature_request.md
├── .pre-commit-config.yaml
├── .dockerignore
├── .gitignore
├── docker-compose.yml
├── docker-compose.prod.yml
├── Dockerfile
├── odoo.conf
├── requirements.txt
└── addons/
├── custom_module_1/
├── custom_module_2/
└── README.md
Pre-commit Configuration
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/psf/black
rev: 23.12.1
hooks:
- id: black
language_version: python3.11
- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
hooks:
- id: flake8
args: ['--max-line-length=88', '--extend-ignore=E203,W503']
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
hooks:
- id: isort
args: ['--profile', 'black']
- repo: https://github.com/OCA/pylint-odoo
rev: 8.0.23
hooks:
- id: pylint_odoo
args: ['--load-plugins=pylint_odoo']
Conventional Commits
feat: New feature
fix: Bug fix
docs: Documentation only
style: Code style changes (formatting, etc.)
refactor: Code refactoring
perf: Performance improvement
test: Add or update tests
build: Build system changes
ci: CI/CD changes
chore: Other changes (dependencies, etc.)
git commit -m "feat(account): add BIR 1601-C report generation"
git commit -m "fix(sale): correct tax calculation for multi-currency"
git commit -m "docs(readme): update installation instructions"
git commit -m "ci: add automated testing workflow"
git commit -m "refactor(purchase): optimize RFQ performance"
git commit -s -m "feat(stock): add warehouse optimization"
9. Advanced Debugging Techniques
Debug Mode Shortcuts
window.odoo.__DEBUG__.services
window.odoo.__DEBUG__.services.action.currentController
await window.odoo.__DEBUG__.services.rpc('/web/dataset/call_kw', {
model: 'sale.order',
method: 'read',
args: [[1], ['name', 'amount_total']],
kwargs: {}
})
window.location = window.location.href.replace(/\?.*/, '?debug=assets')
window.odoo.define.modules
Server-side Debugging
odoo-bin shell -d database_name -c /etc/odoo/odoo.conf
>>> env = api.Environment(cr, SUPERUSER_ID, {})
>>> partners = env['res.partner'].search([('is_company', '=', True)])
>>> partners.mapped('name')
[options]
dev_mode = reload,qweb,werkzeug,xml
import pydevd_pycharm
pydevd_pycharm.settrace('localhost', port=5678, stdoutToServer=True)
import logging
_logger = logging.getLogger(__name__)
_logger.debug("Debug message")
_logger.info("Info message")
_logger.warning("Warning message")
_logger.error("Error message")
_logger.exception("Exception with traceback")
self.env.cr.execute("SELECT * FROM sale_order WHERE state = %s", ('draft',))
results = self.env.cr.dictfetchall()
_logger.info(f"SQL Results: {results}")
10. Skill Quality Checklist
Every skill should have:
11. Skill Optimization Techniques
Information Density
❌ Low Density:
"You can use GitHub Actions to automate testing."
✅ High Density:
"GitHub Actions workflow: .github/workflows/test.yml
trigger: push, pull_request
steps: checkout → setup python → install deps → pytest
OCA bot auto-merges after 2 approvals + green CI + 5 days"
Actionable Focus
❌ Vague:
"Consider using OCA bot for automation."
✅ Actionable:
"In PR comment:
/ocabot merge minor # Auto-merge with version bump
/ocabot rebase # Rebase on target branch
Bot runs: tests → bump version → update changelog → generate wheels → upload PyPI"
Context Embedding
✅ Include YOUR specific context:
- "For InsightPulse-Odoo deployment..."
- "In .github/workflows/deploy.yml..."
- "Using OCA/account-financial-tools modules..."
- "Supabase project: spdtwktxdalcfigzeqrz"
- "/ocabot merge patch for hotfixes"
12. Skill Library Structure
/skills/
├── meta/
│ ├── librarian-indexer/ # This skill v2.0
│ ├── gitops-automation/ # CI/CD patterns
│ └── skill-creator/ # Anthropic's skill creator
├── platform/
│ ├── odoo19-oca-devops/ # OCA bot, developer mode
│ ├── github-actions/ # Workflow templates
│ ├── supabase-rpc-manager/
│ └── superset-dashboard-automation/
├── domain/
│ ├── odoo-finance-automation/
│ ├── oca-module-development/ # OCA standards
│ └── philippines-tax-compliance/
├── integration/
│ ├── oca-bot-integration/ # Bot setup & commands
│ ├── notion-workflow-sync/
│ ├── paddle-ocr-validation/
│ └── multi-agency-orchestrator/
├── saas-replacement/
│ ├── travel-expense-management/
│ ├── procurement-sourcing/
│ ├── salesforce-crm-parity/
│ └── netsuite-erp-parity/
└── templates/
├── saas-replacement.template.md
├── gitops-workflow.template.md
├── oca-module.template.md
└── domain-knowledge.template.md
13. Auto-Generation Workflows
Workflow 1: New OCA Module Skill
Input: "Create OCA module skill for account_financial_report"
Steps:
1. Clone OCA/account-financial-tools repository
2. Analyze module structure with appsrc.py
3. Extract README.rst content
4. Document dependencies from __manifest__.py
5. Generate usage examples
6. Add OCA bot workflow integration
7. Create GitHub Actions test workflow
8. Include debugging techniques
9. Output: Complete skill file
Workflow 2: GitOps Automation Skill
Input: "Create CI/CD pipeline for [project]"
Steps:
1. Analyze project structure
2. Generate .github/workflows/*.yml
3. Configure OCA bot (if OCA repo)
4. Set up pre-commit hooks
5. Create Docker build workflow
6. Add deployment pipelines
7. Configure monitoring
8. Output: Complete GitOps setup
Workflow 3: Debug Skill Enhancement
Input: "Add debugging guide to [skill]"
Steps:
1. Load existing skill
2. Add Odoo developer mode section
3. Include ORM debugging techniques
4. Add performance profiling
5. Document common issues
6. Provide troubleshooting flowchart
7. Output: Enhanced skill
14. Skill Triggers for Auto-Loading
When Jake mentions:
- "Odoo", "OCA", "module" → Load odoo19-oca-devops + oca-bot-integration
- "GitHub Actions", "CI/CD", "workflow" → Load gitops-automation
- "debug", "developer mode", "troubleshoot" → Load odoo-developer-mode
- "/ocabot", "bot command", "auto-merge" → Load oca-bot-integration
- "BIR", "1601-C", "month-end" → Load odoo-finance-automation
- "Supabase", "pgvector", "RPC" → Load supabase-rpc-manager
- "Superset", "dashboard", "chart" → Load superset-dashboard-automation
- "pre-commit", "pylint", "black" → Load gitops-automation
- "pytest", "test", "coverage" → Load odoo-testing-guide
- "Docker", "build", "deploy" → Load docker-deployment + gitops-automation
15. Best Practices Database
Odoo Development
✅ DO: Use search_read for better performance
records = self.env['sale.order'].search_read(
[('state', '=', 'draft')],
['name', 'amount_total']
)
❌ DON'T: Use search then read separately
records = self.env['sale.order'].search([('state', '=', 'draft')])
for record in records:
name = record.name # N+1 query problem
# Computed Fields
✅ DO: Use @api.depends properly
@api.depends('order_line.price_total')
def _compute_amount_total(self):
for order in self:
order.amount_total = sum(order.order_line.mapped('price_total'))
❌ DON'T: Forget dependencies
def _compute_amount_total(self):
for order in self:
order.amount_total = sum(order.order_line.mapped('price_total'))
✅ DO: Use ir.model.access.csv + record rules
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_sale_order_user,sale.order.user,model_sale_order,sales_team.group_sale_salesman,1,1,1,0
❌ DON'T: Use sudo() everywhere
records = self.env['sale.order'].sudo().search([]) # Bypasses security!
OCA Module Compliance
{
'name': 'Module Name',
'version': '19.0.1.0.0',
'category': 'Accounting',
'summary': 'Short description',
'author': 'Your Company, Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/project-name',
'license': 'AGPL-3',
'depends': ['base', 'account'],
'data': [
'security/ir.model.access.csv',
'views/account_views.xml',
'data/account_data.xml',
],
'demo': [
'demo/account_demo.xml',
],
'installable': True,
'application': False,
'auto_install': False,
}
my_module/
├── __init__.py
├── __manifest__.py
├── models/
│ ├── __init__.py
│ └── account_move.py
├── views/
│ └── account_move_views.xml
├── security/
│ └── ir.model.access.csv
├── data/
│ └── account_data.xml
├── static/
│ └── description/
│ ├── index.html
│ └── icon.png
├── readme/
│ ├── CONFIGURE.rst
│ ├── USAGE.rst
│ └── CONTRIBUTORS.rst
└── tests/
├── __init__.py
└── test_account.py
GitOps Best Practices
✅ DO: Use caching
- name: Cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
✅ DO: Use matrix strategy for multiple versions
strategy:
matrix:
odoo-version: ['18.0', '19.0']
python-version: ['3.10', '3.11']
✅ DO: Fail fast for critical issues
strategy:
fail-fast: true
matrix:
...
❌ DON'T: Hardcode secrets in workflows
- name: Deploy
env:
API_TOKEN: ${{ secrets.API_TOKEN }}
❌ DON'T: Run expensive operations on every commit
on:
push:
paths:
- 'src/**'
- 'tests/**'
16. Success Metrics
Track for each skill:
- Usage frequency: How often referenced
- Success rate: Solves problem first time?
- Completeness: Needs follow-up searches?
- Accuracy: Examples/commands correct?
- Integration: Works with other skills?
- GitOps efficiency: Reduces manual work?
- Debugging effectiveness: Resolves issues faster?
- OCA compliance: Follows standards?
17. Meta Notes
This skill v2.0 demonstrates advanced principles:
- ✅ Clear purpose statement
- ✅ GitOps automation integration
- ✅ OCA bot command reference
- ✅ Odoo developer mode techniques
- ✅ Actionable templates with workflows
- ✅ Real examples from CI/CD pipelines
- ✅ Decision trees and debugging flowcharts
- ✅ Integration with other skills
- ✅ Maintenance strategy
- ✅ Versioning approach
When to use this skill:
- Creating any new skill
- Setting up GitOps workflows
- Configuring OCA bot automation
- Debugging Odoo issues
- Optimizing existing skills
- Planning skill architecture
- Resolving skill conflicts
- Maintaining skill library
- Auto-generating documentation
- Troubleshooting CI/CD pipelines
Success criteria:
- Reduced time to create new skills (50% faster)
- Automated CI/CD reduces deployment time (80% faster)
- Higher quality skills (fewer iterations)
- Better debugging efficiency (70% faster issue resolution)
- Easier maintenance
- More effective Claude responses
- OCA-compliant code by default