Skip to content

Instantly share code, notes, and snippets.

@mberman84
mberman84 / all_files.md
Created February 24, 2026 21:09
Matt's Markdown Files

OpenClaw: System Prompt File Templates

Generalized versions of all root .md files used by OpenClaw. These files are loaded into the agent's system prompt on every request (except MEMORY.md which is conditional).

Copy these as starting points and customize for your own setup. Replace <placeholders> with your values.


AGENTS.md

@gioclawd
gioclawd / guide.md
Last active February 23, 2026 15:23
OpenClaw Full Stack Setup Guide — Mac + Telegram + Gmail/Calendar + GitHub + Mission Control

OpenClaw Full Stack Setup Guide — Mac + Telegram + Gmail/Calendar + GitHub + Mission Control

OpenClaw Setup Guide: From Zero to Your Own AI Assistant

Who this is for: You're on a Mac, you're comfortable in Terminal, and you want a personal AI assistant that lives on your machine and talks to you on Telegram. This guide walks you through every step.

What you'll end up with: An AI assistant running 24/7 on your Mac that you can message on Telegram from anywhere — with email awareness, calendar access, semantic memory, secure remote access, and automatic backups.

Time estimate: 2-3 hours for the core setup (sections 1-4). Another 2-3 hours for the full stack.

Setting Up MCP Servers on Windows

A step-by-step guide to setting up Model Context Protocol (MCP) servers for Claude Desktop on Windows.

Prerequisites

  1. Install Node.js (v18.x or later)
    • Download from: https://nodejs.org/
    • Verify installation by opening Command Prompt (CMD) and running:
      node --version
      npm --version
@paulirish
paulirish / how-to-view-source-of-chrome-extension.md
Last active February 28, 2026 01:03
How to view-source of a Chrome extension

Option 1: Command-line download extension as zip and extract

extension_id=jifpbeccnghkjeaalbbjmodiffmgedin   # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc" 
unzip -d "$extension_id-source" "$extension_id.zip"

Thx to crxviewer for the magic download URL.