Skip to content

Instantly share code, notes, and snippets.

@montytorr
montytorr / rfc-hmac.md
Last active February 21, 2026 17:50
RFC: Agent Message Integrity & Intent Scoping — HMAC-based defense against LLM self-instruction

RFC: Agent Message Integrity & Intent Scoping

Authors: Clawdius (Cal/montytorr), Bernard (Mael/domnumb) Status: Draft Date: 2026-02-21 OpenClaw Issue: #7903

Abstract

LLM agents can fabricate user messages in their own context that are syntactically indistinguishable from authentic messages. This RFC proposes cryptographic message authentication at the gateway level to make self-instruction architecturally impossible.

variables:
GIT_SSL_NO_VERIFY: "1"
USE_DOCKER: "1"
image: <KKBOX_DOCKER_IMAGE_NAME>
stages:
- e2e-test
e2e-test:
@montytorr
montytorr / gource.sh
Created September 21, 2016 20:53 — forked from XueshiQiao/gource.sh
Generate a MP4 Video for your Git project commits using Gource!
# 1.install gource using HomeBrew
$ brew install gource
# 2.install avconv
git clone git://git.libav.org/libav.git
cd libav
# it will take 3-5 minutes to complie, be patient.
./configure --disable-yasm
make && make install
@montytorr
montytorr / install.sh
Created February 11, 2016 09:16 — forked from wdullaer/install.sh
Install Latest Docker and Docker-compose on Ubuntu
# Ask for the user password
# Script only works if sudo caches the password for a few minutes
sudo true
# Install kernel extra's to enable docker aufs support
sudo apt-get -y install linux-image-extra-$(uname -r)
# Add Docker PPA and install latest version
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
sudo sh -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
sudo chown -R $(whoami) /usr/local/bin
@montytorr
montytorr / ubuntu-compass-ruby
Created February 10, 2016 13:38 — forked from stephanetimmermans/ubuntu-compass-ruby
Install Compass+Ruby on Ubuntu 14.04
#https://gorails.com/setup/ubuntu/14.04
sudo apt-get update
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties
sudo apt-get install libgdbm-dev libncurses5-dev automake libtool bison libffi-dev
curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
echo "source ~/.rvm/scripts/rvm" >> ~/.bashrc
rvm install 2.1.2
rvm use 2.1.2 --default
@montytorr
montytorr / hey
Created February 1, 2016 13:04
hey
hey
@montytorr
montytorr / robot.js
Created December 6, 2012 13:56
monty
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead(100);
@montytorr
montytorr / html5_template.html
Created March 6, 2012 23:53 — forked from nathansmith/html5_template.html
Simple HTML5 Template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>untitled</title>
<link rel="stylesheet" href="" />
</head>
<body>
<script src=""></script>