theme-design
Figma-to-Odoo design workflow and complete page template reference. Covers Figma extraction pipeline (colors, typography, layout), Chrome MCP automation, design-to-template matching methodology, header/footer decision flowcharts, and dynamic page reference (11 headers, 9 footers, shop, blog, cart templates with XML IDs). <example> Context: User wants to implement a Figma design user: "Implement this Figma design as an Odoo 17 theme" assistant: "I will analyze the Figma design and match it to Odoo templates." <commentary>Design-to-code workflow.</commentary> </example> <example> Context: User asks which header template to use user: "Which Odoo header template matches a hamburger menu design?" assistant: "Use template_header_hamburger." <commentary>Template matching query.</commentary> </example> <example> Context: User wants to know footer options user: "What footer templates are available in Odoo?" assistant: "There are 9 footer templates ranging from default to slideout." <commentary>Footer template reference.</commentary> </example>
What this skill does
# Figma-to-Odoo Design Workflow
## Design Workflow Methodology
```
1. ANALYZE DESIGN → Extract colors, fonts, layout, components
2. COMPARE TO ODOO TEMPLATES → Match header, footer, page layouts
3. CHOOSE CLOSEST TEMPLATE → Select best matching built-in template
4. CONFIGURE VIA VARIABLES → Set $o-website-values-palettes
5. ENHANCE WITH CUSTOM CSS → Only what templates can't provide
6. CREATE CUSTOM SNIPPETS → Components not available in Odoo
```
## Figma Extraction Pipeline
### Using Figma MCP
```
1. Use Figma MCP with prompt:
"Convert this Figma design to HTML for Odoo <version> website theme.
Use Bootstrap v5.1.3 classes (not Tailwind).
Apply proper Odoo theme structure with sections and containers."
2. Extract Color Palette:
"Extract the color palette and map to o-color-1 through o-color-5."
3. Extract Typography:
"Convert text styling to Bootstrap typography classes."
```
### Using Chrome MCP (Browser Automation)
1. Navigate to Figma URL → Open **Pages** (not components!)
2. Click on page elements to extract:
- Header/navbar → primary color
- CTA buttons → secondary color
- Section backgrounds → o-color-3
- Body text → text color, font family
- Headings (H1-H6) → heading fonts, sizes
**Pages to check**: Homepage, About/Services, Contact, Footer area
### Color Mapping
| Design Element | Maps To |
|---------------|---------|
| Primary brand color (buttons, links) | `o-color-1` |
| Accent/CTA color | `o-color-2` |
| Light section backgrounds | `o-color-3` |
| Main content background | `o-color-4` |
| Dark text / headings | `o-color-5` |
---
## Header Templates (11 Primary + Variants)
| XML ID | Name | Best For |
|--------|------|----------|
| `website.template_header_default` | Default | Most websites |
| `website.template_header_hamburger` | Hamburger | Minimal designs |
| `website.template_header_stretch` | Stretch | Wide layouts |
| `website.template_header_vertical` | Vertical | App-like sites |
| `website.template_header_search` | Search | E-commerce, directories |
| `website.template_header_sales_one` | Sales 1 | Online stores |
| `website.template_header_sales_two` | Sales 2 | Large catalogs |
| `website.template_header_sales_three` | Sales 3 | Product-focused |
| `website.template_header_sales_four` | Sales 4 | Fashion, retail |
| `website.template_header_sidebar` | Sidebar | Dashboard sites |
| `website.template_header_boxed` | Boxed | Modern brands |
### Header Alignment Variants
- `..._align_center` / `..._align_right` — Desktop alignment
- `..._mobile_align_center` / `..._mobile_align_right` — Mobile alignment
### Header Visibility (mutually exclusive)
| XML ID | Effect |
|--------|--------|
| `website.header_visibility_standard` | Scrolls with page |
| `website.header_visibility_fixed` | Sticks to top |
| `website.header_visibility_disappears` | Hides on scroll down |
| `website.header_visibility_fade_out` | Fades out |
### Header Components (combinable)
| XML ID | Component | Default |
|--------|-----------|---------|
| `website.option_header_brand_logo` | Logo image | Active |
| `website.option_header_brand_name` | Text name | Inactive |
| `website.header_call_to_action` | CTA button | Active |
| `website.header_search_box` | Search bar | Active |
| `website.header_social_links` | Social icons | Inactive |
### Header Decision Flowchart
```
Is navigation hidden? → YES → template_header_hamburger
→ NO → Vertical sidebar? → YES → Full page? → sidebar / vertical
→ NO → E-commerce? → YES → Categories? → sales_two / sales_one
→ NO → Search prominent? → template_header_search
→ Boxed? → boxed / stretch / default
```
---
## Footer Templates (9 Options)
| XML ID | Name | Best For |
|--------|------|----------|
| `website.footer_custom` | Default | General use |
| `website.template_footer_descriptive` | Descriptive | Corporate sites |
| `website.template_footer_centered` | Centered | Landing pages |
| `website.template_footer_links` | Links | Large sites |
| `website.template_footer_minimalist` | Minimalist | Clean designs |
| `website.template_footer_contact` | Contact | Service businesses |
| `website.template_footer_call_to_action` | CTA | Marketing sites |
| `website.template_footer_headline` | Headline | Brand statements |
| `website.template_footer_slideout` | Slideout | Modern/trendy |
### Footer Decision Flowchart
```
Minimal (just copyright)? → YES → template_footer_minimalist
→ NO → Center-aligned? → template_footer_centered
Newsletter/CTA? → template_footer_call_to_action
Contact info? → template_footer_contact
Primarily links? → template_footer_links
Detailed description? → template_footer_descriptive
Default → footer_custom
```
---
## Shop Page Templates (website_sale)
### Layout Options
| XML ID | Feature |
|--------|---------|
| `website_sale.products_design_card` | Card layout |
| `website_sale.products_design_grid` | Grid layout |
| `website_sale.products_thumb_4_3` | 4:3 image ratio |
| `website_sale.products_thumb_cover` | Image fills container (default) |
### Categories & Filters
| XML ID | Feature | Default |
|--------|---------|---------|
| `website_sale.products_categories` | Left sidebar | Inactive |
| `website_sale.products_categories_top` | Top nav | Active |
| `website_sale.products_attributes` | Attribute filters | Active |
| `website_sale.filter_products_price` | Price filter | Inactive |
| `website_sale.search` | Search box | Active |
| `website_sale.sort` | Sort dropdown | Active |
### Product Detail Options
| XML ID | Feature | Default |
|--------|---------|---------|
| `website_sale.product_comment` | Reviews | Inactive |
| `website_sale.product_buy_now` | Buy Now button | Inactive |
| `website_sale.alternative_products` | Alternatives | Active |
---
## Blog Templates (website_blog)
### Blog Listing
| XML ID | Feature | Default |
|--------|---------|---------|
| `website_blog.opt_blog_cover_post` | Featured banner | Active |
| `website_blog.opt_blog_list_view` | List view | Inactive |
| `website_blog.opt_blog_cards_design` | Card components | Inactive |
| `website_blog.opt_blog_sidebar_show` | Sidebar | Inactive |
### Blog Post Detail
| XML ID | Feature | Default |
|--------|---------|---------|
| `website_blog.opt_blog_post_breadcrumb` | Breadcrumbs | Active |
| `website_blog.opt_blog_post_read_next` | Read next | Active |
| `website_blog.opt_blog_post_comment` | Comments | Inactive |
---
## Cart & Checkout
| XML ID | Feature | Default |
|--------|---------|---------|
| `website_sale.suggested_products_list` | Suggested products | Active |
| `website_sale.reduction_code` | Promo code | Active |
| `website_sale.accept_terms_and_conditions` | T&C checkbox | Inactive |
---
## Generating Theme Configuration from Design
After analyzing the design and matching templates:
```scss
// primary_variables.scss — Generated from Design Analysis
$o-theme-font-configs: (
'Poppins': (
'family': ('Poppins', sans-serif),
'url': 'Poppins:300,400,500,600,700',
),
);
$o-website-values-palettes: (
(
'color-palettes-name': 'default-1',
'font': 'Poppins',
'headings-font': 'Poppins',
'header-template': 'hamburger',
'header-links-style': 'pills',
'logo-height': 48px,
'footer-template': 'contact',
'footer-scrolltop': true,
'btn-padding-y': 0.75rem,
'btn-border-radius': 8px,
'link-underline': 'never',
)
);
```
Then create `theme.utils` to activate the matched templates programmatically:
```python
def _theme_yourtheme_post_Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.