core-principles

core-principles is a cursor rule for Cursor from enuno/unifi-mcp-server. It costs 488 tokens per session, scanned A, original, Apache-2.0.

A set of coding rules for building the project with asynchronous Python operations, explicit types, validated data, and security checks. Asynchronous code lets the program wait for network or file work without blocking other tasks.

In plain words
What is it for?
Use it when adding or changing code that performs I/O, calls APIs, handles nullable data, changes network settings, or records sensitive operations.
Why use it?
It gives contributors consistent guidance for handling UniFi requests, databases, files, input validation, confirmations, and audit logging safely.

Cursor rule for Cursor

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/enuno/unifi-mcp-server/core-principles
Clone the repo
git clone --depth 1 https://github.com/enuno/unifi-mcp-server

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 core-principles

README.md
[![agentmods](https://agentmods.dev/badge/rules/enuno/unifi-mcp-server/core-principles.svg)](https://agentmods.dev/rules/enuno/unifi-mcp-server/core-principles)
Your own site
<a href="https://agentmods.dev/rules/enuno/unifi-mcp-server/core-principles"><img src="https://agentmods.dev/badge/rules/enuno/unifi-mcp-server/core-principles.svg" alt="Measured on agentmods" height="20"></a>
Per session 488 This file is loaded in full into every session.
When invoked 488 The same file — it is already loaded in full.
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.00488 $0.00488
Opus 5 $0.00244 $0.00244
Sonnet 5 $0.00098 $0.00098
Haiku 4.5 $0.00049 $0.00049

Measured 5d ago against content hash 99b996eef922, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

core-principles 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/core-principles.mdc · 55 lines

How it starts

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

Core Coding Principles

1. Async-First Development

  • ALWAYS use async def for functions that perform I/O operations
  • Use await for API calls, database queries, file operations, HTTP requests
  • Leverage asyncio.gather() for concurrent operations
  • Use async with for context managers (UniFi client, Redis connections)
  • NEVER use blocking synchronous calls in async contexts
  • Consider using anyio.to_thread.run_sync() for CPU-intensive operations

2. Type Safety and Validation

  • ALWAYS provide type hints for all function parameters and return values
  • Use Pydantic models for complex input/output structures
  • Prefer explicit types over Any or untyped dicts
  • Use Optional[T] or T | None for nullable values
  • Leverage Pydantic's validation features (Field, validator decorators)
  • Run mypy before committing changes

3. Security-First Design

  • CRITICAL: All mutating operations MUST require confirm=True parameter
  • Implement dry_run=True mode for preview-before-apply
  • Log all operations to audit.log with context (user, timestamp, parameters)
  • Use password masking utilities for sensitive data in logs
  • Validate and sanitize all user inputs
  • Follow least-privilege principle for API access
  • Never commit API keys, passwords, or secrets to version control

4. Comprehensive Testing

  • Write tests FIRST for new features (TDD approach)
  • Target 80%+ code coverage for all new code
  • Use pytest fixtures for common setup
  • Mock external dependencies (UniFi API, Redis) in unit tests
  • Mark integration tests with @pytest.mark.integration
  • Test edge cases, error conditions, and validation failures
  • NEVER commit code that breaks existing tests

5. Documentation Standards

  • Write clear, comprehensive docstrings for all public functions
  • Use Google-style docstring format
  • Include Args, Returns, Raises sections
  • Provide usage examples in docstrings for complex tools
  • Update API.md when adding new tools or changing signatures
  • Keep README.md current with project capabilities

Read the full file on GitHub · 55 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 · 55 lines · 488 tokens per session scan A 99b996eef922

Subscribe to this mod's changes

core-principles is a cursor rule published in the GitHub repository enuno/unifi-mcp-server (245 stars, last pushed 3d ago), licensed Apache-2.0. It adds 488 tokens to every session, about $0.0024 per session on Opus 5. 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.