A reliable, end-to-end workflow connecting Claude Chat, Claude Code, Google Drive, GitHub, and GoDaddy — built around your Claude Pro account, your tools, and your practice.
Before touching a single config file, get clear on what each Claude product actually does — and what it doesn't. Overlap is real. Role-clarity is what prevents you from doing the same work in three places.
Your creative partner and system architect. Use this to think out loud, plan design decisions, generate documentation, write copy, and review work before it hits code.
Your pair programmer inside your editor. File-aware, repo-aware, and context-aware. Use this when you're touching actual code — tokens, component files, config, CI scripts.
Use Claude Chat's style features plus your design tool of choice (Figma, Framer) for the visual styleguide. Claude generates HTML/CSS reference pages; your design tool handles the source-of-truth component library.
Desktop automation for file-level tasks. Use it to batch-process assets, move files between your Drive desktop sync and your repo, and run scheduled maintenance tasks without manual babysitting.
support.claude.ai before building critical workflows around preview features.
When you have a task, ask these questions in order:
Google Drive (desktop sync) is your source of truth for everything that isn't code. Your GitHub repo is your source of truth for everything that is. The two should never drift from each other. Here's how to set them up so they naturally stay in sync.
code/ subfolder exactly. Your Google Drive desktop app keeps code/ in sync with your local machine, which Claude Code reads from.
05-code/ available at a local path like ~/Google Drive/Design System/05-code/. You open that exact folder in VSCode. Claude Code reads everything inside it. When you push to GitHub, your deploy Action runs. One folder. Two systems. No manual copying.
This gets you from zero to a working repo with Claude Code running inside VSCode, hooked to GitHub, with a deploy action ready to push to your GoDaddy domain.
design-system. Don't initialize with a README yet — you'll push from local.05-code/ folder, and run:Google Drive/My Drive/.npm install -g @anthropic-ai/claude-code. Then open your repo folder in VSCode and launch Claude Code from the terminal with claude. There's also a native VSCode extension and a standalone desktop app — all use the same account.claude in your terminal and follow the login prompt. Use your Anthropic account credentials. Claude Code is billed separately from Claude Pro — check your plan at claude.ai/settings..github/workflows/deploy.yml that runs on push to main, builds your styleguide, and pushes to your GoDaddy server via FTP. You'll need to add your GoDaddy FTP credentials as GitHub repository secrets first.FTP_SERVER, FTP_USERNAME, FTP_PASSWORD. Find these in your GoDaddy hosting dashboard under FTP credentials.docs.anthropic.com/en/docs/claude-code/overview. The GitHub Actions + GoDaddy FTP pattern used in this guide is standard and well-documented — reference those docs when customizing your deploy steps.
Your design system lives in two places: a visual reference (HTML styleguide in your repo) and a logical foundation (design tokens). Claude Chat generates the decisions; Claude Code writes the files. Here's the order of operations.
Use Claude Chat to make and document all the system-level decisions before writing a single line of code. This is the thinking work.
02-styleguide/ folder.Once decisions are locked, switch to VSCode + Claude Code to convert them into files.
tokens.json and tokens.css. Ask it to verify contrast ratios in code.styleguide/index.html — a living reference page showing all your tokens rendered. This deploys to your domain and becomes your shareable client-facing styleguide.--color-purple-600: #534AB7. Semantic: --color-action-primary: var(--color-purple-600). Swap a primitive to rebrand without touching a single component.
Push to main on GitHub → your styleguide auto-deploys to your GoDaddy domain. No manual FTP uploads. No forgetting to publish. Here's the full flow.
.github/workflows/deploy.yml. The workflow runs in two jobs: first a validate step that checks your JSON token files, then FTP deploy steps that mirror each repo folder to GoDaddy. Use a prompt like: "Create a GitHub Actions workflow that validates token JSON files, then deploys each folder to GoDaddy via FTP on push to main. Use SamKirkland/FTP-Deploy-Action. Credentials from GitHub secrets."02-styleguide/ on your server corresponds to 02-styleguide/ in the repo. Log into GoDaddy → File Manager and confirm the target folders exist (or let the FTP action create them). Your styleguide will live at yourdomain.com/design-system/02-styleguide/.index.html, commit, and push to main. Watch the Actions tab in GitHub. Green check = deployed. Visit your domain path to confirm it's live.Tick these off in order. Each phase unlocks the next. Don't skip ahead — the checklist is sequenced so you're never blocked.