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/davidl71/project-management-automation/project-developmentgit clone --depth 1 https://github.com/davidl71/project-management-automationWhat 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.02149 | $0.02149 |
| Opus 5 | $0.01074 | $0.01074 |
| Sonnet 5 | $0.00430 | $0.00430 |
| Haiku 4.5 | $0.00215 | $0.00215 |
Grade C, and why
project-development scanned grade C with 2 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 2d 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -LsSf https://astral.sh/uv/install.sh | sh Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -LsSf https://astral.sh/uv/install.sh | sh How it starts
The opening of the file, as written. The whole thing — 335 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Project Management Automation - Development Rules
This document provides development guidelines and conventions for the Project Management Automation MCP Server.
Project Overview
Type: Python MCP Server
Purpose: Expose project management automation tools via Model Context Protocol
Package Name: exarp (Extended Automation & Research Platform)
MCP Server Identifier: exarp
Code Style
- Python Version: >= 3.9
- Code Formatter: Black (default configuration)
- Linter: Ruff
- Type Checking: mypy (strict mode recommended)
- Testing: pytest with pytest-mock
Development Workflow
1. Setup Development Environment
🚨 CRITICAL: This project uses uv for package management. NEVER use pip directly.
# Install dependencies and sync environment (REQUIRED - uses uv.lock)
uv sync
# This replaces the old: pip install -e '.[dev]'
# uv automatically handles editable installs and dev dependencies
Why uv?
- 10-100x faster than pip
- Automatic environment management
- Better dependency resolution
- Project has
uv.lockfile configured
If uv is not available:
# Install uv first
curl -LsSf https://astral.sh/uv/install.sh | sh
# Or: pipx install uv
2. Running Tests
Always use uv run to execute commands in the managed environment:
# Run all tests
uv run pytest tests/ -v
# Run specific test file
uv run pytest tests/test_tools.py -v
# Run with coverage
uv run pytest tests/ --cov=project_management_automation --cov-report=html
3. Code Quality Checks
Always use uv run to execute commands in the managed environment:
# Format code
uv run black .
# Type check
uv run mypy .
# Lint
uv run ruff check .
4. Testing MCP Server
Always use uv run to execute commands in the managed environment:
# Run server directly for testing
uv run python -m project_management_automation.server
# Or use the exarp command
uv run exarp --version
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.
- 2d ago First seen · 335 lines · 2,149 tokens per session scan C 4b09520f7499
project-development is a cursor rule published in the GitHub repository davidl71/project-management-automation (1 stars, last pushed 6mo ago), licensed MIT. It adds 2,149 tokens to every session, about $0.0107 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). 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
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.
prefer-direct-imports-over-module-mocks
Prefer extracting a testable core over vi.mock / vi.resetModules when unit tests need to reach production logic entangled with config, env, or singletons.
control-plane-descriptors
Control plane descriptor and instance implementation patterns.
family-instance-domain-actions
Family instance domain action implementation patterns.