🌐 日本語
Cursor / Cline / Copilot Reference Table
NOTE
The principle of "context window injection control" in Claude Code is shared with other LLM tools.
Feature Mapping Across Tools
| Claude Code | Cursor | Cline | GitHub Copilot | Common Principle |
|---|---|---|---|---|
CLAUDE.md | .cursorrules | .clinerules | .github/copilot-instructions.md | Resident context |
.claude/rules/ | @ mentions | - | - | Conditional context |
.claude/skills/ | Docs reference | - | - | On-demand context |
.claude/agents/ | - | - | - | Independent context execution |
settings.json | IDE settings | IDE settings | IDE settings | Runtime control |
| Hooks | - | - | - | Lifecycle control |
| MCP | MCP | MCP | - | Tool definition injection |
/compact | - | - | - | Context compression |
Universality of Principles
Regardless of tools, the following principles remain constant:
- Keep resident context minimal: Resident information in any tool triggers Priority Saturation
- Distribute with conditional injection: Don't concentrate all rules in one place
- Mechanical validation outside context: Testing, linting, CI/CD don't depend on LLMs
- Keep sessions short: Context Rot and Instruction Decay are universal across all models
WARNING
TODO: Detailed comparison of each tool to be added
Series Complete: Return to Top Page