CAT
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Brand Agency

glebis/claude-skills
190 installs240 stars
Summary

This applies a neobrutalism design system to your artifacts with hard shadows, bold colors, and zero border radius. You get orange, yellow, and blue as your primary palette, Geist for headings and EB Garamond for body text, plus the signature 4px offset shadow with no blur. It includes CSS variables, SVG filters, and ready-made social media templates that use ASCII art styling. The style guide is opinionated and specific, which is refreshing if you're tired of rounded corners and soft shadows everywhere. Works across presentations, web interfaces, and graphics, so your brand stays consistent whether you're building a landing page or a slide deck.

Install to Claude Code

npx -y skills add glebis/claude-skills --skill brand-agency --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Files
SKILL.mdView on GitHub

Agency Brand Styling

Overview

To access Agency's official brand identity and style resources, use this skill. The style is based on neobrutalism aesthetic with bold colors, hard shadows, and strong typography.

Brand Guidelines

Colors

Main Colors:

  • Background Light: #ffffff - Light backgrounds
  • Foreground Dark: #000000 - Primary text and dark elements
  • Muted: #e5e5e5 - Subtle backgrounds, secondary elements

Primary Palette:

  • Primary (Orange): #e85d04 - Main accent, CTAs, highlights
  • Secondary (Yellow): #ffd60a - Secondary accent, warnings, attention
  • Accent (Blue): #3a86ff - Links, interactive elements, info

Chart/Extended Colors:

  • Chart Green: #38b000 - Success states, positive indicators
  • Chart Red: #d62828 - Error states, destructive actions

Typography

Font Stack:

  • Headings: Geist ExtraBold (weight 800), fallback: Arial
  • Body Text: EB Garamond, fallback: Georgia
  • Monospace/Code: Geist Mono, fallback: Courier New

Google Fonts Import:

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Geist:wght@800&family=Geist+Mono:wght@400;500&display=swap');

CSS Variables:

:root {
  --font-body: 'EB Garamond', Georgia, serif;
  --font-heading: 'Geist', Arial, sans-serif;
  --font-mono: 'Geist Mono', 'Courier New', monospace;
}

Neobrutalism Style

Shadows:

  • Hard shadow offset: 4px 4px 0px 0px #000000
  • No blur (stdDeviation: 0)
  • CSS: box-shadow: 4px 4px 0px 0px #000000;
  • SVG filter: <feDropShadow dx="4" dy="4" stdDeviation="0" flood-color="#000000"/>

Borders:

  • Width: 3px
  • Color: #000000
  • Style: solid
  • Border radius: 0 (no rounded corners)

Key Principles:

  • High contrast between elements
  • Bold, saturated colors
  • No gradients (flat colors only)
  • Strong black outlines
  • Offset hard shadows
  • Zero border radius

Application Guidelines

SVG Graphics

To create SVG in Agency brand style:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400">
  <defs>
    <filter id="shadow" x="-20%" y="-20%" width="150%" height="150%">
      <feDropShadow dx="4" dy="4" stdDeviation="0" flood-color="#000000" flood-opacity="1"/>
    </filter>
  </defs>

  <circle cx="200" cy="200" r="80"
    fill="#e85d04"
    stroke="#000000"
    stroke-width="3"
    filter="url(#shadow)"/>
</svg>

Presentations (Marp/PowerPoint)

Slide backgrounds by type:

  • Title slides: Primary Orange #e85d04
  • Content slides: Light #ffffff or Muted #e5e5e5
  • Accent slides: Secondary Yellow #ffd60a, Accent Blue #3a86ff
  • Dark slides: Foreground #000000

Text colors:

  • On light backgrounds: #000000
  • On dark/colored backgrounds: #ffffff

Web/HTML

:root {
  /* Colors */
  --color-background: #ffffff;
  --color-foreground: #000000;
  --color-primary: #e85d04;
  --color-secondary: #ffd60a;
  --color-accent: #3a86ff;
  --color-success: #38b000;
  --color-error: #d62828;
  --color-muted: #e5e5e5;

  /* Typography */
  --font-body: 'EB Garamond', Georgia, serif;
  --font-heading: 'Geist', Arial, sans-serif;
  --font-mono: 'Geist Mono', 'Courier New', monospace;

  /* Shadows */
  --shadow: 4px 4px 0px 0px #000000;
  --shadow-sm: 2px 2px 0px 0px #000000;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
}

/* Body */
body {
  font-family: var(--font-body);
  color: var(--color-foreground);
  background: var(--color-background);
}

/* Buttons */
.btn {
  background: var(--color-primary);
  color: white;
  border: 3px solid var(--color-foreground);
  box-shadow: var(--shadow);
  border-radius: 0;
  font-family: var(--font-heading);
  font-weight: 800;
}

/* Cards */
.card {
  background: var(--color-background);
  border: 3px solid var(--color-foreground);
  box-shadow: var(--shadow);
  border-radius: 0;
}

/* Code */
code, pre {
  font-family: var(--font-mono);
  background: var(--color-foreground);
  color: white;
  border: 3px solid var(--color-foreground);
}

Color Usage Quick Reference

ContextColorHex
Primary actionOrange#e85d04
Secondary actionYellow#ffd60a
Links/InfoBlue#3a86ff
SuccessGreen#38b000
Error/DangerRed#d62828
Text (light bg)Black#000000
Text (dark bg)White#ffffff
Muted/DisabledGray#e5e5e5

Assets

Logo: assets/logo.svg - Agency logo in neobrutalism style (terminal window with code symbols and geometric shapes)

Social Media Templates

ASCII-art style HTML templates for social media using Geist Mono font. Render to PNG using Playwright.

Available Templates

TemplateSizePlatform
instagram/story-announcement1080x1920IG Story
instagram/story-quote1080x1920IG Story
instagram/post-title1080x1350IG Post
instagram/post-tips1080x1350IG Post
instagram/post-event1080x1350IG Post
youtube/thumbnail1280x720YT Thumbnail
youtube/shorts-cover1080x1920YT Shorts
social/cover-banner1584x396LinkedIn/FB
social/tiktok1080x1920TikTok
social/twitter-post1200x675X/Twitter
social/pinterest-pin1000x1500Pinterest

Usage

# Render all templates
node scripts/render-templates.js

# Render specific template
node scripts/render-templates.js --template instagram/story-announcement

# Custom output path
node scripts/render-templates.js -t youtube/thumbnail -o my-thumbnail.png

# List available templates
node scripts/render-templates.js --list

ASCII Style Elements

Templates use ASCII box-drawing characters for decoration:

Frames:   ┌─────┐  ╔═════╗  ┏━━━━━┓
          │     │  ║     ║  ┃     ┃
          └─────┘  ╚═════╝  ┗━━━━━┛

Lines:    ─ │ ═ ║ ━ ┃

Arrows:   → ← ↑ ↓ ▶ ◀ ▲ ▼

Shapes:   ● ○ ■ □ ▲ △ ★ ☆ ◆ ◇

Blocks:   █ ▓ ▒ ░

Template Files

Located in: assets/templates/

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Marketing & SEO
First SeenJun 3, 2026
View on GitHub

Recommended

More Marketing & SEO →
multi-domain-brand-seo

kostja94/marketing-skills

multi domain brand seo
723
567
email-marketing

claude-office-skills/skills

email marketing
2.8k
182
seo-sitemap

agricidaniel/claude-seo

seo sitemap
2.1k
7.9k
social-media-marketing

dengineproblem/agents-monorepo

social media marketing
1.2k
4
email-marketing

kostja94/marketing-skills

email marketing
855
567
seo-keyword-strategist

sickn33/antigravity-awesome-skills

seo keyword strategist
435
39.4k