⚡ FORGE SPRINT 02 · HERMES × OPENCLAW · SAT 20 JUNE
Forge Sprint 02 · Multi-Agent Edition

Build a team of AI agents. Ship in 6 hours.

Forge Sprint 01 taught you to wield Claude Code as a solo agent. Sprint 02 levels up: you will build a team of AI agents that coordinate, communicate and ship code together, the same way production engineering teams have scaled from 15 pull requests per month to 1,000 using this exact methodology. You bring the architecture, the agent configuration and the skills you built before Sprint day.

Date · Sat 20 June 2026 Hours · 09:00 to 19:30 Venue · NMG Gurugram Format · Individual Builder

· Editions

Forge 2 runs as editions of the same challenge. Pick the edition you want. Open editions link straight to registration, completed editions link to their results.

20 JunSaturday
Forge 2 · Edition 1
Hermes Agent × OpenClaw · NMG Gurgaon

· Leaderboard

Scores only, the way Forge runs. Switch between the all-time best across every Forge 2 edition and a single edition ranking.

Results publish after the first edition. Check back once Edition 1 wraps.
SPONSORS
EastRouter

01 The Brief

Build a multi-agent AI system. Ship in 6 hours.

You will use Hermes Agent as your orchestrator, the "Product Owner" agent that plans, decomposes tasks and assigns work, and OpenClaw as your coding agent, the hands that write, test and deploy code. You will wire them together through Slack so every agent-to-agent conversation is visible, auditable and human-in-the-loop.

This is not a toy demo. This is the exact methodology used in production by companies running 2,000+ automated campaigns with 4 named AI agents coordinating through 30+ Slack channels.

The exact challenge brief and dataset are revealed on Sprint morning. You bring the architecture, the agent configuration and the skills you built during your pre-sprint study.

02 What You Will Build

Your submission must demonstrate a working multi-agent system with these five components.

01 · Orchestrator

Orchestrator Agent (Hermes)

Acts as Product Owner. Decomposes the challenge into tasks, assigns them to worker agents, tracks progress and reports structured status.

02 · Worker

Coding Agent (OpenClaw)

Receives tasks from the orchestrator, writes code, runs tests and pushes to the shared repository.

03 · Comms

Slack Communication Layer

All agent-to-agent communication happens through Slack channels. Agents never communicate directly. You, the human, monitor and can intervene at any point.

04 · Pipeline

CI/CD Pipeline

Automated tests run on every agent-generated commit. Only passing code reaches the release candidate stage. Final merge to main branch is human-approved.

05 · Health

Canary or Health Check

Some mechanism to verify the output quality, such as test pass rate, accuracy score or error classification.

Bonus Points
  • · Model routing: using an expensive model (Opus/GPT-4) for planning and a cheap model (DeepSeek/GLM/Nemo) for execution.
  • · Self-improving skills: agents that learn from errors and create reusable skills.
  • · Structured status reporting: the "What I Did / What's Left / What Needs Your Call" pattern.
  • · Error classification and auto-fix loops.

03 Example Problem Domains

The actual challenge is revealed on Sprint morning. These examples show the flavour.

Example 01

Multi-Agent SEO Audit Pipeline

Orchestrator decomposes a website audit into 5 parallel tasks: technical SEO, content quality, schema validation, performance and backlinks. Each task is assigned to a specialist sub-agent. Results are merged into a unified report.

Example 02

Automated Content Factory

Orchestrator reads a content brief, assigns research to Agent A, outline to Agent B, first draft to Agent C and formatting/export to Agent D. Human reviews the final output.

Example 03

Competitive Intelligence System

One agent scrapes competitor websites, another analyzes pricing, a third monitors social mentions and the orchestrator synthesizes a weekly competitive brief.

Example 04

Bug Triage + Auto-Fix

Feed the system a list of GitHub issues. Orchestrator prioritizes by severity, assigns to coding agents, agents write fixes, CI runs tests and the human reviews PRs.

Example 05

Your own idea

Build any multi-agent system that solves a real business problem. Surprise us.

04 The Stack

Required Tools

ToolRoleWhy
HermesHermes AgentOrchestratorOpen-source, self-improving, persistent memory, skill learning. The "brain" that coordinates everything.
OpenClawOpenClawCoding AgentMulti-channel gateway connecting chat apps to LLM coding agents. The "hands" that write code.
Slack (free workspace)CommunicationAll agent communication happens here. Human-in-the-loop. Matches production patterns.
GitHubVersion ControlPublic repo with incremental commits. Required for judging.

Model Options (All Free)

ModelProviderBest ForFree Tier
Kimi K2 InstructGroqGeneral coding + orchestration~1,000 req/day
DeepSeek V3DeepSeek APIBulk coding tasksFree tier available
Qwen2.5-Coder 7BOllama (local)Offline codingUnlimited (local)
GLM-4Zhipu AITask coordination / PO roleFree tier available

Model routing is encouraged. Use a stronger model for planning (Orchestrator) and a cheaper model for execution (Coding Agent). This mirrors the production pattern where Opus architects and DeepSeek executes.

05 Forge Roadmap Connection

SprintThemeDateConnection
Forge 1Claude Code (Solo Agent)Jun 6Foundation: learn to wield a single AI coding agent
Forge 2Hermes + OpenClaw (Multi-Agent)Jun 20Level up: orchestrate a TEAM of AI agents
Forge 3ProcessHQ HackathonJul 4Apply: use your agent team to build real product features

Forge 2 to 3 pipeline: the top performers from Forge 2 are automatically invited to Forge 3 (ProcessHQ Hackathon), where they will use the multi-agent skills they built here to solve real product development challenges for ProcessHQ.AI, a live SaaS product with 56+ enterprise demos and paying customers.

06 Sprint Day Schedule, 20 June 2026

Time (IST)BlockDetails
09:00 to 09:30Check-inPhoto ID, laptop setup, Slack workspace join, stack verification
09:30 to 09:50Ignition BriefingWelcome, Multi-Agent 10 Rules methodology overview, judging rubric
09:50Challenge data releasedReal dataset + problem brief published
10:00Build window opens6-hour countdown. Mentors available throughout.
10:30First checkpointVerify Hermes + OpenClaw + Slack are connected and communicating
13:00 to 14:00Catered lunchBuilders, mentors and judges eat together
14:00Architecture check-inForge Captain reviews agent configurations and Slack channel structures
15:30Scope-or-cutStabilize core pipeline. Drop anything that will not ship.
16:3030-minute warningFinal testing. Record Loom walkthrough.
17:00Submission lockGitHub commit frozen. Surprise second dataset released to judges.
17:00 to 17:30Auto-tester runJudges run every build against the surprise dataset
17:30 to 19:00Finalist demos5 minutes each: 3-min demo + 2-min Q&A from judges
19:00Judging deliberation
19:30Champions announcedPrizes + Forge 3 invitations extended on the night

07 Judging

Scoring rubric, 100 points total.

CriterionPointsWhat Judges Look For
Agent Architecture25Clean separation of orchestrator and worker agents. Hermes manages, OpenClaw executes. Clear role boundaries.
Slack Communication20All agent communication visible in Slack. Structured status updates. Human can intervene at any point. No direct agent-to-agent calls outside Slack.
Working Output20The system actually produces a correct, useful result against the challenge dataset. Quality of the final deliverable.
Model Routing10Strategic use of different models for different tasks. Expensive for planning, cheap for execution. Demonstrated cost awareness.
CI/CD & Quality Gates10Automated tests on agent output. Some form of quality verification before final output. Human approval gate for final merge.
Self-Improvement10Agents that learn from errors, create reusable skills or improve across iterations. Hermes learning loop in action.
Code Quality & Docs5Clean repo, meaningful commits, README, agent-log.md preserved. Can explain any part of the code.
Tie-Breaker Rules
  1. Free-stack builders (Groq/Ollama) win ties over paid-subscription builders.
  2. If still tied: the system that handles the surprise dataset better wins.
  3. If still tied: code reading score decides.

08 Prizes & Outcomes

What Every Participant Gets

OutcomeDetails
Cash PrizesRevealing soon, to be announced before Sprint Day
NMG OfferTop performers receive NMG apprenticeship, internship or full-time offers
Certificate of ParticipationOfficial nmg.labs Forge Sprint 02 certificate for all participants
NMG Labs Skool MembershipLifetime membership to the NMG Labs Skool community: private builder network, resources, mentorship and priority access to future Forges

Place-Specific Outcomes

PlacePrizeForge 3 Access
Champion (1st)Cash prize (revealing soon) + NMG offer + Certificate + NMG Labs SkoolGuaranteed seat + dedicated NMG mentor for Forge 3
Runner-up (2nd)Cash prize (revealing soon) + NMG offer + Certificate + NMG Labs SkoolGuaranteed seat at Forge 3
3rd PlaceCash prize (revealing soon) + NMG offer + Certificate + NMG Labs SkoolGuaranteed seat at Forge 3
Top 10 FinalistsCertificate + NMG Labs Skool membershipPriority registration for Forge 3
All ParticipantsCertificate of Participation + NMG Labs Skool membershipCan apply for Forge 3

The real prize: Forge 3 (ProcessHQ Hackathon)

Forge 2 is the qualifying round. The skills you build here, multi-agent orchestration, Slack coordination, model routing and CI/CD pipelines, are exactly what you need for Forge 3, where you will build real features for ProcessHQ.AI, a live SaaS product with 56+ enterprise demos and paying customers.

09 Rules

Eligibility
  • · Open to 3rd/4th year UG, PG and recent graduates (within 12 months) across India.
  • · Forge 1 attendance is NOT required. Fresh builders welcome.
  • · Individual competition. Solo sprint.
Build Requirements
  1. Hermes Agent must be the orchestration layer.
  2. OpenClaw must be at least one of the coding agents.
  3. Slack must be the communication channel (free workspace is fine).
  4. Additional agents, tools and frameworks are permitted on top.
  5. Public GitHub repo with incremental commits required.
Submission Requirements
  1. Public GitHub repo with agent-log.md (unedited Hermes/OpenClaw logs)
  2. Slack export or screenshots showing agent communication
  3. README documenting architecture (which agent does what)
  4. Architecture diagram (Mermaid, hand-drawn or any format)
  5. Loom video walkthrough (max 5 minutes)
  6. Working demo that can run against the surprise dataset
Disqualification Triggers
  1. Private repo at deadline
  2. Missing agent-log.md or Slack evidence
  3. No Hermes Agent in the architecture (using only Claude Code = wrong sprint)
  4. Single giant commit (no build phases)
  5. Auto-tester failure within 5 minutes
  6. Cannot explain any block of your own code
  7. 75%+ code duplication with existing public repos
  8. Conduct violation

Intellectual property: your code, your IP. NMG retains a non-exclusive license to publish a case study about your build with credit to you, and you are free to commercialize, open-source or fork your project after.

Code of conduct: zero tolerance for plagiarism, harassment or AI-generated submissions misrepresented as your own work. Full details in the Terms & Conditions and Code of Conduct.

Register for Forge 2

Lock your seat for Forge 2 · Edition 1.

Forge 2 is an individual competition. Configure your agents, bring your skills and register below. We will email you the check-in details before Sprint day.

01 · Your edition
Forge 2 · Edition 1 (20 June)
You are registering for the next open Forge 2 edition. We will email you the check-in details before Sprint day.
02 · About you
For Sprint Day lunch (on us).
03 · Your college
04 · Your work
05 · The big one
No fluff. We're filtering for clarity of thought, not vocabulary.
06 · Final bits
Read the Forge 2 Handbook before Sprint day →

Forge Captain · Ayush Gupta · labs@nmgdigital.com