<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Benjamin</title>
    <description>The latest articles on DEV Community by Benjamin (@brandmd).</description>
    <link>https://dev.to/brandmd</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3815045%2Fc8d7e3eb-ac45-48bf-9cbb-bc091134f706.jpg</url>
      <title>DEV Community: Benjamin</title>
      <link>https://dev.to/brandmd</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/brandmd"/>
    <language>en</language>
    <item>
      <title>How I stopped copy-pasting brand context into every AI prompt</title>
      <dc:creator>Benjamin</dc:creator>
      <pubDate>Tue, 10 Mar 2026 15:37:46 +0000</pubDate>
      <link>https://dev.to/brandmd/how-i-stopped-copy-pasting-brand-context-into-every-ai-prompt-57db</link>
      <guid>https://dev.to/brandmd/how-i-stopped-copy-pasting-brand-context-into-every-ai-prompt-57db</guid>
      <description>&lt;h1&gt;
  
  
  How I stopped copy-pasting brand context into every AI prompt
&lt;/h1&gt;

&lt;p&gt;This started as a workflow problem.&lt;/p&gt;

&lt;p&gt;I was doing brand work with AI tools — ChatGPT and Claude mostly — and every new conversation started the same way: copy the brand colors, paste the font names, write out the tone of voice rules, add what words to avoid. Sometimes 400 words just to set context. And maybe 60% of outputs actually felt on-brand. The AI would get the colors right but miss the tone. Or nail the tone and get the terminology wrong.&lt;/p&gt;

&lt;p&gt;I kept thinking the AI wasn't good enough. Then I started looking at how I was feeding it the information.&lt;/p&gt;

&lt;h2&gt;
  
  
  The format problem
&lt;/h2&gt;

&lt;p&gt;AI doesn't process brand guidelines the way a human does. It processes structured information. When you paste a wall of brand guideline text into a prompt, you're asking the model to extract structure from something unstructured — it guesses. Inconsistent input, inconsistent output.&lt;/p&gt;

&lt;p&gt;Longer prompts mostly don't fix this. Better structure does.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I did instead
&lt;/h2&gt;

&lt;p&gt;I started restructuring the same brand info as a markdown file — hierarchical, with explicit sections:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gh"&gt;# Brand Identity&lt;/span&gt;
Company: YourCo

&lt;span class="gu"&gt;## Color Palette&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Primary: #2C3E50 (Deep Navy) — headlines, CTAs only
&lt;span class="p"&gt;-&lt;/span&gt; Accent: #E74C3C (Signal Red) — alerts only
&lt;span class="p"&gt;-&lt;/span&gt; Background: #FAFAFA

&lt;span class="gu"&gt;## Typography&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Display: Playfair Display Bold
&lt;span class="p"&gt;-&lt;/span&gt; Body: Inter Regular 16px
&lt;span class="p"&gt;-&lt;/span&gt; Code: JetBrains Mono

&lt;span class="gu"&gt;## Voice &amp;amp; Tone&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Direct, not corporate
&lt;span class="p"&gt;-&lt;/span&gt; Confident without being arrogant
&lt;span class="p"&gt;-&lt;/span&gt; Active voice always
&lt;span class="p"&gt;-&lt;/span&gt; Avoid: "leverage", "synergy", "game-changing"

&lt;span class="gu"&gt;## Messaging&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Lead with the problem, not the product
&lt;span class="p"&gt;-&lt;/span&gt; Proof before claims
&lt;span class="p"&gt;-&lt;/span&gt; CTAs: action verbs only ("Try it", "See how it works")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then I'd load it as a Claude Project reference file, or paste it into a GPT's system instructions. The difference was immediate. Tone consistency improved right away — the AI started avoiding banned phrases without being reminded. Color and typography references became reliable. Fewer correction loops.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to deploy it
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Claude Projects&lt;/strong&gt;: Add the file as a Project resource. Every conversation in that project inherits the brand context automatically — no copy-paste required.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ChatGPT&lt;/strong&gt;: Paste the file content in a custom GPT's system instructions, or add it as an attachment to a conversation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;API / system prompts&lt;/strong&gt;: Include it in your system message. Works for any application you're building on top of these models.&lt;/p&gt;

&lt;h2&gt;
  
  
  The extraction problem
&lt;/h2&gt;

&lt;p&gt;The hard part isn't using the file — it's building it from existing brand assets. If your guidelines live in a PDF, Figma file, or PowerPoint deck, you're manually translating them. That's tedious, especially when you're handling multiple brands.&lt;/p&gt;

&lt;p&gt;Doing this by hand for every client got old fast, so I built &lt;a href="https://www.brandmd.dev" rel="noopener noreferrer"&gt;brandMD&lt;/a&gt; to automate the extraction step. Upload a brand PDF, it parses it and outputs a structured markdown file ready for any AI tool. $9.99 one-time, processed client-side (nothing leaves your browser).&lt;/p&gt;

&lt;p&gt;You can &lt;a href="https://www.brandmd.dev/landing/sample" rel="noopener noreferrer"&gt;explore full extractions for real brands&lt;/a&gt; — Anthropic, Slack, and others — so you can see what the output actually looks like before committing.&lt;/p&gt;

&lt;p&gt;The manual approach works too. If you're working with one brand and have the time, 30 minutes to build the file once is worth it. The consistency improvement is real.&lt;/p&gt;

&lt;p&gt;Happy to answer questions or share more specific examples of what the structured files look like for different brand types.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>branding</category>
      <category>chatgpt</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
