Borrowing it
Nothing to install: this file belongs to spyfree/mingli-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/spyfree/mingli-mcp/main/CLAUDE.mdgit clone --depth 1 https://github.com/spyfree/mingli-mcpWrote 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/instructions/spyfree/mingli-mcp/claude-md)<a href="https://agentmods.dev/instructions/spyfree/mingli-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/spyfree/mingli-mcp/claude-md.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.03140 | $0.03140 |
| Opus 5 | $0.01570 | $0.01570 |
| Sonnet 5 | $0.00628 | $0.00628 |
| Haiku 4.5 | $0.00314 | $0.00314 |
Grade C, and why
mingli-mcp CLAUDE.md scanned grade C with 1 finding 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 8d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf build/ dist/ *.egg-info How it starts
The opening of the file, as written. The whole thing — 369 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Quick Start
# Activate virtual environment
source venv/bin/activate
# Install development dependencies
pip install -e ".[dev]"
# Run the server (stdio mode for MCP)
python -m mingli_mcp
# Run HTTP transport (for Docker/server deployments)
TRANSPORT_TYPE=http HTTP_PORT=8080 python -m mingli_mcp
Common Development Commands
Testing
# Run all tests
pytest
# Run with verbose output
pytest -v
# Test with coverage
pytest --cov=. --cov-report=term-missing --cov-report=html
open htmlcov/index.html
# Run specific test file
pytest tests/test_bazi.py
# Run specific test function
pytest tests/test_ziwei.py::test_ziwei_chart
Code Quality
# Format code
black .
# Check import sorting
isort .
# Lint with flake8
flake8 .
# Type check with mypy
mypy .
# Run all quality checks at once
black --check . && isort --check-only . && flake8 . && pytest
Building and Publishing
# Clean build artifacts
rm -rf build/ dist/ *.egg-info
# Build package
python -m build
# Check package
twine check dist/*
# Publish to PyPI
twine upload dist/*
Development Workflow
# Debug with logging
LOG_LEVEL=DEBUG python -m mingli_mcp
Code Architecture
This is a Model Context Protocol (MCP) server for Chinese fortune telling systems with a modular, plugin-based architecture.
Core Structure
ziwei_mcp/
├── pyproject.toml # Project metadata and dependencies
├── mingli_mcp/ # The installable package (single top-level namespace)
│ ├── __init__.py # Package version (__version__)
│ ├── cli.py # Console entry point (mingli-mcp / python -m mingli_mcp)
│ ├── config.py # Configuration management
│ │
│ ├── mcp_server/ # MCP protocol implementation
│ │ ├── server.py # MingliMCPServer: request routing
│ │ ├── protocol.py # ProtocolHandler: initialize/prompts/resources, version negotiation
│ │ ├── resources.py # Resource contents
│ │ └── tools/ # Tool definitions and handlers
│ │
│ ├── core/ # Abstract base layer
│ │ ├── base_system.py # BaseFortuneSystem abstract class
│ │ ├── birth_info.py # BirthInfo data model
│ │ └── chart_result.py # ChartResult data model
│ │
│ ├── systems/ # Fortune system implementations
│ │ ├── __init__.py # System registry
│ │ ├── ziwei/ # Ziwei Doushu system (iztro-py based)
│ │ ├── bazi/ # BaZi (Four Pillars) system
│ │ └── astrology/ # Western astrology (stub)
│ │
│ ├── transports/ # Communication transports
│ │ ├── stdio_transport.py # stdio transport (default for MCP)
│ │ └── http_transport.py # Streamable HTTP transport (stateless JSON mode)
│ │
│ ├── utils/ # Validators, formatters, rate limiter, etc.
│ └── prompts/ # Prompt templates (shipped with the package)
│
└── tests/ # Unit tests
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.
- 8d ago First seen · 369 lines · 3,140 tokens per session scan C 0093b54b191d
mingli-mcp CLAUDE.md is an instructions file published in the GitHub repository spyfree/mingli-mcp (6 stars, last pushed 27d ago), licensed MIT. It adds 3,140 tokens to every session, about $0.0157 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.