Skip to content
Free forever · No signup required

📚 Learning Hub

Roadmaps, cheat sheets, prompt packs, and step-by-step guides. Everything you need to go from "what is AI?" to shipping your first automation. Deep dives, challenges, and mentorship happen in the Discord.

🗺️

Learning Roadmaps

Structured 8-week paths: beginner → builder

🗺️ AI Nexus Academy: Learning Roadmaps


Roadmap 1: AI for Complete Beginners


Week 1-2: AI Foundations
├── What is AI vs ML vs Deep Learning
├── How LLMs actually work (simple explanation)
├── Types of AI: Generative, Predictive, Analytical
├── Practice: Use ChatGPT/Claude for 5 different tasks
└── ✅ Milestone: You can explain AI to a friend

Week 3-4: Talking to AI
├── Prompt Engineering fundamentals
├── System prompts vs user prompts
├── Chain-of-thought reasoning
├── Practice: Get AI to write, code, analyze, brainstorm
└── ✅ Milestone: You can reliably get good outputs

Week 5-6: AI Tools Ecosystem
├── Free AI tools overview (20+ tools)
├── When to use which tool
├── Building simple workflows
├── Practice: Automate one personal task with AI
└── ✅ Milestone: AI is part of your daily workflow

Week 7-8: Build Your First AI Project
├── Choose: Bot, automation, or content tool
├── Use no-code/low-code first
├── Share in #project-showcase
└── ✅ Milestone: You've shipped something

Roadmap 2: Prompt Engineering Mastery


Level 1: Foundation (Week 1-2)
├── Role prompting
├── Few-shot prompting
├── Chain-of-thought
├── Structured outputs (JSON, markdown)
└── ✅ Exercise: Prompt a recipe from 3 different angles

Level 2: Advanced Techniques (Week 3-4)
├── Prompt chaining
├── Tree-of-thought
├── Self-consistency
├── ReAct prompting
├── System prompt design patterns
└── ✅ Exercise: Build a multi-step prompt chain

Level 3: Specialization (Week 5-6)
├── Code generation prompts
├── Creative writing prompts
├── Analysis/Research prompts
├── Business/Strategy prompts
└── ✅ Exercise: Create specialized prompts for your domain

Level 4: Production Systems (Week 7-8)
├── Prompt versioning and testing
├── A/B testing prompts
├── Cost optimization (token efficiency)
├── Safety and guardrails
└── ✅ Exercise: Build a prompt management system

Roadmap 3: AI Automation


Level 1: Automation Foundations (Week 1-2)
├── What can (and can't) be automated
├── Triggers, actions, and workflows
├── Webhooks explained simply
├── Practice: Set up a webhook
└── ✅ Tool: n8n.io (free self-hosted)

Level 2: n8n Workflows (Week 3-4)
├── Core nodes: HTTP, Webhook, Schedule
├── Data transformation
├── Error handling
├── Practice: RSS → AI Summarize → Post workflow
└── ✅ Project: Auto-posting content pipeline

Level 3: OpenClaw Agents (Week 5-6)
├── OpenClaw fundamentals
├── Memory and context
├── Tool integration
├── Multi-agent patterns
└── ✅ Project: Build an autonomous agent

Level 4: Production Automation (Week 7-8)
├── Monitoring and alerting
├── Cost management
├── Scaling workflows
├── Security best practices
└── ✅ Project: Production-ready automation system

Roadmap 4: Python for AI


Level 1: Python Basics (Week 1-2)
├── Variables, loops, functions
├── Data structures (lists, dicts, sets)
├── File I/O
├── pip and virtual environments
└── ✅ Project: CLI tool that uses an API

Level 2: API Integration (Week 3-4)
├── HTTP requests with Python
├── OpenAI/Anthropic SDKs
├── JSON parsing and handling
├── Error handling and retries
└── ✅ Project: AI-powered Discord bot

Level 3: AI Libraries (Week 5-6)
├── LangChain basics
├── LlamaIndex for RAG
├── Embeddings and vector search
├── Local models with Ollama
└── ✅ Project: RAG chatbot on your documents

Level 4: Production Python (Week 7-8)
├── async/await for APIs
├── Rate limiting and batching
├── Logging and monitoring
├── Deployment (Docker, Railway, Fly)
└── ✅ Project: Deployed AI service

Roadmap 5: Building AI Businesses


Level 1: Opportunity Identification (Week 1-2)
├── Where AI creates real value
├── Market analysis frameworks
├── Identifying underserved niches
├── No-code AI business ideas
└── ✅ Exercise: Validate 3 AI business ideas

Level 2: MVP Building (Week 3-4)
├── Building with no-code tools
├── Wrapping AI APIs
├── Landing page and waitlist
├── First 10 users
└── ✅ Milestone: Launch MVP

Level 3: Growth (Week 5-6)
├── Content marketing with AI
├── SEO for AI products
├── Community building
├── Pricing strategies
└── ✅ Milestone: First paying customer

Level 4: Scaling (Week 7-8)
├── Automating operations
├── Customer support with AI
├── Team building
├── Fundraising or bootstrapping
└── ✅ Milestone: Sustainable revenue

Roadmap 6: Local AI & Open Source


Level 1: Setup (Day 1-3)
├── Install Ollama
├── Download and run first model
├── Compare models (Llama, Mistral, Qwen)
├── GPU vs CPU considerations
└── ✅ Milestone: Running local LLM

Level 2: Local Tools (Day 4-7)
├── LM Studio
├── LocalAI
├── Text generation web UI
├── Open WebUI
└── ✅ Milestone: Full local AI setup

Level 3: RAG & Embeddings (Week 2)
├── Local embeddings
├── ChromaDB / Qdrant
├── Document chunking strategies
├── Build local RAG
└── ✅ Project: Chat with your documents locally

Level 4: Fine-tuning (Week 3-4)
├── LoRA vs full fine-tuning
├── Dataset preparation
├── Training with unsloth/Axolotl
├── Evaluation and deployment
└── ✅ Project: Fine-tuned model for specific task

    
  
📋

Cheat Sheets

Prompt frameworks & quick references

📋 AI Nexus Academy: Cheat Sheets


Cheat Sheet 1: Prompt Engineering Quick Reference


┌──────────────────────────────────────────────────────────┐
│ PROMPT ENGINEERING CHEAT SHEET │
├──────────────────────────────────────────────────────────┤
│ │
│ 📐 FRAMEWORKS │
│ ─────────── │
│ • ROLE: "Act as a [expert role]" │
│ • TASK: "Your task is to [specific task]" │
│ • FORMAT: "Format your response as [JSON/MD/list]" │
│ • CONSTRAINTS: "Keep it under X words, no jargon" │
│ • CONTEXT: "Here's the background: [info]" │
│ │
│ 🎯 TECHNIQUES │
│ ─────────── │
│ • Few-shot: Give 2-3 examples before asking │
│ • Chain-of-thought: "Let's think step by step" │
│ • Self-consistency: Ask 3 times, take majority │
│ • Persona: "You're a [role] with [trait]" │
│ • Negative prompt: "Don't include X" │
│ • Iterative: "Now improve the above by." │
│ │
│ ⚡ OPTIMIZATION TIPS │
│ ────────────────── │
│ • Most important instructions FIRST │
│ • Be specific: "Python 3.11" not "Python" │
│ • Break complex tasks into steps │
│ • Use delimiters: """ or --- to separate sections │
│ • Ask for output format explicitly │
│ • If output is wrong, tell it how to fix it │
│ │
│ 🐛 DEBUGGING │
│ ─────────── │
│ • Q: Output is too vague → A: Add constraints │
│ • Q: Output is wrong → A: Add examples │
│ • Q: Output is inconsistent → A: Add format spec │
│ • Q: Misses context → A: Provide background first │
│ │
└──────────────────────────────────────────────────────────┘

Cheat Sheet 2: AI Tools Quick Reference


┌──────────────────────────────────────────────────────────┐
│ AI TOOLS QUICK REFERENCE │
├──────────────────────────────────────────────────────────┤
│ │
│ 💬 CHAT & ASSISTANTS ⚡ AUTOMATION │
│ ChatGPT → chat.openai.com n8n → n8n.io │
│ Claude → claude.ai OpenClaw → openclaw.ai │
│ Gemini → gemini.google Zapier → zapier.com │
│ DeepSeek → chat.deepseek Make → make.com │
│ Perplexity→ perplexity.ai │
│ 🎨 IMAGE │
│ 💻 CODING DALL·E 3 → via ChatGPT │
│ Copilot → github.com Midjourney→ midjourney.com│
│ Cursor → cursor.sh SD → stability.ai │
│ Claude → claude.ai/code │
│ 📝 WRITING │
│ 🔍 RESEARCH Grammarly → grammarly │
│ Perplexity→ perplexity.ai Lex.page → lex.page │
│ Elicit → elicit.com QuillBot → quillbot.com │
│ Scite → scite.ai │
│ │
│ "Use the right tool. Free tiers exist for all above." │
│ │
└──────────────────────────────────────────────────────────┘

Cheat Sheet 3: AI Automation Quick Reference


┌──────────────────────────────────────────────────────────┐
│ AI AUTOMATION CHEAT SHEET │
├──────────────────────────────────────────────────────────┤
│ │
│ 🔄 COMMON AUTOMATION PATTERNS │
│ ──────────────────────────── │
│ │
│ CONTENT PIPELINE │
│ RSS Feed → AI Summarize → Publish to Discord/Blog │
│ Tools: n8n + OpenAI + Webhook │
│ │
│ SOCIAL MONITOR │
│ Monitor Keywords → AI Analyze → Alert or Respond │
│ Tools: n8n + Twitter API + Claude │
│ │
│ DATA ENRICHMENT │
│ Incoming Data → AI Extract/Transform → Database │
│ Tools: n8n + OpenAI + Airtable/Notion │
│ │
│ CUSTOMER SUPPORT │
│ Email/Ticket → AI Draft Reply → Human Review → Send │
│ Tools: Zapier + Claude + Gmail │
│ │
│ ⚙️ n8N QUICK START │
│ 1. Install: docker run -d --rm -p 5678:5678 n8nio/n8n │
│ 2. Open: http://localhost:5678 │
│ 3. Templates: Workflow templates are built-in │
│ 4. Key nodes: Webhook, Schedule, HTTP Request, OpenAI │
│ │
│ 🦞 OPENCLAW QUICK START │
│ 1. Install: npm install -g openclaw │
│ 2. Config: openclaw init in your workspace │
│ 3. Skills: Give your agent tool abilities │
│ 4. Deploy: openclaw start │
│ │
└──────────────────────────────────────────────────────────┘

Cheat Sheet 4: API Integration Quick Reference


┌──────────────────────────────────────────────────────────┐
│ AI API INTEGRATION CHEAT SHEET │
├──────────────────────────────────────────────────────────┤
│ │
│ 🔑 API KEYS (get from:) │
│ OpenAI: platform.openai.com/api-keys │
│ Anthropic: console.anthropic.com │
│ Google AI: makersuite.google.com/app/apikey │
│ Cohere: dashboard.cohere.com/api-keys │
│ │
│ 📡 BASIC API CALL (Python) │
│ ──────────────────────── │
│ import openai │
│ client = openai.OpenAI(api_key="sk-.") │
│ resp = client.chat.completions.create( │
│ model="gpt-4o", │
│ messages=[{"role":"user","content":"Hello"}] │
│ ) │
│ print(resp.choices[0].message.content) │
│ │
│ 📡 ANTHROPIC API (Python) │
│ ──────────────────────── │
│ import anthropic │
│ client = anthropic.Anthropic(api_key="sk-.") │
│ resp = client.messages.create( │
│ model="claude-sonnet-4-20250514", │
│ max_tokens=1024, │
│ messages=[{"role":"user","content":"Hello"}] │
│ ) │
│ │
│ 💰 COST OPTIMIZATION │
│ ───────────────── │
│ • Use gpt-4o-mini for simple tasks │
│ • Cache common prompts │
│ • Set max_tokens per request │
│ • Batch requests when possible │
│ • Use streaming for real-time UX │
│ │
└──────────────────────────────────────────────────────────┘

    
  
🎯

Prompt Packs

Copy-paste prompt systems for real workflows

🎯 AI Nexus Academy: Prompt Packs


Pack 1: Beginner Prompts (10 prompts)

### 1. Explain Like I'm 5
Explain [topic] like I'm 5 years old. Use simple analogies,
avoid jargon, and give a real-world example I'd understand.
### 2. Summarize for Busy Me
Summarize the following in 3 bullet points under 15 words each.
Then give me 1 actionable takeaway: [paste text]
### 3. Learn Anything Faster
I want to learn [topic]. Create a 7-day study plan for a beginner.
Each day: 30 min of learning + 1 practical exercise.
### 4. Rewrite for Clarity
Rewrite this to be clearer and more concise. Keep the key message:
[paste text]
### 5. Brainstorm Ideas
Give me 10 creative ideas for [project/goal]. For each: one sentence
explaining it and why it might work.
### 6. Compare Options
Compare [Option A] vs [Option B] across: cost, ease of use, features,
and best use case. Give a recommendation at the end.
### 7. Find the Flaws
Read my reasoning below and point out any logical flaws, assumptions,
or blind spots I'm missing: [paste reasoning]
### 8. Write an Email
Write a professional email about [topic]. Tone: [friendly/professional].
Keep it under 150 words. Include a call to action.
### 9. Debug My Thinking
I'm trying to solve [problem]. Here's my approach: [describe].
What am I missing? What would you try instead?
### 10. Make This Visual
Describe how to create a diagram/chart that explains [concept].
What should be on the X and Y axes? What are the key data points?
---

Pack 2: Coding Prompts (10 prompts)

### 1. Code Review
Review this [language] code for: bugs, performance issues,
security vulnerabilities, and style improvements. Be specific:
[code block]
### 2. Refactor This
Refactor this code to be more readable and maintainable.
Explain each change: [code block]
### 3. Write Tests
Write unit tests for this function using [framework].
Cover edge cases, error states, and happy path:
[code block]
### 4. Explain Complex Code
Explain this code line by line. Assume I know [language] basics
but not advanced patterns: [code block]
### 5. Generate Boilerplate
Create a [language/framework] project scaffold for [purpose].
Include: project structure, config files, and a simple example.
### 6. API Design
Design a REST API for [service]. Include: endpoints, request/response
formats, auth method, and error handling strategy.
### 7. Performance Optimize
This [language] code is slow. Profile it and suggest optimizations.
Explain the time complexity of each suggestion: [code]
### 8. Convert Between Languages
Convert this [language A] code to [language B]. Preserve all functionality.
Note any idiomatic differences: [code]
### 9. Debug This Error
I'm getting [error message]. Here's the relevant code and what I've tried:
[code + context]. What's causing this and how do I fix it?
### 10. Architecture Decision
I'm designing [system]. The trade-off is [A] vs [B]. Help me decide by
analyzing: scalability, maintainability, cost, and time to implement.
---

Pack 3: Business Prompts (10 prompts)

### 1. Business Model Analysis
Analyze this business idea: [idea]. Evaluate: market size, revenue model,
competitive advantage, and biggest risk. Score it 1-10.
### 2. Customer Discovery
Create 10 customer discovery questions for [product/idea].
Questions should uncover: pain points, willingness to pay,
current solutions, and decision criteria.
### 3. Go-to-Market Strategy
Design a 90-day go-to-market plan for [product]. Include:
target audience, channels, key messaging, and success metrics.
### 4. Pricing Strategy
Suggest 3 pricing models for [product]. For each: pros, cons,
and which customer segments it suits best.
### 5. Competitor Analysis
Analyze my competitors in [market]. For each: strengths, weaknesses,
pricing, and what I can learn from them.
### 6. Pitch Deck Outline
Create a 10-slide pitch deck outline for [company]. For each slide:
headline, 3 bullet points, and what visual to include.
### 7. Growth Hacking Ideas
Give me 10 growth hacking ideas for [product/service]. Prioritize
by: implementation effort, expected impact, and time to result.
### 8. Content Strategy
Design a content strategy for [niche]. Include: content types,
publishing cadence, distribution channels, and KPIs.
### 9. Automate This Process
I spend X hours/week on [task]. Design an automation workflow
using AI tools to reduce this by 80%. Include specific tools and steps.
### 10. Investor Update
Write an investor update template for my startup. Include:
progress metrics, challenges, asks, and upcoming milestones.
---

Pack 4: Study Prompts (10 prompts)

### 1. Generate Flashcards
Create 20 flashcards from this text. Question on one side,
answer on the other. Cover the key concepts:
[paste study material]
### 2. Quiz Me
Quiz me on [topic]. Give me 5 questions one at a time.
Wait for my answer, then tell me if I'm right and explain why.
### 3. Create a Study Guide
Turn this material into a structured study guide with:
key terms, main concepts, connections between ideas, and practice questions:
[paste material]
### 4. Explain the Hard Part
I'm struggling with [concept]. Explain it 3 different ways:
1) with an analogy, 2) with a real example, 3) the technical version.
### 5. Test My Knowledge
I think I understand [topic]. Ask me progressively harder questions
until you find a gap in my knowledge. Then teach me that part.
### 6. Create a Cheat Sheet
Create a one-page cheat sheet for [topic]. Use bullet points,
short phrases, and a logical structure. Include formulas/key frameworks.
### 7. Practice Problems
Generate 5 practice problems for [topic] at [difficulty] level.
Show answers separately with step-by-step explanations.
### 8. Socratic Method
Teach me [topic] using the Socratic method. Ask me questions
that lead me to discover the answers myself.
### 9. Connect Concepts
Explain how [concept A] and [concept B] are related.
Use analogies and show how understanding one helps with the other.
### 10. Study Schedule
I have [X days] to learn [topic] for [goal]. Create a study schedule
with daily tasks, resources, and checkpoints to track progress.
---

Pack 5: Image Generation Prompts (10 prompts)

### 1. Professional Product Shot
Minimalist product photography of [item], clean white background,
soft studio lighting, shallow depth of field, 4K, commercial quality
### 2. Futuristic UI Design
Futuristic dashboard UI, dark mode, neon blue and purple accents,
glassmorphism, data visualizations, 4K, app screenshot style
### 3. Sci-Fi Environment
Wide-angle shot of a futuristic AI data center, blue LED lighting,
holographic displays, clean architecture, cyberpunk aesthetic, 8K
### 4. Character Design
Friendly robot character, Pixar style animation, soft lighting,
pastel colors, expressive eyes, 3D render, white background
### 5. Data Visualization
Beautiful abstract visualization of a neural network, glowing nodes,
connecting lines, deep blue background, scientific diagram style
### 6. Logo Design
Minimalist tech logo for "Nexus AI", combining a brain and circuit,
flat design, blue and white, professional, vector style, transparent bg
### 7. Social Media Graphic
Instagram post background for AI learning tips, modern typography,
gradient background purple to blue, clean layout, professional
### 8. Presentation Slide
Professional presentation slide background, subtle grid pattern,
clean white space, blue accent corner, suitable for text overlay
### 9. Book Cover
Book cover for "AI for Beginners", neural network pattern,
warm colors, approachable design, educational, 3D mockup
### 10. Concept Art
Concept art of a futuristic classroom where AI assists students,
holographic displays, natural lighting, optimistic tone, 4K
---

Pack 6: Productivity Prompts (10 prompts)

### 1. Task Breakdown
Break down [project] into actionable steps. Order by dependency.
Estimate time for each step. Flag parallel tasks.
### 2. Priority Matrix
Help me prioritize these tasks using the Eisenhower Matrix:
[list tasks]. Sort into: urgent+important, important not urgent,
urgent not important, neither.
### 3. Meeting Notes
Take structured meeting notes from this transcript. Include:
decisions made, action items with owners, key discussion points:
[paste transcript]
### 4. Decision Framework
Help me decide between [option A] and [option B]. Create a
decision matrix with weighted criteria. Score both options.
### 5. Weekly Review
Guide me through a weekly review. Prompt me for: wins, challenges,
lessons learned, and priorities for next week. Ask one question at a time.
### 6. SOP Creation
Create a Standard Operating Procedure for [process]. Include:
steps, tools needed, expected time, quality checklist, and troubleshooting.
### 7. Goal Setting
Help me set SMART goals for [area/project]. Turn vague ambitions
into Specific, Measurable, Achievable, Relevant, Time-bound targets.
### 8. Email Triage
I have [X] unread emails. Help me draft a system to triage them:
urgent replies, read-and-file, newsletters to unsubscribe, delegate.
### 9. Habit Design
I want to build the habit of [habit]. Design a 21-day plan using:
implementation intentions, habit stacking, and environmental design.
### 10. Project Retrospective
Guide me through a retrospective for [project]. Cover:
what went well, what could improve, action items, and celebrate wins.

    
  

Want the full experience?

Challenges, mentorship, project feedback, and the whole community are on Discord. Free to join.

🚀 Join AI Nexus Academy