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 or reviewing a PowerPoint presentation for Metis Strategy.
These elements appear on virtually every Metis content slide. Include them by default unless told otherwise.
Bottom of every content slide:
"Proprietary & Confidential, Metis Strategy LLC [YEAR]"
#7b8692), left-alignedMost content slides include a source line:
"Source: Metis Strategy Research & Analysis"
Every content slide has a page number (not the title or closing slide).
When preparing a deck for a client, the title slide should include:
"Prepared for [Client Name] | [Month Year] | [Engagement Title]"
Use small labels in the top-left area to categorize slide types:
The most common Metis deck structure uses a dark-light-dark sandwich:
#20216f) background#f4f6fa or white) backgroundCommitting fully to dark throughout (all slides dark) is also acceptable for a premium feel.
Use varied layouts — don't repeat the same structure slide after slide.
Text/insight on left, supporting visual or stat on right. Good for approach slides.
3 cards in a row with a large number (52–60pt), label below, and supporting note. Anchor card backgrounds in White; use a thin Metis Green top border as the accent.
For lists of 4–6 items: icon or number in a colored circle, bold header, 1–2 sentence description. Works well on light backgrounds.
Dark Blue background, large quote or single insight in White/Metis Green, supporting detail below. Use for impact moments, key findings, or section headers.
Numbered steps with a horizontal connector line in Metis Green. Each step: bold label + 1-line description.
When writing PowerPoint code with pptxgenjs, follow these rules:
# prefix// ✅ Correct
color: "20216f"
fill: { color: "3cdbc0" }
// ❌ Wrong — corrupts the file
color: "#20216f"const METIS = {
darkBlue: "20216f", // Primary dark background
metisGreen: "3cdbc0", // Primary brand accent
mediumGreen: "53a092",
darkGreen: "007d66",
lightBlue: "00bdef",
mediumBlue: "256ba2",
white: "ffffff",
gray: "7b8692",
lightBg: "f4f6fa", // Light slide background
};Use "Calibri" as the font face in pptxgenjs (Open Sans requires manual installation; Calibri is the approved Microsoft fallback).
// ✅ Correct — fresh object each time
const makeShadow = () => ({ type: "outer", color: "000000", blur: 8, offset: 2, angle: 135, opacity: 0.1 });
slide.addShape(pres.shapes.RECTANGLE, { shadow: makeShadow(), ... });
// ❌ Wrong — second call gets already-mutated values
const shadow = { ... };
slide.addShape(..., { shadow });
slide.addShape(..., { shadow }); // corruptedUse thin left-edge or top-edge rectangles in Metis Green or Dark Blue to anchor cards and sections:
// Left accent bar on a card
slide.addShape(pres.shapes.RECTANGLE, {
x: cardX, y: cardY, w: 0.08, h: cardH,
fill: { color: "3cdbc0" }, line: { color: "3cdbc0" }
});All graphic device files are in the assets/ folder of this skill. Reference them with:
slide.addImage({ path: "<skill-assets-path>/trajectory_device.png", ... });assets/trajectory_device.png)A fan of green/blue streaks pointing to the right — use on title or section slides.
// Example: right-bleed on title slide
slide.addImage({
path: "assets/trajectory_device.png",
x: 4.5, y: 0.5, w: 6, h: 4.5,
transparency: 15
});assets/energy_device.png)Repeating arrow pattern — use as a background texture or to bookend an image.
slide.addImage({
path: "assets/energy_device.png",
x: 0, y: 3.5, w: 10, h: 2.5,
transparency: 65
});assets/nexus_device.png)Symmetric starburst expanding from center — represents the intersection of technology and business.
assets/arrow_device.png)Solid Metis Green arrow — use to direct the eye to a headline or key insight.
On light slides: Dark Blue title, 32–40pt, Bold, left-aligned. No decorative lines under the title. On dark slides: White title or Metis Green title, same specs.
Do NOT put a line under slide titles — this is a common AI-generated slide mistake. Use whitespace instead.
# prefix with hex colors in pptxgenjs (corrupts file)