Metis Strategy brand identity reference for agents producing any client-facing or internal output on behalf of Metis Strategy. Use this skill whenever you are creating, editing, or reviewing a deliverable that needs to look, feel, or sound like Metis Strategy — including presentations, documents, reports, emails, social content, or visual assets. Trigger on requests like "make this on-brand," "use Metis colors," "apply our brand," "format this for Metis," or any task where the output represents Metis Strategy to clients, prospects, or the public.
95
95%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
Use this reference whenever creating a Word document or PDF report for Metis Strategy.
| Type | Typical Length | Primary Use |
|---|---|---|
| Executive Summary | 1–2 pages | Post-meeting recap, initial findings |
| Point of View (POV) | 2–4 pages | Thought leadership, client perspective |
| Proposal / SOW | 3–8 pages | New engagement scoping |
| Assessment Report | 5–15 pages | Findings, analysis, recommendations |
| One-Pager | 1 page | Intro materials, capability overview |
Use Calibri throughout (Open Sans requires separate font installation).
| Element | Font | Size | Weight | Color |
|---|---|---|---|---|
| Document Title | Calibri | 24pt | Bold | Dark Blue #20216f |
| Section Header (H1) | Calibri | 16pt | Bold | Dark Blue #20216f |
| Subsection Header (H2) | Calibri | 13pt | Bold | Medium Blue #256ba2 |
| Body Text | Calibri | 11pt | Regular | Black #000000 |
| Caption / Label | Calibri | 9pt | Regular | Gray #7b8692 |
| Call-out / Highlight | Calibri | 11pt | Bold | Metis Green #3cdbc0 (on dark bg) or Dark Blue (on light bg) |
Line spacing: 1.15 for body text. Add 6pt space after paragraphs.
#20216f)#e8f8f5) with Dark Blue left borderUse for key insights, recommendations, or statistics:
┌─────────────────────────────────┐
│ ▌ Key Finding │ ← Dark Blue left bar, Metis Green label
│ Finding text here in body │ ← Body text
└─────────────────────────────────┘METIS = {
"dark_blue": "20216F",
"metis_green": "3CDBC0",
"medium_blue": "256BA2",
"gray": "7B8692",
"white": "FFFFFF",
"light_bg": "E8F8F5", # Tint for callout boxes
}from docx.shared import Pt, RGBColor
from docx.util import Inches
def add_section_header(doc, text):
p = doc.add_paragraph()
run = p.add_run(text)
run.bold = True
run.font.size = Pt(16)
run.font.color.rgb = RGBColor(0x20, 0x21, 0x6F) # Dark Blue
p.paragraph_format.space_before = Pt(12)
p.paragraph_format.space_after = Pt(6)from docx.oxml.ns import qn
from docx.oxml import OxmlElement
def add_callout(doc, label, text):
# Add shaded paragraph with left border
p = doc.add_paragraph()
pPr = p._p.get_or_add_pPr()
# Set shading
shd = OxmlElement('w:shd')
shd.set(qn('w:fill'), 'E8F8F5')
pPr.append(shd)
# Add label run
label_run = p.add_run(label + " ")
label_run.bold = True
label_run.font.color.rgb = RGBColor(0x20, 0x21, 0x6F)
# Add body run
body_run = p.add_run(text)
body_run.font.size = Pt(11)