Complete AI TrainingYourJobSkills for your job

Install

Add YourJob to your AI

Two ways. Connect the MCP server and your assistant gets a coach plus live skills that update themselves. Download a pack when you want files on disk.

MCP endpoint: https://yourjob.completeaitraining.com/mcp · Auth: OAuth (Claude, ChatGPT) or Authorization: Bearer <token>create a token.

Claude (claude.ai & desktop)

Connect once, your coach and skills follow you into every chat.

  1. Open claude.ai → Settings → Connectors → "Add custom connector". Name it "YourJob", URL: https://yourjob.completeaitraining.com/mcp. Click Connect and log in with your Complete AI subscriber email.
  2. Start a chat and ask: "What's my brief today?" or "Which skills fit my job?" — Claude will call the YourJob tools.
  3. Optional — file-based skills: download the "Claude" pack and upload it under Settings → Capabilities → Skills. Live MCP skills stay current automatically; uploaded files do not.
  4. Optional — daily brief: create a scheduled task in Claude: "Every weekday at 8:00, run my YourJob morning brief."

Log in to download packsMCPFiles

Claude Code

Terminal-native: MCP for the coach, a plugin for the skills.

  1. Create a personal token on your account page, then run the command below.
  2. In any project: `claude` → "/mcp" shows YourJob connected. Ask for your brief, or say "load the skill for writing a campaign brief".
  3. File-based skills: download the Claude pack, unzip, then `claude plugin install ./<folder>` (the pack ships a .claude-plugin manifest) — or `sh install.sh --claude`.
claude mcp add --transport http yourjob https://yourjob.completeaitraining.com/mcp --header "Authorization: Bearer <YOUR-TOKEN>"

Log in to download packsMCPFiles

ChatGPT

Add as a connector; use the pack text in Projects or Custom GPTs.

  1. ChatGPT → Settings → Connectors → enable Developer mode (Plus/Pro/Team/Enterprise) → "Create" → server URL: https://yourjob.completeaitraining.com/mcp → Authentication: OAuth. Log in with your subscriber email.
  2. In a chat, enable the YourJob connector under "+" → Tools, then ask for your brief or your skills.
  3. No connector access? Download the "ChatGPT / Kimi / Grok" pack and paste ALL-SKILLS.md (or a single skill) into a Project's instructions or a Custom GPT.

Log in to download packsMCPFiles

Codex CLI

MCP via config.toml; skills into .agents/skills.

  1. Add the block below to ~/.codex/config.toml (create a token on your account page).
  2. Download the Codex pack: it lays skills out as .agents/skills/<id>/SKILL.md with an AGENTS.md index. Run `sh install.sh --codex` for a global install.
[mcp_servers.yourjob]
url = "https://yourjob.completeaitraining.com/mcp"
http_headers = { Authorization = "Bearer <YOUR-TOKEN>" }

Log in to download packsMCPFiles

Kimi (K2 / Kimi Code)

Standard mcpServers JSON, or paste the skills text.

  1. Kimi Code / Kimi CLI read the standard mcpServers JSON (below). Add it to Kimi's MCP config file (see Kimi's docs for the current path — commonly ~/.kimi/mcp.json).
  2. In the Kimi web app, paste ALL-SKILLS.md from the "ChatGPT / Kimi / Grok" pack into your system prompt or a Kimi+ project.
{
  "mcpServers": {
    "yourjob": {
      "url": "https://yourjob.completeaitraining.com/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR-TOKEN>"
      }
    }
  }
}

Log in to download packsMCPFiles

Grok

Paste skills text now; MCP when xAI enables custom connectors on your plan.

  1. Download the "ChatGPT / Kimi / Grok" pack. Paste ALL-SKILLS.md into a Grok project/system prompt, or paste one SKILL.md at the start of a conversation.
  2. Grok Build (xAI's coding CLI) reads SKILL.md folders in .agents/skills — use the Codex pack for that.

Log in to download packsFiles

Cursor / Windsurf / IDEs

MCP through the standard JSON; skills as rules.

  1. Cursor: Settings → MCP → "Add new global MCP server" and paste the JSON below (or save it to ~/.cursor/mcp.json). Windsurf and most IDE agents accept the same shape.
  2. Download the Cursor pack: .cursor/rules/<id>.mdc files, attached on demand.
{
  "mcpServers": {
    "yourjob": {
      "url": "https://yourjob.completeaitraining.com/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR-TOKEN>"
      }
    }
  }
}

Log in to download packsMCPFiles

Gemini CLI / Antigravity

Same JSON in settings.json; skills into ~/.agents/skills.

  1. Gemini CLI: add the mcpServers JSON to ~/.gemini/settings.json.
  2. Antigravity watches ~/.agents/skills — download the plain pack and run `sh install.sh --agents`. Install a focused pack, not everything: too many skills can exhaust the context window.
{
  "mcpServers": {
    "yourjob": {
      "url": "https://yourjob.completeaitraining.com/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR-TOKEN>"
      }
    }
  }
}

Log in to download packsMCPFiles

Any other tool

If it speaks MCP or reads SKILL.md, it works.

  1. MCP: Streamable HTTP endpoint https://yourjob.completeaitraining.com/mcp with header Authorization: Bearer <token> (or OAuth for clients that support it).
  2. Files: the plain pack has <id>/SKILL.md folders — the de-facto standard read by Claude, Codex, Gemini CLI, Antigravity, Kiro, OpenCode and Copilot.
  3. REST: https://yourjob.completeaitraining.com/api/skills (public metadata) and https://yourjob.completeaitraining.com/api/skills/<id>?content=1 with your Bearer token.
{
  "mcpServers": {
    "yourjob": {
      "url": "https://yourjob.completeaitraining.com/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR-TOKEN>"
      }
    }
  }
}

Log in to download packsMCPFiles

Daily brief without opening the app

Assistants with scheduled tasks (Claude, ChatGPT) can run your brief for you. Create a task with this text:

Every weekday at 08:00, call the YourJob tool get_my_brief and present my brief. End with one concrete thing we could do together today.

Keeping skills current

Connected assistants always read the live catalog — nothing to update. Downloaded packs are snapshots: re-download after the "last updated" date on the home page changes, or ask your assistant "what's new since my last download".