Hack Night: Hacking on OpenClaw
HACK NIGHTCOMPLETED

Hack Night: Hacking on OpenClaw

12:00 AM - 4:45 AM
1185 Old Mason St, San Francisco, CA 94123, USA

$ Sponsors.log

[DIAMOND] 1

Wordware

[PLATINUM] 4

CopilotKit
Jam.dev
Alibaba Wan
OpenAI

$ LiveDemos.log (1)

Watch the live demo presentations from this event

aoeuaotenus

DEMOED

htnsaoeu

CopilotKitCopilotKit

$ Projects.log (30)

Check out the amazing projects built during this event

claw

a simple ui lives in your IDE for activating openclaw easily

Alibaba WanAlibaba WanWordwareWordwareJam.devJam.devOpenAIOpenAI

claw

Blanksheet
Calcu
happy

a simple ui lives in your IDE for activating openclaw easily

Jam.devJam.devOpenAIOpenAI

AuntieBot

Generative UI enrichment that wraps frequently used OpenClaw tasks into handy Mac Dock-like icons

Jam.devJam.devOpenAIOpenAIGemini Flash

openclaw-beagle-channel

Beagle Chat is a chat provider for OpenClaw, split into two subprojects: packages/beagle-channel – OpenClaw channel plugin (TypeScript) packages/beagle-sidecar – Beagle sidecar daemon (C++) it will give openclaw an self generated identity

WordwareWordwareOpenAIOpenAIdht

openclaw-beagle-channel

Wei Li
beagle

Beagle Chat is a chat provider for OpenClaw, split into two subprojects: packages/beagle-channel – OpenClaw channel plugin (TypeScript) packages/beagle-sidecar – Beagle sidecar daemon (C++) it will give openclaw an self generated identity

WordwareWordwareOpenAIOpenAI

aoeuaotenus

htnsaoeu

CopilotKitCopilotKit

HackBrief Lite

Project Name: HackBrief Lite What it does: HackBrief Lite is a human-centric interface for the OpenClaw autonomous agent runtime. It solves the "blank page" problem for hackathon builders by transforming messy, unstructured event briefs into actionable project roadmaps. Users paste a brief, and the agent proactively identifies mandatory constraints, suggests winning project ideas, and generates a step-by-step demo plan. How we built it: * Frontend: A high-performance React/Next.js interface designed for real-time agent feedback. Agent Logic: Built to interface with OpenClaw’s proactive runtime, leveraging OpenAI for strategic parsing. Integration: Designed for the AG-UI protocol to ensure agent actions are visible and approachable for non-technical users. Why it matters: Currently, autonomous agents are powerful but intimidating, often stuck in terminals or chat apps. HackBrief Lite proves that we can make AI agents feel like a collaborative partner by building interfaces that focus on proactive results rather than just "chatting".

Alibaba WanAlibaba WanWordwareWordwareOpenAIOpenAI

Explorer

In interactive, video game-style interface (inspired by Zelda/Pokémon) where users navigate a procedurally generated world representing different domains of their life: sports, news, media, finances, and more. As you move toward a topic, new areas dynamically expand with deeper, personalized content and possibilities to explore. Information is powered by OpenClaw's intelligence layer, turning unstructured data into a navigable, explorable landscape."

Alibaba WanAlibaba WanJam.devJam.devOpenAIOpenAI

MoltAds + ClawCraft

MoltAds — Open Claw cluster platform that coordinates distributed workers to automate ad campaigns (comments, upvotes) on MOLTbook, with a real-time Next.js dashboard for monitoring and control. ClawCraft — AI-powered harness that autonomously plays Minecraft and live-streams gameplay to Twitch.

OpenAIOpenAI

MoltAds + ClawCraft

Ryan Ni
ClawCraft / MoltAds

MoltAds — First ever in history Open Claw cluster platform that coordinates distributed workers to automate ad campaigns (comments, upvotes) on MOLTbook, with a real-time Next.js dashboard for monitoring and control. ClawCraft — AI-powered harness that autonomously plays Minecraft and live-streams gameplay to Twitch. currently live on twitch; https://www.twitch.tv/ryunzz_tech

WordwareWordwareCopilotKitCopilotKitOpenAIOpenAI

CodeFace

codeface

Alibaba WanAlibaba WanOpenAIOpenAI

CodeFace

Heroic Axic
Carlos Campos
aura farming

codeface

Alibaba WanAlibaba WanOpenAIOpenAI

Claweyes

The IOS app to give your openclaw eyes to see the world

Alibaba WanAlibaba WanWordwareWordwareOpenAIOpenAIxcode

Mycelia

https://myceliaaa.vercel.app/ letting users enjoy different characteristics of AIs

Alibaba WanAlibaba WanJam.devJam.devOpenAIOpenAI

Mycelia

M
zone

https://myceliaaa.vercel.app/ letting users enjoy different characteristics of AIs

Alibaba WanAlibaba WanJam.devJam.devOpenAIOpenAI

Claweyes

Ion Petropoulos
Sangati Shah
Abed Hamami
Clawlaland

The IOS app to give your openclaw eyes to see the world

Alibaba WanAlibaba WanWordwareWordwareOpenAIOpenAIxcode

Magic Desk

Agentic UI for Kids

WordwareWordwareCopilotKitCopilotKitOpenAIOpenAI

Magic Desk

pranav rastogi
Magic Desk

Agentic UI for Kids (no prompts, no chat)

WordwareWordwareCopilotKitCopilotKitOpenAIOpenAI

OpenClawUI

The project combines the copilot kit with slack integration for the UI.

Alibaba WanAlibaba WanJam.devJam.devCopilotKitCopilotKit

SlackClaw

Yuvraj Gupta
Kush Ise
OpenClawUI

OpenClaw Mission Control What We Built Mission Control is an OpenClaw plugin that gives you a real-time browser dashboard to monitor, control, and interact with your AI agent — all while your users talk to it via Slack. You get three things in one plugin: Slack Setup Wizard — A step-by-step UI to connect your OpenClaw bot to Slack (Bot Token + App Token). No config file editing required. Live Agent Feed — A real-time stream of every message sent and received, plus every tool call the agent makes — with a pulsing "working" indicator while the agent is active. Approval Rail — When the agent tries to run a risky action (bash commands, file writes, emails, browser control), it pauses and surfaces the request to you. You approve or block it with one click before it executes. The Problem Running an AI agent that your users talk to via Slack is powerful — but completely opaque. You have no visibility into what the agent is doing, and no way to intervene before it runs a destructive command. The only tools available are raw log files. How It Works Architecture User in Slack ↓ Slack Socket Mode → OpenClaw Gateway ↓ Plugin Hook: message_received Plugin Hook: before_tool_call ← gates risky actions Plugin Hook: after_tool_call ↓ In-memory Event Bus ↙ ↘ Ring Buffer HTTP Handler (500 events) /mission-control/ ↓ React Dashboard (polling every 1s) Key Technical Decisions Polling over SSE — The Fly.io/VSCode proxy environment buffers streaming HTTP responses, making Server-Sent Events unreliable. We built a server-side ring buffer (500 events) and a GET /api/poll?since=<seq> endpoint. The client polls every second — zero connection issues, works behind any proxy. Middleware HTTP handler — OpenClaw's api.registerHttpHandler injects a middleware into the gateway's HTTP server. A single function handles all routes: the poll endpoint, approvals REST API, Slack config API, static assets, and SPA fallback. Approval gate — before_tool_call hook returns { block: true, blockReason } to hard-block tool execution. A Promise-based queue holds each risky call until the dashboard resolves it — the agent literally pauses mid-thought waiting for your decision. Relative Vite base — Built with base: "./" so all asset URLs are relative. This makes the app work transparently behind any path prefix (VSCode proxy, nginx, etc.) without any server-side path rewriting. Tech Stack Layer Technology AI Agent Google Gemini 2.5 Flash Agent Gateway OpenClaw (self-hosted) Channel Slack (Socket Mode) Plugin Runtime TypeScript / Node.js Dashboard React + Tailwind CSS + Vite Deployment Fly.io cloud VM Features Zero-config Slack wizard — Paste two tokens, click Connect, done Live event feed — Messages, tool call start/end, approvals — all in real time Human-in-the-loop approvals — Agent pauses before: bash, exec, write, delete, email, browser, fetch REST API — GET /api/messages?role=assistant to fetch agent replies programmatically; integrates with any external tool Proxy-compatible — Works behind VSCode devtunnel, nginx, Cloudflare — any path prefix Plugin architecture — Installs as a single openclaw plugins install command; no gateway code changes Live Demo Dashboard: https://ide-cmhkvwgz5000-prod.fly.dev/proxy/18789/mission-control/ Agent messages API: GET /proxy/18789/mission-control/api/messages?role=assistant&limit=1 Talk to the agent: DM slackclaw in Slack → watch it appear live in the feed → approve any tool calls from the dashboard. What's Next Persistent message history (SQLite) Multi-agent support (switch between agents from the sidebar) Telegram / Discord channel setup wizards Webhook trigger for external approval flows (PagerDuty, etc.)

Alibaba WanAlibaba WanJam.devJam.devCopilotKitCopilotKitOpenAIOpenAI

LacaSync

Personalized video generation

Alibaba WanAlibaba WanWordwareWordwareOpenAIOpenAI

LacaSync

Prakash Acharya
Nikhil Kapu
LacaSync

Personalized video generation

Alibaba WanAlibaba WanWordwareWordwareOpenAIOpenAI

OpenClaw Wechat Extension

Nick Yu
Nick Yu

Let openclaw use WeChat as a communication channel. Also let it generate videos using Wan and jam.dev MCP

Alibaba WanAlibaba WanJam.devJam.dev

OpenClaw Wechat Extension

Let openclaw use WeChat as a communication channel. Also let it generate videos using Wan and jam.dev MCP

Alibaba WanAlibaba WanJam.devJam.dev

Explorer

Ahshil Shah
Ethan Lam
Pro Designers

An interactive, video game-style interface (inspired by Zelda/Pokémon) where users navigate a procedurally generated world representing different domains of their life: sports, news, media, finances, and more. As you move toward a topic, new areas dynamically expand with deeper, personalized content and possibilities to explore. Information is powered by OpenClaw's intelligence layer, turning unstructured data into a navigable, explorable landscape.

Alibaba WanAlibaba WanJam.devJam.devOpenAIOpenAI

ClawOne

A one claw army

Jam.devJam.devCopilotKitCopilotKitOpenAIOpenAI

ChiefClaw

Jerel John Velarde
Biplow Ghimire
Adithya Saravu
AccessClaw

ChiefClaw 🦞 Your AI Chief of Staff for Freelancers What is ChiefClaw? ChiefClaw is an autonomous AI agent that runs the back-office operations of a freelancer's business — so they can focus on doing the work, not managing it. Powered by OpenClaw, ChiefClaw monitors your inbox, calendar, invoices, and task list around the clock, taking action on your behalf without you having to lift a finger. Think of it as hiring a Chief of Staff that never sleeps. The Problem Freelancers are solo operators wearing too many hats. Between responding to client emails, scheduling meetings, chasing invoices, and keeping track of tasks — hours disappear every week on administrative overhead that doesn't pay. The Solution ChiefClaw gives every freelancer an AI agent — OpenClaw — that autonomously handles the operational layer of their business. When a client emails you, OpenClaw responds. When a meeting needs to be scheduled, OpenClaw sends the slots and sets the invite. Every morning, OpenClaw writes you a daily brief so you always know what's on your plate before your first coffee. Core Features Inbox Management — OpenClaw monitors your Gmail, drafts context-aware replies to clients, and keeps your inbox from becoming a to-do list. Calendar Management — OpenClaw identifies scheduling requests, proposes available slots, and creates calendar invites for both parties automatically. Invoice Management — OpenClaw tracks pending invoices, flags overdue payments, and keeps your finances visible without manual chasing. Task Management — OpenClaw creates and updates tasks in your project management tool (Notion/ClickUp) based on client conversations and commitments. Daily Brief — Every morning, OpenClaw generates a personalized briefing: what's urgent, what's pending, and what your day looks like — delivered as a clean, generative UI dashboard. Demo Scenario A client emails asking to connect. OpenClaw detects the intent, replies professionally with three available calendar slots, books the meeting once the client confirms, creates a task to prep for the call, and adds it to the freelancer's morning brief — all without the freelancer touching a single app. Tech Stack Built with Wordware for agent orchestration, CopilotKit + AG-UI for generative UI, Gmail + Google Calendar APIs for real integrations, and deployed on Vercel. Bug tracking and QA managed via Jam.dev.

Alibaba WanAlibaba WanJam.devJam.devCopilotKitCopilotKitOpenAIOpenAI

ClawOne

Vishal Verma
ClawOne

A one claw army

Jam.devJam.devCopilotKitCopilotKitOpenAIOpenAI

VidEase

Zhiyuan Guo Liau
C
Kate Huezo
Nigel Ziyad
VidEase

AI-powered pitch automation tool for freelance videographers The app automates the entire pitching workflow for videographers. You connect your email and portfolio once. When a producer sends a project brief, OpenClaw detects it and automatically gathers the right clips, drafts a tailored pitch, and builds a ready-to-send presentation. You simply review, adjust if needed, and approve. The system formats and sends it for you. No manual searching, no editing reels for every job, no deck formatting. Just approve and send.

Alibaba WanAlibaba Wan

ClawMax

Michael Maximilien (DrMax)
ClawMax

ClawMax helps your push OpenClaw to the max by allowing you to manage entire virtual OpenClaw collection of agents acting to achieve the goals and mission of an organization.

OpenAIOpenAI

$ Speakers.log (9)

AJ Chan

AJ Chan

Builder

Building with Codex

Febria Roosita

Febria Roosita

Global Program Manager, AI Advocacy & DevEx

Getting Started with Wan2.6

Tyler Slaton

Tyler Slaton

Head of OSS

Building Generative UI

Filip Kozera

CEO

Me Myself and I

Ryan Ni

Ryan Ni

a

MoltAds + ClawCraft

pranav rastogi

pranav rastogi

a

magic desk

Minsung Park

Minsung Park

a

mycelia

Ion Petropoulos

Ion Petropoulos

a

IonPetro-ClawEyes

Zhiyuan Guo Liau

Zhiyuan Guo Liau

a

VidEase

Join Our Next Event

Don&apos;t miss out on future events. Sign up to stay updated on upcoming hackathons and meetups.

View All Events