wick AGENTS.md

Repository instructions for coding agents working on the Wick project. They explain how to build Tailwind CSS, start the Go server, check for required binaries, and stop processes started during verification.

In plain words
What is it for?
Use them when running the Wick app, rebuilding its CSS, checking or installing the Tailwind CLI, and managing the development server.
Why use it?
They prevent agents from using long-running watcher commands or leaving servers running, and give them a repeatable way to verify changes.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/yogasw/wick/agents-md
Clone the repo
git clone --depth 1 https://github.com/yogasw/wick

Made for: Codex, OpenCode.

Per session 1,887 This file is loaded in full into every session.
When invoked 1,887 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01887 $0.01887
Opus 5 $0.00944 $0.00944
Sonnet 5 $0.00377 $0.00377
Haiku 4.5 $0.00189 $0.00189

Measured 2d ago against content hash 9c4f5009f263, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

wick AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

AGENTS.md · 142 lines

How it starts

The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AGENTS.md

Operational rules for coding agents (Claude Code, etc.) working in this repo. Human onboarding lives in README.md.

Running the app (agent flow)

When an agent needs to start the server — e.g. to verify a UI change — use a one-shot flow, not watch mode:

  1. Make sure the Tailwind CLI is present (see below).
  2. Build CSS once:
    • Windows: ./bin/tailwindcss.exe -i web/src/input.css -o web/public/css/app.css --minify
    • macOS/Linux: ./bin/tailwindcss -i web/src/input.css -o web/public/css/app.css --minify
  3. Run the server: go run main.go server
  4. Always kill the server when you're done. Don't leave background processes hanging.

Do NOT run make css/watch, make dev, or make run/live from an agent session — watchers are for interactive development, they don't terminate, and they waste the user's resources.

Tailwind CLI presence check

The standalone Tailwind binary is OS-specific and not committed. Before building CSS:

ls ./bin/tailwindcss* 2>/dev/null

If nothing is found, run make setup once — it auto-detects OS/arch and downloads the right binary to ./bin/.

Killing processes

  • Anything you started (server, watcher, build job) must be killed before handing control back.
  • If you encounter a process the user started (e.g. their own dev server already running on :9425), do NOT kill it silently. Ask first: "Looks like something is already running on :9425. OK to kill it, or are you using it?"
  • Prefer taskkill //F //PID <pid> on Windows (git bash), kill <pid> elsewhere.

Quick commands

Task Command
Build CSS once ./bin/tailwindcss.exe -i web/src/input.css -o web/public/css/app.css --minify
Regenerate templ templ generate
Compile check go build ./...
Run server (foreground) go run main.go server
Run tests go test ./...
Setup Tailwind CLI make setup (one-time)

Before declaring a task done

  • templ generate && go build ./... passes.
  • Any process you started is stopped.
  • Changes on the tool grid / Ctrl+K palette look right in both light and dark mode (if UI changed).

Read the full file on GitHub · 142 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 142 lines · 1,887 tokens per session scan A 9c4f5009f263

Subscribe to this mod's changes

wick AGENTS.md is an instructions file published in the GitHub repository yogasw/wick (5 stars, last pushed 5d ago), licensed MIT. It adds 1,887 tokens to every session, about $0.0094 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.