9148c358d0
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
6.8 KiB
6.8 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-integrated-development-environme | Integrated Development Environment | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Integrated Development Environment
매 한 줄
"매 IDE 는 이제 LLM 의 인터페이스다 — 코드 + 컨텍스트 + 에이전트가 같은 창에서 만난다". 1980 년대 Turbo Pascal 에서 시작된 IDE 는 2026 현재 VS Code/JetBrains/Cursor/Zed 4 강 + Antigravity/Windsurf 같은 agentic IDE 로 분화하며, 단순 편집기에서 LSP+Copilot+Agent 를 통합한 개발 OS 로 진화했다.
매 핵심
매 2026 주요 IDE 지형
- VS Code (Microsoft): 최대 점유율, Copilot/Continue/Cline 등 확장.
- JetBrains (IntelliJ/PyCharm/WebStorm): 강력한 정적 분석 + AI Assistant.
- Cursor (Anysphere): VS Code fork, agent-first UX.
- Zed: Rust 네이티브, 협업 + 멀티버퍼.
- Antigravity (Google): agent-native, multi-pane terminal/browser/editor.
- Windsurf (Codeium): cascading agent.
- Neovim + LSP: 키보드 중심 + AI plugin (avante.nvim, copilot.lua).
매 핵심 컴포넌트
- LSP (Language Server Protocol): 언어 기능 표준화.
- DAP (Debug Adapter Protocol): 디버거 표준화.
- MCP (Model Context Protocol): 2024-2025 표준, AI 에이전트의 도구/리소스 접근.
- Tree-sitter: 증분 파싱 → 신택스 + 코드 네비.
- Extension API: VS Code 가 사실상 표준.
매 AI 통합 레벨
- L1 — autocomplete (Tab completion, Copilot inline).
- L2 — chat sidebar (Q&A on selection).
- L3 — multi-file edit (Cursor Composer, Copilot Workspace).
- L4 — autonomous agent (Antigravity, Windsurf Cascade, Devin-like).
매 응용
- 폴리글랏 개발 (LSP 다중 언어).
- Remote / Codespaces 개발.
- Notebook + IDE 통합 (Jupyter, Polyglot Notebooks).
- Agentic refactoring (수십 파일 동시).
💻 패턴
1. VS Code extension 최소 골격
// package.json: "main": "./out/extension.js"
import * as vscode from 'vscode';
export function activate(ctx: vscode.ExtensionContext) {
ctx.subscriptions.push(
vscode.commands.registerCommand('hello.run', () => {
vscode.window.showInformationMessage('Hello from extension');
})
);
}
export function deactivate() {}
2. LSP 서버 등록 (Node)
import { createConnection, TextDocuments, ProposedFeatures } from 'vscode-languageserver/node';
import { TextDocument } from 'vscode-languageserver-textdocument';
const conn = createConnection(ProposedFeatures.all);
const docs = new TextDocuments(TextDocument);
conn.onInitialize(() => ({ capabilities: { textDocumentSync: 1, hoverProvider: true } }));
conn.onHover(({ textDocument, position }) => ({ contents: 'hello' }));
docs.listen(conn); conn.listen();
3. .vscode/settings.json (project local)
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": { "source.fixAll": "explicit" },
"files.exclude": { "**/.git": true, "**/node_modules": true },
"typescript.preferences.importModuleSpecifier": "relative",
"github.copilot.editor.enableAutoCompletions": true
}
4. .vscode/launch.json (DAP)
{
"version": "0.2.0",
"configurations": [{
"type": "node",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/src/index.ts",
"preLaunchTask": "tsc: build"
}]
}
5. JetBrains plugin (Kotlin) action
class HelloAction : AnAction() {
override fun actionPerformed(e: AnActionEvent) {
Messages.showMessageDialog(e.project, "Hello", "Plugin", null)
}
}
// plugin.xml: <action id="Hello" class="...HelloAction" text="Hello"/>
6. MCP server 등록 (VS Code / Cursor)
// ~/.cursor/mcp.json or .vscode/mcp.json
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/me/proj"]
},
"github": {
"command": "npx", "args": ["-y", "@modelcontextprotocol/server-github"],
"env": { "GITHUB_TOKEN": "..." }
}
}
}
7. .editorconfig (cross-IDE)
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.go]
indent_style = tab
8. Devcontainer (VS Code Remote / Codespaces)
{
"name": "node-20",
"image": "mcr.microsoft.com/devcontainers/typescript-node:20",
"features": { "ghcr.io/devcontainers/features/docker-in-docker:2": {} },
"postCreateCommand": "npm install",
"customizations": { "vscode": { "extensions": ["dbaeumer.vscode-eslint"] } }
}
9. Neovim + LSP + Copilot
require'lspconfig'.tsserver.setup{}
require'copilot'.setup{ suggestion = { auto_trigger = true } }
vim.keymap.set('n', 'gd', vim.lsp.buf.definition)
10. AI agent rules (Cursor / Antigravity .rules)
# rules.md
- Always read the file before editing
- Run `pnpm test` after non-trivial edits
- Prefer absolute imports; ban `any` in TS
- Commit messages: conventional commits
매 결정 기준
| 상황 | Approach |
|---|---|
| 폴리글랏 / 일반 | VS Code |
| 강 typed (Java/Kotlin/Scala) | JetBrains IntelliJ |
| Python ML 무거움 | PyCharm Pro 또는 VS Code + Pyright |
| Agent 중심 | Cursor / Antigravity / Windsurf |
| 협업 라이브 + 가벼움 | Zed |
| 키보드 vim | Neovim + LSP + AI plugin |
기본값: 신규 프로젝트는 VS Code + Copilot/Cursor 가 최저 마찰. JVM 헤비는 IntelliJ.
🔗 Graph
- 부모: Code-Editor
- 변형: Cursor
- 응용: Devcontainer
- Adjacent: MCP
🤖 LLM 활용
언제: extension scaffolding, .vscode 설정 생성, MCP server 설정, devcontainer 작성, plugin.xml/manifest 변환. 언제 X: IDE 내부 인덱싱 동작 자체 디버깅 — 벤더 telemetry/log 직접 확인.
❌ 안티패턴
- 모든 IDE 에 동일 설정 강요: .editorconfig 로만 합의, IDE 별 settings 는 .gitignore.
- 확장 폭주: 50+ extension → cold start 30s+. 분기별 정리.
- AI 자동 적용 무검토: Copilot/Cursor 의 multi-file edit 무리뷰 commit 금지.
- MCP token leak: env 에 GITHUB_TOKEN 평문 — secret manager 또는 keychain 사용.
- devcontainer 미사용 onboarding: 신입 setup 1주일 — devcontainer 로 5분.
🧪 검증 / 중복
- Verified (VS Code docs, JetBrains Platform docs, MCP spec 2025-06, Cursor docs 2026).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — 2026 IDE 지형 + LSP/DAP/MCP 통합 패턴 |