- Introduce .grok/context.md for Grok CLI workflows, MCP tool examples, and best practices. - Add .grokignore to optimize context by excluding large files and binaries. - Create CONTEXT.md as a general LLM context guide adaptable across platforms. - Update README.md for provider-agnostic structure, Grok CLI integration, and generalized docs. - Fix paths in config/claude_desktop_config.json to match new repository location.
36 lines
541 B
Plaintext
36 lines
541 B
Plaintext
# Grok CLI / xAI agent ignores
|
|
# Similar to .gitignore but for context management
|
|
|
|
# Build / env
|
|
**/.venv/
|
|
**/node_modules/
|
|
**/__pycache__/
|
|
**/*.pyc
|
|
**/.poetry/
|
|
|
|
# Large data / binaries
|
|
**/*.dcm
|
|
**/*.png
|
|
**/*.jpg
|
|
**/*.pdf
|
|
**/*.docx
|
|
**/*.xlsx
|
|
**/*.pptx
|
|
**/img/
|
|
**/docs/img/
|
|
|
|
# Logs / temp
|
|
**/*.log
|
|
**/.continue/
|
|
**/.claude/
|
|
|
|
# Vendor / heavy deps
|
|
**/mcps/playwright_mcp/node_modules/
|
|
|
|
# Ignore self
|
|
.grokignore
|
|
README.md # Handled separately via context docs
|
|
|
|
# Optional: large reference files
|
|
**/skills/**/reference/
|
|
**/mcps/dicom_mcp/docs/ |