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 rules/reliverse/experiments/quick-referencegit clone --depth 1 https://github.com/reliverse/experimentsWhat 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.00848 |
| Opus 5 | $0.00000 | $0.00424 |
| Sonnet 5 | $0.00000 | $0.00170 |
| Haiku 4.5 | $0.00000 | $0.00085 |
Grade A, and why
quick-reference 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 today.
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 — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Rempts Quick Reference
Essential commands and conventions for working with the Rempts CLI framework.
Key Commands
# Development
bun dev # Start development mode
bun test # Run all tests
bun run build # Build all packages
bun run clean # Clean artifacts
# Package-specific
cd packages/core && bun run build
cd packages/cli && bun test
cd apps/web && bun dev
File Conventions
- Naming: Always kebab-case (
my-command.ts, notMyCommand.ts) - Imports: ESM only, use
.jsextensions for local imports - Tests:
.test.tssuffix intest/directories - Exports: Prefer named exports over default
Quick File Templates
Command Definition
import { defineCommand, option } from '@reliverse/rempts'
import { z } from 'zod'
export const myCommand = defineCommand({
name: 'my-command',
description: 'Description',
options: {
input: option(
z.string().default('default'),
{ description: 'Input value', short: 'i' }
)
},
handler: async ({ flags, positional, shell, env, cwd, prompt, spinner, colors, context }) => {
// Implementation - all utilities available
console.log(relico.green(`Input: ${flags.input}`))
console.log(`Args: ${positional.join(', ')}`)
// Access plugin store if available
if (context?.store.someData) {
console.log(context.store.someData)
}
}
})
Test File
import { describe, it, expect } from 'bun:test'
import { testCommand } from '@reliverse/rempts-test'
import { myCommand } from './my-command.js'
describe('My Command', () => {
it('works', async () => {
const result = await testCommand(myCommand, {
flags: { input: 'test' }, // Named options
args: ['file.txt'] // Positional arguments
})
expect(result.exitCode).toBe(0)
expect(result.stdout).toContain('Input: test')
})
})
Common Imports
// Core framework
import { defineCommand, defineConfig, option, createCLI } from '@reliverse/rempts'
import { createPlugin } from '@reliverse/rempts/plugin'
// Utilities
import { colors, spinner, prompt } from '@reliverse/rempts-utils'
// Plugins
import { aiAgentPlugin } from '@reliverse/rempts-plugin-ai-detect'
import { configMergerPlugin } from '@reliverse/rempts-plugin-config'
// Testing
import { testCommand } from '@reliverse/rempts-test'
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.
- today First seen · 132 lines · 0 tokens per session scan A 1e11d81596c4
quick-reference is a cursor rule published in the GitHub repository reliverse/experiments (118 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 848 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-09-01.
Other cursor rules, from other repositories
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
typescript
Changes to these high-fan-out internals can affect every message, delta, element, or rerun. Keep work in them minimal, and benchmark changes with representative stress-test apps.
coolify-ai-docs
Master reference to all Coolify AI documentation in .ai/ directory.
python_lib
Tips and guidelines specific to the development of the Streamlit Python library, not applicable to scripts and e2e tests.
specs
This directory contains product and tech specs for Streamlit features.