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/prisma/orm/cli-package-exportsgit clone --depth 1 https://github.com/prisma/ormWhat 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.00576 |
| Opus 5 | $0.00000 | $0.00288 |
| Sonnet 5 | $0.00000 | $0.00115 |
| Haiku 4.5 | $0.00000 | $0.00058 |
Grade A, and why
cli-package-exports 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 — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLI Package Exports
Export Structure
The @internal/cli package exports several subpaths:
@internal/cli(main export): ExportsloadContractFromTsandcreateContractEmitCommand@internal/cli/config-types: ExportsdefineConfigand config types@internal/cli/commands/*: Exports command factory functions (e.g.,createDbIntrospectCommand,createDbVerifyCommand)@internal/cli/config-loader: ExportsloadConfigfunction@internal/cli/control-api: Exports control-plane API surface used by tooling
Import Patterns
✅ CORRECT: Import from correct subpath
// loadContractFromTs is exported from the main package
import { loadContractFromTs } from '@internal/cli';
// Commands are exported from their specific subpaths
import { createDbIntrospectCommand } from '@internal/cli/commands/db-introspect';
import { createDbVerifyCommand } from '@internal/cli/commands/db-verify';
// Config loader is exported from its subpath
import { loadConfig } from '@internal/cli/config-loader';
❌ WRONG: Importing from wrong subpath
// ❌ WRONG: Commands are not exported from main package
import { createDbIntrospectCommand } from '@internal/cli';
Why This Structure?
- Main package (
@internal/cli): Exports high-level utilities used by consumers - Subpaths: Export specific functionality for testing or advanced use cases
- Commands: Each command has its own subpath to allow selective imports and testing
Adding New Exports
When adding new exports to the CLI package:
- Add entry point to
tsdown.config.ts: Add/adjust theentrymapping for the new subpath. - Generate exports: Run
pnpm --filter @internal/cli buildto regeneratepackage.json#exports. - Commit generated exports: Commit the resulting
package.jsonchanges. - Update this rule: Document the new export and its intended usage.
Manual package.json#exports editing is an exception-only path. Use it only if auto-generation cannot represent the required export shape.
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 · 68 lines · 0 tokens per session scan A 73b92e8db66c
cli-package-exports is a cursor rule published in the GitHub repository prisma/orm (47,579 stars, last pushed today), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 576 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-30.
Other cursor rules, from other repositories
config-validation-and-normalization
Patterns for config validation and normalization using Arktype.
contract-space-package-layout
On-disk layout for packages that expose a contract space (extensions, internal monorepo packages, aggregate-root apps).
cli-package-exports
CLI package export patterns and import conventions.
resolving-cyclic-dependencies
How to resolve cyclic dependencies when moving types or refactoring packages.
no-family-vocabulary-in-framework
The framework domain (packages/1-framework) carries no family- or target-specific vocabulary — types, fields, hooks, or strategy values. Enforced by lint:framework-vocabulary.
review-scope-overrides
Honor explicitly provided base branches in review artifacts.