chore: quantlab-agent 프로젝트 초기 설정

agent_guide 템플릿 기반으로 프로젝트 구조 설정.
Gitea(quantlab-agent), Vikunja(project #15) 연동 완료.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-08 09:54:19 +09:00
commit 5895627f21
679 changed files with 105616 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
# 🚀 The High-Performance Antigravity Ecosystem Plan (Master Matrix)
과거의 비대한 레거시(1세대 에이전트)를 걷어내고, 현재 깃허브에서 가장 진보한 **Micro-Agent(경량화)** 와 **공식 MCP 표준**을 채택하여 극강의 기민성(Agility)을 확보한 마스터플랜입니다.
---
## 🏗️ 1. Repository Mapping Matrix (10대 핵심 엔진)
| 분류 | Tool / Framework Name | Repository Source / Package | Local Injection Path | 실제 적용 메커니즘 (How it is applied) |
| :--- | :--- | :--- | :--- | :--- |
| **Orchestrator** | Get-Shit-Done (GSD) | `npm: get-shit-done-cc` | Global NPM (`/new_gene/.planning`) | 하위 브랜치를 통제하는 최상위 운영체제 역할 수행. |
| **Design System** | UI-UX-Pro-Max | `npx uipro` | `.agent/skills/ui-ux-pro-max` | 디자인 전용 스킬 (CLI 기반). |
| **Persistent Memory** | Claude-Mem | `github: thedotmack/claude-mem` | `.agent/services/claude-mem` | **로컬 MCP 파이썬 프로세스**(`sqlite .knowledge/memory.db`)로 단일 프로젝트 문맥만 안전하게 메모리 보존. |
| **Sub-agent Sandbox** | Superpowers | `github: obra/superpowers` | `.agent/skills/superpowers` | 로컬 `git worktree` 격리 폴더(TDD 수행 보장) 통제 스크립트. |
| **Context Optimizer**| Everything Claude Code | `github: affaan-m/everything-claude-code` | `.agent/knowledge/everything_claude` | 권한 통제 프롬프트 셋. |
| **Best Practices** | Awesome Claude Code | `github: hesreallyhim/awesome-claude-code` | `.agent/knowledge/awesome_claude` | 최고 효율 워크플로우 SOP. |
| **Wiki Structure** | Obsidian-Skills | `github: kepano/obsidian-skills` | `.agent/skills/obsidian-skills` | `Gitea Wiki` 마크다운 구조 설계용 프롬프트. |
| **[초기민성] Official MCP**| Anthropic MCP Servers | `github: modelcontextprotocol/servers` | `.agent/services/mcp-core` | **과거의 낡은 Bash 스크립트 수정 방식 폐기.** 파일시스템, Git, AST 검색을 정규식으로 통제하던 구시대적 ACI를 버리고, Anthropic이 직접 발표한 100% 규격화된 네이티브 RPC 함수 호출(Tool Calling) 체제로 전환. 지연 시간과 오작동을 완전히 멸종시킴. |
| **[초기민성] Micro-Agent**| Mini-SWE-Agent | `github: princeton-nlp/mini-swe-agent` | `.agent/skills/mini-swe` | 거대한 도커/스크립트 덩어리로 무거웠던 기존 `swe-agent` 레거시를 버리고, 학계 최전선에서 채택한 **100줄 이하 극한의 초경량 요원(Micro-agent)** 모델을 차용. 단일 목적, 병렬 처리에 극도로 기민하게 반응함. |
| **[초기민성] Visual QA**| Browser-Use | `github: browser-use/browser-use` | `.agent/skills/browser_use` | Playwright 기반 섀도 돔(Shadow DOM) 투시 화면 렌더링 검열 봇. |
---
## 🌐 2. 하이브리드 지식 파이프라인
* `.knowledge/project_wiki` (Gitea Wiki), `.knowledge/global_wiki` (Wiki.js) 서브모듈 양방향 동기화.
---
## ♻️ 3. 생태계 최첨단 업데이트 엔진 (The Master Key)
### 물리적 영구 구독 맵핑 (Submodule Injection)
로컬 폴더를 8개 원작자 Github의 `main` 브랜치에 직결합니다.
```bash
git submodule add -b main https://github.com/obra/superpowers.git .agent/skills/superpowers
git submodule add -b main https://github.com/affaan-m/everything-claude-code.git .agent/knowledge/everything_claude
git submodule add -b main https://github.com/hesreallyhim/awesome-claude-code.git .agent/knowledge/awesome_claude
git submodule add -b main https://github.com/kepano/obsidian-skills.git .agent/skills/obsidian-skills
git submodule add -b main https://github.com/thedotmack/claude-mem.git .agent/services/claude-mem
git submodule add -b main https://github.com/modelcontextprotocol/servers.git .agent/services/mcp-core
git submodule add -b main https://github.com/princeton-nlp/mini-swe-agent.git .agent/skills/mini-swe
git submodule add -b main https://github.com/browser-use/browser-use.git .agent/skills/browser_use
```
### 싱글 커맨드 오토-업데이트 (`package.json`)
```json
"scripts": {
"update:all-agents": "git submodule update --remote --merge && npx uipro update && npm update -g get-shit-done-cc"
}
```