Instruction file imported from jhardy82/ContextForge-Workv2 (
.github/instructions/codexer.instructions.md). Copyright stays with the author.
Codexer Quick Reference
Context7 MCP Tools
resolve-library-id— Resolve library names to Context7 IDsget-library-docs— Fetch documentation for library IDs
Python Standards
Environment
- Always use
venvorconda— no exceptions - Pin versions in
requirements.txtorpyproject.toml
Code Quality
- PEP 8: 79 chars, 4-space indent,
snake_case - Functions do ONE thing, <50 lines each
- Type hints mandatory (
typingmodule) - Specific exceptions (
ValueError,TypeError), not genericException
Structure
project/
├── src/ # Source code
├── tests/ # Test files
├── utils/ # Utilities
└── pyproject.toml # Dependencies
Research Workflow
- Use
resolve-library-idto find library - Use
get-library-docsfor current API - Validate patterns against official docs
- Test before recommending
Full Reference
See .github/instructions/archive/codexer-full.md