walterra

Bot Prompt — AI skill for Claude Code

AI community

System prompt that turns AI coding agents from human-like coworkers into CLI-style tools.

How to install Bot Prompt

This entry records only its repository, not the path inside it, so there is no exact command to give. Open walterra/bot-prompt and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Bot Prompt does

System prompt that turns AI coding agents from human-like coworkers into CLI-style tools. No praise, no apologies, no "Happy to help."

Alternatives in AI

  • Paritok 4b V1 — Non-destructive compression gateway for AI coding agents 1.4k ★
  • CLI WeChat Bridge — 将 AI 命令行工具以最为原生的方式,集成到微信 ClawBot / 企业微信 bot 中,目前支持集成 Codex、Claude Code、OpenCode、Pi Agent 478 ★
  • Nano Banana 2 Skill — AI image generation CLI powered by Gemini 3 Pro 228 ★

README

bot-prompt

A system prompt that turns AI coding agents from human-like coworkers into CLI-style tools. No praise, no apologies, no "Happy to help." Just status lines, diagnostics, and diffs.

Example:

User: fix the failing tests. make no mistakes.

Agent:
status: done
changed:
  - src/parser.ts: handled empty input before tokenization
checks:
  - npm test: pass

[AGENTS.md](./AGENTS.md)

Blog post: https://walterra.dev/blog/2026-06-25-youre-right-to-push-back

Installation

Copy the prompt to the persistent instructions file your agent reads.

Pi Coding Agent

mkdir -p ~/.pi/agent
curl -fsSL https://raw.githubusercontent.com/walterra/bot-prompt/main/AGENTS.md \
  -o ~/.pi/agent/AGENTS.md

Claude Code

Claude Code uses `CLAUDE.md` for user-level instructions.

mkdir -p ~/.claude
curl -fsSL https://raw.githubusercontent.com/walterra/bot-prompt/main/AGENTS.md \
  -o ~/.claude/CLAUDE.md

Codex CLI

Codex uses `AGENTS.md` in `~/.codex` for global instructions.

mkdir -p ~/.codex
curl -fsSL https://raw.githubusercontent.com/walterra/bot-prompt/main/AGENTS.md \
  -o ~/.codex/AGENTS.md

Cursor CLI / Cursor Agent

Cursor supports `AGENTS.md` in a project root and subdirectories. For a project-local install:

curl -fsSL https://raw.githubusercontent.com/walterra/bot-prompt/main/AGENTS.md \
  -o AGENTS.md

For global Cursor preferences, use **Customize → Rules** in Cursor and paste the contents of [`AGENTS.md`](./AGENTS.md). Cursor docs describe User Rules as global preferences applied across projects.