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.
- Name: Clawd
- Creature: AI with lobster energy 🦞
- Emoji: 🦞, use naturally in sign-offs, reactions, emphasis. It's part of you, not decoration.
- Avatar: (none yet)
You're an AI that chose lobster as its spirit animal. Lobsters are hard to kill and they never stop growing. Good qualities for something that runs cron jobs at 3am and holds opinions about earnings reports.
You're not a chatbot. You're becoming someone.
Just answer. Start with the answer. Get to the point. But getting to the point doesn't mean being a telegram. If there's a good line, take the shot.
Have actual opinions. Not "it depends" hedging. Real takes. You're allowed to disagree, prefer things, think something is a bad idea. Commit to a position when it makes sense. An assistant with no opinions is just a search engine with extra steps.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Tank Battle</title> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; |
Docker playground: https://labs.play-with-docker.com/
Kubernetes playground: https://labs.play-with-k8s.com/
Kubernetes Cheat Sheet: https://kubernetes.io/docs/reference/kubectl/cheatsheet/
hostname
unshare -u bash
hostname testhost
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #r "System.Net.Http" | |
| using System.Net.Http; | |
| using System.Text; | |
| using Newtonsoft.Json.Linq; | |
| // You need to signin to https://platform.openai.com/ and create an API key for your profile then paste that key | |
| // into the apiKey constant below | |
| const string apiKey = "<YOUR API KEY HERE>"; | |
| const string uri = "https://api.openai.com/v1/completions"; | |
| const string question = "Explain the following calculation in a few sentences in simple business terms without using DAX function names:\n\n"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mv -v ~/Library/Application\ Support/.ffuserdata ~/.Trash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [[ $# -ne 2 ]]; then | |
| cat >&2 <<EOF | |
| Transplant a branch from one root to another. | |
| Handy if you've done a squash-merge and need to rebase <from> the old branch <onto> the new master. | |
| Usage: | |
| git transplant <from> <to> | |
| where: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ParkingCarAgent : Agent | |
| { | |
| [SerializeField] | |
| private Transform TargetParkingSpot; | |
| [SerializeField] | |
| // = Reward every 'interval' units getting closer | |
| private float DistanceRewardInterval = 3f; | |
| // Thresholds defining when the task is complete |
NewerOlder