AIM • Internal Onboarding

Worker Setup
in under 5 minutes.

Get your Claude Code plugged into everything you need to run AIM client work, email marketing and support bots, at the same level Danilo does.

01 / SETUP

Three steps. That's it.

Danilo sent you a folder called worker-setup. Drop it on your Desktop, paste a prompt into Claude, restart. Done.

  1. Put the worker-setup folder on your Desktop

    Danilo sent you a zip file (over WhatsApp or Google Drive). Download it. Right-click the zip and choose Extract All, Windows unzips it. Drag the resulting worker-setup folder onto your Desktop.

    It needs to be on the Desktop exactly. Not Downloads, not Documents, Desktop.

  2. Open Claude Code and paste this prompt

    Open a fresh Claude Code session. Copy the entire block below and paste it as your first message. Hit enter. Claude will figure out the right Windows paths and run all the setup itself.

    Copy this whole block, paste into Claude Code
    I'm on Windows. The worker-setup folder is on my Desktop. Set everything up for me, figure out the right Windows paths yourself (the Claude Code config folder, my user home folder, etc.) and run these in order. Confirm each one is done before moving to the next:
    
    1. Copy worker-setup\CLAUDE.md to my home folder as CLAUDE.md (overwrite if it exists).
    
    2. Make sure my Claude Code skills folder exists, then copy everything from worker-setup\skills\ into it.
    
    3. Copy all .py files from worker-setup\scripts\ into my Claude Code config folder.
    
    4. Copy all .json files from worker-setup\credentials\ into my Claude Code config folder.
    
    5. Look inside the Claude Code projects folder, find the one that matches my Windows username, make a memory subfolder inside it if it doesn't exist, then copy everything from worker-setup\memory\ into that memory folder.
    
    6. Run the Google authorization script, it's google_auth_setup.py with client_secret.json as the argument. Use python or python3, whichever works. A browser will open and I'll log in with the Google account Danilo gave me, then click Allow.
    
    7. When everything is done, tell me to fully close and reopen Claude Code so it picks up the new skills and memory.
  3. Close and reopen Claude Code

    Once Claude tells you it's done, fully close Claude Code (close the window or Alt+F4) and reopen it. This makes it pick up the new skills and memory files.

    Test it worked: in your fresh Claude Code session, type /hankox. If Claude responds with the HankoX operating system, you're fully set up.
If anything fails: tell Claude what error you got, it'll figure out what to do. If you're really stuck, message Danilo on WhatsApp with a screenshot.
02 / EMAIL WORK

How to ship a campaign.

When Danilo gives you an email task, here's how it goes. You don't write code. You don't run scripts. You describe what you want in plain English, Claude does the work.

The flow

Danilo sends a brief → which client, what the campaign is about, when it sends, what audience. You open Claude Code and tell Claude what you're working on. Claude pulls the right skill automatically, drafts the copy. You iterate until it's good. Claude creates a Google Doc with the copy. If a banner is needed, you ask Claude to brief Jesus, it posts the doc link in #jesus-design on Discord. Once design is back, you tell Claude to upload to ActiveCampaign (NTW) or SendGrid (HankoX) and schedule it. Done.

Example prompts you can copy

Write a weekly campaign for HankoX about gold breaking new highs. Audience is active traders. Send time: Friday 10am UTC. Curiosity-driven, no em dashes, no emojis.
Write a 3-email re-engagement sequence for NTW for our cold list. First email "Sent from iPhone" style, casual.
Audit this subject line for spam triggers: "Last chance, your 50% bonus expires tonight"
Take this copy I wrote, put it in a Google Doc titled "HankoX Friday weekly", then send Jesus a brief on Discord with the doc link asking for a banner showing gold breaking out of resistance.
Upload the HTML file on my Desktop called hankox-friday.html to SendGrid as a campaign called "Gold Breakout Friday", schedule for 2026-04-25 10:00 UTC, list ID 12345.
Hard rules, never break these:
  • NO em dashes anywhere, not in subject lines, body, Discord, anywhere
  • NO emojis in body copy
  • "Fewpips" is always lowercase p, never "FewPips"
  • NTW and HankoX are completely separate clients, never mix branding or links
  • Always send Jesus the Google Doc link, never raw copy

Claude already knows these. But if you spot it doing something wrong, push back.

03 / BOT WORK

How to spin up a client bot.

When Danilo asks you to build a support bot for a new client. You're cloning the Fewpips pattern, not starting from scratch.

The Fewpips bot took weeks to nail. Every gotcha (greeting doubles, infinite loops, markdown leaks, the wrong API version) is documented in the bot-builder skill. When you build for a new client, you're cloning that solved pattern.

What Danilo gives you before you start

If anything's missing, message Danilo before starting. Don't try to fill gaps yourself.

The flow

You open Claude Code, paste in everything Danilo sent. Claude invokes /bot-builder automatically, walks you through forking the Fewpips template into a new GitHub repo, swapping all the brand-specific code (system prompt, greeting, knowledge base, support email, Trustpilot URL), helps you set up the LiveChat dashboard, deploys to Railway, gives you a 12-item test checklist for the live bot.

Example prompt to start

I need to build a support bot for HankoX, modeled on the Fewpips bot. Use the bot-builder skill. Here's what Danilo gave me:

Knowledge base: [paste KB or attach file]
LiveChat account ID: ...
LiveChat PAT: ...
Bot agent ID: ...
Brand: HankoX (broker, hankox.com)
Support email: support@hankotrade.com
Trustpilot URL: ...
OpenAI API key: ...

Walk me through the entire build, step by step.
CRITICAL, when deploying to Railway, always use railway up --detach.

Never use git push alone or railway redeploy. Other deploy commands leave the OLD container alive alongside the new one for minutes, both receive the same webhooks and send DUPLICATE MESSAGES to users. This is the #1 bug from Fewpips. Burn it into memory. Claude will remind you, but worth knowing yourself.

04 / SKILLS

Your tools.

Each skill is a focused playbook. Type the command in Claude Code to invoke it. You don't need to memorize this, describe your task and Claude usually picks the right one.

CommandWhat it gives youWhen to invoke it
/ntw-everything Full NTW Markets operating system, branding, tools, ActiveCampaign API, all processes Any NTW task; especially first thing in a session
/ntw-fulfillment NTW email production end-to-end, write copy, build HTML, upload to ActiveCampaign When shipping an NTW campaign from scratch
/hankox Full HankoX operating system, branding, SendGrid setup, IB program, Frank's preferences Any HankoX task
/email-copywriting Email Matrix SOP + Copy Mega Doc, copywriting fundamentals and frameworks Writing copy for Fewpips, MagnoFX, or generic email work
/email-re-engagement Cold list warmup, KISR template, "Sent from iPhone" engagement bait, credibility checklist Re-engaging churned lists, warming cold leads, fixing low engagement
/email-segmentation 15 segmentation strategies + CRM tagging frameworks Planning a new client's CRM setup or segmented send
/email-spam-checker 188-word spam trigger list + subject line audit checklist Auditing every subject line before send
/jeremy-haynes-sop 31 Jeremy Haynes SOPs, the master email marketing knowledge base Strategic questions, advanced tactics, deep frameworks
/bot-builder Step-by-step playbook for building a new client LiveChat AI bot from the Fewpips template When Danilo asks you to build a support bot for a new client
05 / MEMORY

What Claude already knows.

These auto-load every time Claude starts. You don't invoke them. They're available as context whenever a related topic comes up.

FileWhat's in it
MEMORY.mdThe index, points to all other memory files, lists hard rules and skill commands
fewpips-bot.mdFewpips livechat bot, full technical details, deployment commands, every gotcha learned. Reference when building bots for other clients.
hankox-knowledge.mdHankoX broker, products, accounts, IB program, branding, Frank's contact info
hankox-email-performance.mdHankoX past email stats, what worked, what didn't, baseline open/click rates
ntw-knowledge.mdNTW Markets, products, accounts, branding, Nas + Steffon contact info
ntw-activecampaign.mdNTW ActiveCampaign, exact 3-step API workflow, list IDs, tagging, known quirks
ntw-bot.mdNTW Telegram bot, env vars, deployment notes (separate from livechat work)
magnofx-knowledge.mdMagnoFX broker, products, accounts, branding
weekly-email-campaigns.mdWeekly campaign templates and conventions across all clients
april-2026-email-calendars.mdSend calendars per client for April 2026
trader-psychology.mdTrader mindset, pain points, language patterns to use in copy
competitors.mdCompetitor brokers and prop firms, what they offer, how AIM clients differ
clarity-traders.mdClarity Traders competitor research
feedback_auto_approve.mdRule: Claude runs non-destructive commands without asking permission
feedback_welcome_sequence_copy.mdWelcome sequence rules, single purpose per email, no jargon, benefit framing
feedback_update_docs_in_place.mdRule: overwrite existing Google Docs, never create V2/V3
06 / BRANDING

Quick reference.

Detailed brand guides are in the memory files and skill files for each client.

ClientDomainSupport emailBrand colorNotes
NTW Marketsntwmarkets.comsupport@ntwmarkets.comOrange #fa982dRoboto font, Saint Lucia
HankoXhankox.comsupport@hankotrade.comBlue #00b4d8Inter font, Belize
Fewpipsfewpips.comsupport@fewpips.com(see knowledge file)Always lowercase p, never "FewPips"
MagnoFX(see knowledge file)(see knowledge file)(see knowledge file)Check magnofx-knowledge.md