Loading...
Aprenda a integrar Context Mesh com suas ferramentas de IA e fluxos de trabalho favoritos.
Context Mesh funciona com qualquer assistente de código com IA. Veja como configurar.
O editor de código AI-first com referência nativa de arquivos.
123456789101112# In Cursor Settings > Rules for AI# Add the following: When working on this project, always check the context/ directory first.Load relevant context files before making changes:- @context/intent/project-intent.md for project overview- @context/decisions/*.md for architectural decisions- @context/knowledge/patterns/*.md for coding patterns- @context/agents/*.md for task execution Follow the patterns and decisions documented in the context.When making changes, suggest updates to context files if needed.Faça upload ou cole arquivos de contexto para qualquer assistente de IA.
# Example prompt structure for Claude
## Loading Context
"Load @context/intent/project-intent.md and @context/decisions/001-tech-stack.md"
## Executing Agents
"Execute @context/agents/agent-feature.md"
## Creating Context
"Create a new decision record for choosing PostgreSQL over MongoDB.
Follow the template in @context/decisions/template.md"Funciona de forma similar ao Cursor com referência de arquivos.
Windsurf suporta a mesma sintaxe @file para referenciar contexto.
Seu contexto deve viver junto com seu código no controle de versão.
12345678910111213141516# .gitignore - DON'T ignore context/# The context/ directory should be version controlled # Build outputs.next/dist/build/ # Dependenciesnode_modules/ # Environment.env*.local # The context directory is NOT ignored - it's part of your codebase!# context/ <- This should be tracked in gitMelhore sua experiência na IDE com estas configurações.
1234567891011121314151617181920212223242526272829303132333435// .vscode/tasks.json{ "version": "2.0.0", "tasks": [ { "label": "New Intent Document", "type": "shell", "command": "cp context/intent/template.md context/intent/feature-${input:featureName}.md", "problemMatcher": [] }, { "label": "New Decision Record", "type": "shell", "command": "cp context/decisions/template.md context/decisions/${input:decisionNumber}-${input:decisionName}.md", "problemMatcher": [] } ], "inputs": [ { "id": "featureName", "type": "promptString", "description": "Feature name (lowercase, hyphenated)" }, { "id": "decisionNumber", "type": "promptString", "description": "Decision number (e.g., 001)" }, { "id": "decisionName", "type": "promptString", "description": "Decision name (lowercase, hyphenated)" } ]}Como usar Context Mesh efetivamente em equipe.
Repositório de Contexto Compartilhado
Armazene o contexto no seu repositório principal ou em um repo dedicado.
Revisão de Contexto
Inclua mudanças de contexto nas revisões de código. São tão importantes quanto código.
Evolução Regular
Agende tempo para revisar e evoluir o contexto baseado em aprendizados.
Leve suas habilidades em Context Mesh para o próximo nível.