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 instructions/labex-labs/python-cheatsheet/copilot-instructionsgit clone --depth 1 https://github.com/labex-labs/python-cheatsheetWhat 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.01155 | $0.01155 |
| Opus 5 | $0.00577 | $0.00577 |
| Sonnet 5 | $0.00231 | $0.00231 |
| Haiku 4.5 | $0.00115 | $0.00115 |
Grade A, and why
python-cheatsheet copilot-instructions.md 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 yesterday.
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 — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Python Cheatsheet - AI Coding Assistant Instructions
Project Overview
This is a Vue 3 + Vite-based documentation website for Python programming reference, featuring a comprehensive cheatsheet, blog posts, and built-in function documentation. The site uses Vue-SSG for static generation and is deployed on Netlify.
Architecture & Key Patterns
Content Structure
- Cheatsheet pages: Markdown files in
docs/cheatsheet/(e.g.,basics.md,control-flow.md) - Built-in functions: Individual pages in
docs/builtin/(e.g.,abs.md,print.md) - Blog posts: Markdown files in
docs/blog/with frontmatter metadata - Modules documentation: Standard library references in
docs/modules/
Routing & Layout System
- Uses
vite-plugin-pagesfor file-based routing with multiple layouts:default.vue: Main layout with sidebar + TOCarticle.vue: Blog post layoutfullPage.vue: Full-width pagesblog.vue: Blog index layout
- Route metadata defined in
<route lang="yaml">blocks - Navigation structure centralized in
src/store/navigation.ts
Content Rendering
- Markdown files auto-converted to Vue components via
unplugin-vue-markdown - Prism.js for syntax highlighting with custom theme
- Custom Vue components available in markdown (e.g.,
<base-title>,<base-disclaimer>) - Automatic TOC generation from headings using
markdown-it-anchor
Key Features Implementation
- Reader Mode: Full-screen reading with font size controls (
src/store/reader.ts) - Dark Mode: Theme toggle with system preference detection
- Search: Algolia DocSearch integration (
src/components/AlgoliaDocSearch.vue)
Development Workflows
Essential Commands
pnpm dev # Development server
pnpm build # Production build (Vue-SSG)
pnpm lint # ESLint check
pnpm typecheck # TypeScript validation
Content Creation Patterns
New Cheatsheet Page:
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.
- yesterday First seen · 152 lines · 1,155 tokens per session scan A 9cf9f180c660
python-cheatsheet copilot-instructions.md is an instructions file published in the GitHub repository labex-labs/python-cheatsheet (4,953 stars, last pushed 2mo ago), licensed MIT. It adds 1,155 tokens to every session, about $0.0058 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-09-01.
Other instructions, from other repositories
ai-engineering-from-scratch AGENTS.md
Instructions for rohitg00/ai-engineering-from-scratch, covering agents.md, philosophy, repo layout, hard rules and dependencies.
building-a-coding-agent-from-scratch-course AGENTS.md
Instructions for decodingai-magazine/building-a-coding-agent-from-scratch-course, covering decode, project structure, tech stack, docs & external services and running commands.
easy-vibe CLAUDE.md
Claude Code instructions for datawhalechina/easy-vibe, covering claude.md, project overview, development commands, start local documentation server and build/run commands.
easy-vibe AGENTS.md
AGENTS.md instructions for datawhalechina/easy-vibe, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.
agentic-ai-system-course AGENTS.md
Instructions for bryanyzhu/agentic-ai-system-course, covering claude.md — ai mentor's guideline, the design you are working inside, your role, the curriculum and reference systems: optional, triggered, not required.
agentops-open-course AGENTS.md
Instructions for MLOps-Courses/agentops-open-course, covering agents.md, repository purpose, course invariants, open-source boundary and pinned contracts.