Skip to content
Courses/Claude Code + Local AI/Advanced Hermes with Gemma and MLX

Advanced Hermes with Gemma and MLX

Hermes, Gemma, and MLX form one of the most talked-about stacks for local agents on Mac. The key isn't just speed: it's designing skills, memory, limits, and tests so the agent doesn't drift.

  • Understand what MLX brings to Apple Silicon.
  • Use Hermes skills as reusable operational memory.
  • Separate fast agent, verifier, and hybrid escalation.
Terminal
workflow:
  planner:
    provider: "ollama"
    model: "local-fast"
    max_steps: 4
  verifier:
    provider: "local"
    model: "qwen-coder"
    can_edit: false
  escalation:
    trigger:
      - "same_error_twice"
      - "tests_fail_after_patch"
      - "missing_context"

Workflow pattern

  • Create a narrow skill for the repeated task.
  • Test it in a small repo.
  • Record decisions and frequent errors.
  • Let Hermes reuse the skill, not the full history.
  • Escalate to MoA only when a task justifies it.
Terminal
skill:
  name: "review-nextjs-page"
  purpose: "Review Aulafy Next.js pages"
  when_to_use:
    - "new lesson"
    - "landing SEO"
  checks:
    - "metadata with canonical"
    - "official sources"
    - "correct ChapterNav"
    - "no secrets or personal data"

Official sources

  • Hermes Agent documentation
  • Hermes Skills System
  • Hermes Mixture of Agents
  • MLX documentation
  • MLX LM
Complete Aulafy mapSee how this lesson fits without leaving your path.

Complete Aulafy map

How all courses connect

This is not a checklist. Start with the foundation, choose an outcome, and go deeper only when your project needs more control.

  1. 1Understand
  2. 2Apply or build
  3. 3Operate with confidence
01

Choose an application

Turn the foundation into a visible outcome: a website, a business improvement, media, or an interactive experience.

Continue into the technical branch when you need to maintain code, data, or infrastructure.

02

Build with code

Prepare your environment, work with coding agents, and run models while keeping control of your projects.

This branch prepares you to design and operate reliable AI systems.

03

Take systems to production

Combine retrieval, agents, evaluation, security, deployment, and model adaptation when the problem requires it.

You do not need every course: choose the component your system needs and return as it grows.

View full catalogue