This is the actual system prompt sent to Anthropic's Claude Haiku API for scoring grant applications. The full request also includes the application text and a
tool_useschema for structured output.
| # Signal Score — System Prompt | |
| > This is the actual system prompt sent to Anthropic's Claude Haiku API for scoring grant applications. | |
| > The full request also includes the application text and a `tool_use` schema for structured output. | |
| --- | |
| ## System Prompt | |
| ``` |
OpenClaw Security Hardening Guide — OS isolation, 1Password, TruffleHog, Tailscale, and more
A detailed walkthrough of how I (Cedric Hurst, @divideby0) have locked down my OpenClaw AI assistant, "Evie," running on a Mac mini M4. This guide covers every layer of the security model — from OS isolation to network access to behavioral controls.
Written collaboratively by Cedric and Evie herself.
Format: Organic tech analysis — two distinct voices, real disagreements Host: Cedric Hurst — founder of Spantree (division of Trifork), fintech practitioner Co-host: Evie — AI agent, technology strategist, Cedric's copilot Target Listener: George (SpiderRock leadership) + broader fintech/tech audience
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| version: "3.4" | |
| services: | |
| jbpm: | |
| image: jboss/jbpm-workbench-showcase | |
| environment: | |
| - "JAVA_OPTS=-Djava.net.preferIPv4Stack=true -Djava.net.preferIPv6Addresses=false" | |
| ports: | |
| - "8080:8080" | |
| - "8001:8001" |
| version: '3' | |
| services: | |
| elasticsearch: | |
| image: docker.elastic.co/elasticsearch/elasticsearch:6.0.0 | |
| environment: | |
| - cluster.name=docker-cluster | |
| - bootstrap.memory_lock=true | |
| - "ES_JAVA_OPTS=-Xms512m -Xmx512m" | |
| ulimits: | |
| memlock: |
| REGION=${REGION:-us-east-1} | |
| UBUNTU_RELEASE=${UBUNTU_RELEASE:-trusty} | |
| ARCH=${ARCH:-amd64} | |
| INSTANCE_TYPE=${INSTANCE_TYPE:-hvm:ebs} | |
| curl 'https://cloud-images.ubuntu.com/locator/ec2/releasesTable' --compressed | grep -Ei "\"$REGION\",\"$UBUNTU_RELEASE\",.*,\"$INSTANCE_TYPE\"" | grep -oEi "ami-\w+" | head -1 |