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.
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.
- 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.
- Start a chat and ask: "What's my brief today?" or "Which skills fit my job?" — Claude will call the YourJob tools.
- 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.
- 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.
- Create a personal token on your account page, then run the command below.
- In any project: `claude` → "/mcp" shows YourJob connected. Ask for your brief, or say "load the skill for writing a campaign brief".
- 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.
- 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.
- In a chat, enable the YourJob connector under "+" → Tools, then ask for your brief or your skills.
- 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.
- Add the block below to ~/.codex/config.toml (create a token on your account page).
- 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.
- 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).
- 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.
- 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.
- Grok Build (xAI's coding CLI) reads SKILL.md folders in .agents/skills — use the Codex pack for that.
Cursor / Windsurf / IDEs
MCP through the standard JSON; skills as rules.
- 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.
- 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.
- Gemini CLI: add the mcpServers JSON to ~/.gemini/settings.json.
- 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.
- MCP: Streamable HTTP endpoint https://yourjob.completeaitraining.com/mcp with header Authorization: Bearer <token> (or OAuth for clients that support it).
- Files: the plain pack has <id>/SKILL.md folders — the de-facto standard read by Claude, Codex, Gemini CLI, Antigravity, Kiro, OpenCode and Copilot.
- 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".
