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.
npx agentmods add instructions/danwahlin/zingit/agents-mdgit clone --depth 1 https://github.com/DanWahlin/zingitWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.03239 | $0.03239 |
| Opus 5 | $0.01620 | $0.01620 |
| Sonnet 5 | $0.00648 | $0.00648 |
| Haiku 4.5 | $0.00324 | $0.00324 |
Grade A, and why
zingit 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.
How it starts
The opening of the file, as written. The whole thing — 328 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ZingIt - AI Agent Guide
Project Overview
ZingIt is a browser-based marker tool that allows users to click on webpage elements and add notes/instructions. These markers are then sent to an AI agent (Claude Code, GitHub Copilot CLI, or OpenAI Codex) which can automatically implement the requested changes.
Use case: Point-and-click UI feedback that gets automatically implemented by AI.
Key Features:
- Visual element selection with marking
- Multi-agent support (Claude, Copilot, Codex)
- Automatic screenshot capture
- Change history tracking
- Remote/local URL detection with warnings
- Keyboard shortcuts for fast workflow
Architecture
┌─────────────────────────────────────────────────────────────┐
│ Browser │
│ ┌─────────────────────────────────────────────────────┐ │
│ │ ZingIt Client │ │
│ │ (Lit Web Components - ?zingit URL parameter) │ │
│ └──────────────────────┬──────────────────────────────┘ │
└─────────────────────────┼───────────────────────────────────┘
│ WebSocket
▼
┌─────────────────────────────────────────────────────────────┐
│ ZingIt Server │
│ ┌─────────────┐ ┌─────────────┐ ┌──────────────┐ │
│ │ WebSocket │───▶│ Agent │───▶│ Claude Code │ │
│ │ Handler │ │ Registry │ │ Copilot │ │
│ │ │ │ │ │ Codex │ │
│ └─────────────┘ └─────────────┘ └──────────────┘ │
└─────────────────────────────────────────────────────────────┘
Directory Structure
zingit/
├── client/ # Browser-side UI (Lit + Vite)
│ ├── src/
│ │ ├── components/ # Lit Web Components
│ │ │ ├── zing-ui.ts # Main orchestrator component
│ │ │ ├── toolbar.ts # Action buttons and status
│ │ │ ├── highlight.ts # Element hover highlight
│ │ │ ├── markers.ts # Numbered marker badges
│ │ │ ├── modal.ts # Marker input dialog
│ │ │ ├── settings.ts # Configuration panel
│ │ │ ├── response.ts # Agent response display
│ │ │ ├── toast.ts # Notification toasts
│ │ │ ├── help.ts # Keyboard shortcuts overlay
│ │ │ ├── history.ts # Change history panel
│ │ │ ├── site-header.ts # Demo site navigation
│ │ │ └── site-footer.ts # Demo site footer
│ │ ├── services/
│ │ │ ├── selector.ts # CSS selector generation
│ │ │ ├── storage.ts # localStorage persistence
│ │ │ └── websocket.ts # WebSocket client with reconnection
│ │ ├── utils/
│ │ │ ├── geometry.ts # Viewport/rect calculations
│ │ │ └── markdown.ts # Export formatting
│ │ ├── types/index.ts # TypeScript interfaces
│ │ └── index.ts # Entry point
│ ├── index.html # Dev page
│ ├── products.html # Test page
│ ├── about.html # Test page
│ ├── contact.html # Test page
│ ├── styles.css # Shared styles for test pages
│ ├── deploy/ # Build output for GitHub Pages
│ │ ├── index.html # Static version of demo site
│ │ └── styles.css # Copied styles
│ ├── scripts/
│ │ └── prepare-deploy.js # Prepares deploy folder
│ └── vite.config.ts # Build config
│
├── server/ # Node.js WebSocket server
│ └── src/
│ ├── agents/
│ │ ├── base.ts # Abstract base agent class
│ │ ├── claude.ts # Claude Code CLI integration
│ │ ├── copilot.ts # GitHub Copilot SDK integration
│ │ ├── codex.ts # OpenAI Codex integration
│ │ └── opencode.ts # OpenCode integration
│ ├── handlers/
│ │ └── messageHandlers.ts # WebSocket message handlers
│ ├── types.ts # Server-side TypeScript interfaces
│ └── index.ts # WebSocket server entry point
│
└── AGENTS.md # This file
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.
- 2d ago First seen · 328 lines · 3,239 tokens per session scan A bdcc62acab9e
zingit AGENTS.md is an instructions file published in the GitHub repository DanWahlin/zingit (7 stars, last pushed 5d ago), licensed MIT. It adds 3,239 tokens to every session, about $0.0162 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.
Other instructions, from other repositories
aios GEMINI.md
Instructions for rexleimo/aios, covering mcp tools: code-review-graph, bounded checkpoints, planning context proposals, aios workflow policy and rex ownership and safety.
aios CLAUDE.md
Instructions for rexleimo/aios, covering claude.md, path conventions (路径约定), two key paths, why this matters and verification commands.
Codex-web AGENTS.md
Instructions for bproject07/Codex-web, covering repository guide for coding agents, mission, repository map, before changing anything and platform launch invariant.
atifact AGENTS.md
Instructions for waldekmastykarz/atifact, covering agents and atif spec version.
aios AGENTS.md
Instructions for rexleimo/aios, covering repository guidelines, path conventions (路径约定), workflow selection (required), project structure & module organization and build, test, and development commands.
git-ai-review AGENTS.md
AGENTS.md instructions for spylogsster/git-ai-review, covering agents.md — git-ai-review, scope, project structure, architecture rules and prompt and policy rules.