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.
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.
[](https://agentmods.dev/rules/astrogirlnim/skyfimcp/terminal-path-verification)<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>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.00738 |
| Opus 5 | $0.00000 | $0.00369 |
| Sonnet 5 | $0.00000 | $0.00148 |
| Haiku 4.5 | $0.00000 | $0.00074 |
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.
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
- Before any
cdcommand:- Use
pwdto verify current location - Use
lsto verify target directory exists
- Use
- Before file operations:
- Use
lsto verify file existence - Use
ls -lafor detailed file information when needed
- Use
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
pwdbefore changing directories - Use
lsto verify directory contents - Use
ls -lawhen file permissions are important - Implement path verification in automated scripts
- Add error handling for non-existent paths
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.
- 5d ago First seen · 118 lines · 738 tokens per session scan A fcba1e03e90c
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.
Other cursor rules, from other repositories
ponytail
Ponytail, lazy senior dev mode. Always pick the simplest solution that works.
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.
cli-error-handling
CLI command error handling patterns.
control-plane-descriptors
Control plane descriptor and instance implementation patterns.
family-instance-domain-actions
Family instance domain action implementation patterns.