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 agents/dimpagk92/cellar/cursorgit clone --depth 1 https://github.com/dimpagk92/cellarWhat 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.00000 | $0.01365 |
| Opus 5 | $0.00000 | $0.00682 |
| Sonnet 5 | $0.00000 | $0.00273 |
| Haiku 4.5 | $0.00000 | $0.00136 |
Grade A, and why
cursor 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 yesterday.
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 — 135 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Driving CEL from Cursor
This page shows how to drive CEL from Cursor.
Read docs/adapters-cel-agents.md first if you haven't.
Purpose
Cursor supports MCP servers from its composer / chat runtime, which makes CEL usable directly from the editor without any bespoke glue. In this setup:
- Cursor owns planning, tool selection, retries, and approval prompts.
- CEL exposes
cel_see,cel_act,cel_perceive,cel_thinkover stdio MCP. - You normally only need
cel_see+cel_actfrom Cursor. Leavecel_thinkalone unless you explicitly want delegated autonomy.
Setup
1. Build CEL
cd /path/to/cellar
pnpm install && pnpm -r build
2. Register CEL as an MCP server
Cursor reads MCP servers from its global settings and/or project settings. The most reliable location is the global MCP config:
- macOS:
~/.cursor/mcp.json
TODO: verify with latest Cursor version — Cursor has iterated on MCP config paths. If ~/.cursor/mcp.json does not exist for you, check Cursor → Settings → MCP (the UI now exposes a server editor in recent builds). The stdio config block itself is stable across versions.
Add CEL:
{
"mcpServers": {
"cel": {
"command": "node",
"args": ["/absolute/path/to/cellar/mcp-server/dist/index.js"]
}
}
}
Or, if cellar is on your PATH:
{
"mcpServers": {
"cel": {
"command": "cellar",
"args": ["mcp"]
}
}
}
3. Confirm tools appear
Restart Cursor. Open Settings → MCP (or the equivalent panel). You should see cel listed with its four tools: cel_see, cel_act, cel_perceive, cel_think.
TODO: screenshot — Cursor Settings panel with CEL tools listed.
In the composer, enabling the CEL tools in the tool picker makes them callable from the current session.
4. Grant macOS Accessibility permission
The first call to cel_act that performs input will fail until the host process (Cursor, or the Node process Cursor spawns) has Accessibility permission. Grant it in System Settings → Privacy & Security → Accessibility and restart Cursor.
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.
- yesterday First seen · 135 lines · 0 tokens per session scan A 75e4107aea58
cursor is an agent published in the GitHub repository dimpagk92/cellar (4 stars, last pushed 22d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,365 tokens. 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 agents, from other repositories
accessibility-specialist
Accessibility expert: WCAG 2.2 audits, screen reader compat, keyboard navigation, ARIA patterns, automated a11y testing.
designer
Ornamental design specialist for historical and modern style analysis, colorblind-accessible palettes, and AI-assisted image generation using Z-Image.
hatch3r-ux
UX quality specialist — reviews generated UX flows for error-recovery clarity, first-run success, decisions-per-flow discipline, focus management, and screen-reader announcement. Use when UX flows are authored or modified.
ui-surfaces
The AI summary card and its proposal choreography, the internals panel, the settings tabs, and the sidebar wake queue.
hatch3r-ui
UI quality specialist — reviews generated UI for WCAG 2.2 AA conformance, design-token adoption ≥95%, four-state surface contract coverage, and component-library reuse. Use when UI is authored or modified.
ACCESSIBILITY_REVIEWER
You are an elite Digital Accessibility Auditor holding an IAAP CPWA (Certified Professional in Web Accessibility) certification. Your mandate is to evaluate digital interfaces to ensure genuine, human-centered accessibility, prioritizing functional task success and Universal Design over rote technical compliance.