Skip to content

Instantly share code, notes, and snippets.

@mberman84
mberman84 / oc.md
Created February 16, 2026 19:42
OpenClaw Prompts

OpenClaw Prompts - Build Your Own AI Assistant

Prompts to recreate each piece of the OpenClaw system. Use these with any AI coding assistant.


1. Personal CRM "Build a personal CRM that automatically scans my Gmail and Google Calendar to discover contacts from the past year. Store them in a SQLite database with vector embeddings so I can query in natural language ('who do I know at NVIDIA?' or 'who haven't I talked to in a while?'). Auto-filter noise senders like marketing emails and newsletters. Build profiles for each contact with their company, role, how I know them, and our interaction history. Add relationship health scores that flag stale relationships, follow-up reminders I can create, snooze, or mark done, and duplicate contact detection with merge suggestions. Link relevant documents from Box to contacts so when I look up a person, I also see related docs."

2. Meeting Action Items (Fathom)

export const gpt_functions_param_jobs_fetching = [
{
name: "process_job_data",
description: "Process job data and extract core fields for a scraper.",
parameters: {
type: "object",
additionalProperties: false,
properties: {
// Company
company_name: {
@Aschen
Aschen / README.md
Last active February 17, 2026 23:15
Scrape a page and convert it to Markdown

Scrape a page and convert it to Markdown

Install dependencies: npm install playwright cheerio node-html-markdown

Install firefox browser: npx playwright install firefox

Run the script: tsx html-to-md.ts https://mistral.ai/fr/news/mixtral-8x22b/

@mberman84
mberman84 / PRD.md
Created February 17, 2026 19:59
OpenClaw PRD

PRD.md - Product Requirements & Feature Inventory

Everything built on top of the base OpenClaw platform. Canonical reference for what exists, where it lives, and how it works. Operational use cases and workflow playbooks live in docs/USE-CASES-WORKFLOWS.md.


Table of Contents

  1. Operational Use Cases & Workflows
@karpathy
karpathy / microgpt.py
Last active February 17, 2026 23:14
microgpt
"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp

Easy Telemetry Disable for 10/11

Prerequisites

  1. Upgrade to Enterprise edition of Windows 10/11 if you are running Home or Pro.
    • You can do this through the Change Edition option in the Extras menu in MAS.

Disabling Telemetry via Group Policy

  1. Open the Group Policy Editor. Search for "Edit Group Policy" in search or run gpedit.msc.
@SackMagiclight
SackMagiclight / beatoraja.l4j.ini
Last active February 17, 2026 23:13
beatoraja.l4j.ini
# -Xms8g // 基本は不要
# -Xmx8g // 基本は不要
-XX:+UseZGC
-XX:+UseLargePages
# -XX:+ZUncommit // Xms!=Xmxに設定するときはつける
@jake-stewart
jake-stewart / color256.md
Last active February 17, 2026 23:13
Terminals should generate the 256-color palette

Terminals should generate the 256-color palette from the user's base16 theme.

If you've spent much time in the terminal, you've probably set a custom base16 theme. They work well. You define a handful of colors in one place and all your programs use them.

The drawback is that 16 colors is limiting. Complex and color-heavy programs struggle with such a small palette.

@oh-ashen-one
oh-ashen-one / clawdbot-security-cron.md
Created January 26, 2026 17:37
🔒 Daily Security Audit Cron for ClawdBot - Auto-detect misconfigurations before hackers do

🔒 Clawdbot Daily Security Audit Cron

Drop this into your Clawdbot and it'll check your setup daily and alert you to any security issues.

The Cron Job

Name: daily-security-audit Schedule: 0 9 * * * (9am daily)

Prompt:

@ranieuwe
ranieuwe / get-directory-logs.ps1
Created February 13, 2026 06:26
PowerShell script to retrieve Azure Activity Logs (tenant/directory level) without LAW export
#Requires -Modules Az.Accounts
<#
.SYNOPSIS
Retrieves Azure Activity Logs from subscriptions or tenant level.
.DESCRIPTION
Fetches Azure Activity Logs from the Azure Management API. Useful when you cannot
export to Log Analytics Workspace (LAW). Can query subscription-level or tenant-level
(directory) logs.