cli-package-exports

A map of which modules and subpaths export the command-line interface code. The main package exposes shared functions, while configuration, commands, and control-plane APIs are imported from their specific subpaths.

In plain words
What is it for?
Use it when importing contract loaders, configuration helpers, CLI command factories, or control-plane APIs in code and tests.
Why use it?
It prevents imports from unsupported paths that fail or depend on an incorrect package boundary.

Cursor rule for Codex

Install

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.

agentmods
npx agentmods add rules/prisma/orm/cli-package-exports
Clone the repo
git clone --depth 1 https://github.com/prisma/orm

Made for: Codex.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 576 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured yesterday against content hash 73b92e8db66c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.agents/rules/cli-package-exports.mdc · 68 lines

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): Exports loadContractFromTs and createContractEmitCommand
  • @internal/cli/config-types: Exports defineConfig and config types
  • @internal/cli/commands/*: Exports command factory functions (e.g., createDbIntrospectCommand, createDbVerifyCommand)
  • @internal/cli/config-loader: Exports loadConfig function
  • @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:

  1. Add entry point to tsdown.config.ts: Add/adjust the entry mapping for the new subpath.
  2. Generate exports: Run pnpm --filter @internal/cli build to regenerate package.json#exports.
  3. Commit generated exports: Commit the resulting package.json changes.
  4. 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.

Read the full file on GitHub · 68 lines

Changes

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.

  1. yesterday First seen · 68 lines · 0 tokens per session scan A 73b92e8db66c

Subscribe to this mod's changes

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.