terminal-path-verification

terminal-path-verification is a cursor rule for Cursor from astrogirlnim/SkyFiMCP. It costs 0 tokens per session (738 once invoked), scanned A, original, MIT.

A set of rules for checking your current folder and target paths before running terminal commands.

In plain words
What is it for?
Use it before changing directories or modifying files, typically by checking with pwd and ls first.
Why use it?
It reduces errors from missing folders or files and helps prevent unintended file operations.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Not installable on its own: it runs a file from its repository that does not travel with it. Clone the repository, or install whatever ships that file. The line is cd ./project/src.

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Cursor.

Wrote 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.

agentmods badge for terminal-path-verification

README.md
[![agentmods](https://agentmods.dev/badge/rules/astrogirlnim/skyfimcp/terminal-path-verification.svg)](https://agentmods.dev/rules/astrogirlnim/skyfimcp/terminal-path-verification)
Your own site
<a href="https://agentmods.dev/rules/astrogirlnim/skyfimcp/terminal-path-verification"><img src="https://agentmods.dev/badge/rules/astrogirlnim/skyfimcp/terminal-path-verification.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 738 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.1 $0.00000 $0.00738
Opus 5 $0.00000 $0.00369
Sonnet 5 $0.00000 $0.00148
Haiku 4.5 $0.00000 $0.00074

Measured 5d ago against content hash fcba1e03e90c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

terminal-path-verification 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 5d 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.

.cursor/rules/terminal-path-verification.mdc · 118 lines

How it starts

The opening of the file, as written. The whole thing — 118 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Terminal Path Verification

// Description: Best practices for verifying paths and locations before executing terminal commands // Recommended Globs: **/.{js,jsx,ts,tsx}, **/.sh

Overview

Always verify current directory and path structure before executing path-related commands to prevent errors and unintended operations.

Core Rules

  1. Before any cd command:
    • Use pwd to verify current location
    • Use ls to verify target directory exists
  2. Before file operations:
    • Use ls to verify file existence
    • Use ls -la for detailed file information when needed

Examples

✅ Good Practice

# Before changing directory
pwd  # Check current location
ls   # Verify directory structure
cd target_directory

# Before file operations
ls -la file_to_modify.txt  # Verify file exists and check permissions
vim file_to_modify.txt

❌ Bad Practice

# Directly changing directory without verification
cd some_directory  # Might not exist!

# File operations without verification
rm file.txt  # Dangerous without verification!

Implementation in Cursor

async function executeTerminalCommand(command: string) {
  // Always verify location before path-related commands
  if (command.startsWith('cd ')) {
    await verifyPath(command.split(' ')[1]);
  }

  // Always verify file existence before file operations
  if (isFileOperation(command)) {
    await verifyFileExistence(command);
  }
}

async function verifyPath(targetPath: string) {
  // Check current location
  console.log('Current location:');
  await runCommand('pwd');

  // List directory contents
  console.log('\nDirectory contents:');
  await runCommand('ls');

  // Verify target exists
  if (!(await pathExists(targetPath))) {
    throw new Error(`Target path does not exist: ${targetPath}`);
  }
}

Best Practices

  • Always use pwd before changing directories
  • Use ls to verify directory contents
  • Use ls -la when file permissions are important
  • Implement path verification in automated scripts
  • Add error handling for non-existent paths

Read the full file on GitHub · 118 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. 5d ago First seen · 118 lines · 738 tokens per session scan A fcba1e03e90c

Subscribe to this mod's changes

terminal-path-verification is a cursor rule published in the GitHub repository astrogirlnim/SkyFiMCP (1 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 738 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.