Borrowing it
Nothing to install: this file belongs to reliverse/experiments. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/reliverse/experiments/main/.cursor/deprecated/use-reliverse-rempts-instead-of-commander.mdcgit clone --depth 1 https://github.com/reliverse/experimentsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/rules/reliverse/experiments/use-reliverse-rempts-instead-of-commander)<a href="https://agentmods.dev/rules/reliverse/experiments/use-reliverse-rempts-instead-of-commander"><img src="https://agentmods.dev/badge/rules/reliverse/experiments/use-reliverse-rempts-instead-of-commander/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/rules/reliverse/experiments/use-reliverse-rempts-instead-of-commander"><img src="https://agentmods.dev/badge/rules/reliverse/experiments/use-reliverse-rempts-instead-of-commander.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00774 |
| Opus 5 | $0.00000 | $0.00387 |
| Sonnet 5 | $0.00000 | $0.00155 |
| Haiku 4.5 | $0.00000 | $0.00077 |
Grade A, and why
use-reliverse-rempts-instead-of-commander 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 9d 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 — 117 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Rempts CLI Development Patterns
Dler framework uses Rempts to build CLI tools.
Follow these patterns when developing CLI functionality in the Rempts framework.
Command Structure
Commands follow a consistent pattern using the core framework:
// In any command file (e.g., packages/cli/src/commands/build.ts)
import { defineCommand, option } from '@reliverse/rempts'
import { z } from 'zod'
export const buildCommand = defineCommand({
name: 'build',
description: 'Build the project',
options: {
// Define options with Zod validation
output: option(
z.string().default('dist'),
{ description: 'Output directory', short: 'o' }
),
compress: option(
z.boolean().default(false),
{ description: 'Compress output' }
)
},
handler: async ({ flags, positional, shell, env, cwd, prompt, spinner, colors, context }) => {
// Access type-safe flags
const spin = spinner(`Building to ${flags.output}...`)
spin.start()
// Access plugin context if available
if (context?.env.isAIAgent) {
console.log(`AI Agent detected: ${context.store.aiAgents.join(', ')}`)
}
// Implementation
await shell`bun build src/index.ts --outdir ${flags.output}`
spin.succeed('Build complete!')
}
})
Configuration
- Use dler.config.ts files for project configuration
- Configuration is defined using packages/core/src/types.ts
- See examples in examples/ for different config patterns
File Naming
- Use kebab-case for all files:
my-command.tsnotMyCommand.ts - Commands go in
commands/directory - Use
.jsextensions for all local imports (ESM requirement) - Keep files focused on single responsibilities
Error Handling
- Use utilities from the handler context:
relico.error(),relico.warn(),relico.info() - Throw meaningful errors with helpful messages
- Zod schemas provide automatic validation for command options
- Use validation from packages/utils/src/validation.ts
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.
- 9d ago First seen · 117 lines · 0 tokens per session scan A 99c8335634ff
use-reliverse-rempts-instead-of-commander is a cursor rule published in the GitHub repository reliverse/experiments (118 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 774 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
windsurfrules
The Beads MCP server (beads) provides real-time access to project tasks. Query tasks/list, tasks/get, dependencies/list, status/get for current state. No live task data is embedded in this file.
vue-typescript-patterns
A set of coding rules for Vue 3 projects using TypeScript, a language that adds type checking to JavaScript. It covers component structure, file locations, TypeScript usage, and Pinia, a library for shared application state.
nextjs-typescript-app-cursorrules-prompt-file
Cursor rules for Next.js development with TypeScript integration.
ts
A set of TypeScript coding rules covering types, naming, file organization, error handling, and strict type checking. TypeScript is JavaScript with checks that help catch many mistakes before the program runs.
platform-pattern-2-filesystem-operations
Cursor rule "platform-pattern-2-filesystem-operations" from PaulJPhilp/EffectPatterns, covering platform pattern 2: filesystem operations and example.
handle-unexpected-errors-by-inspecting-the-cause
Cursor rule "handle-unexpected-errors-by-inspecting-the-cause" from PaulJPhilp/EffectPatterns, covering handle unexpected errors by inspecting the cause and example.