quickstart.ko.md
docs/i18n/quickstart.ko.md
빠른 시작
<!-- translations:start -->
English · 한국어 · 中文 · 日本語 · Русский · Español · Français · Deutsch
<!-- translations:end --> 이 페이지는 기존 프로젝트 디렉터리에서 탐색 가능한 Tesserae까지 가는 가장 짧은 경로를 보여줍니다.
1. 설정 마법사 실행
색인화하려는 프로젝트에서:
cd /path/to/my-project
tesserae project setup
마법사는 README.md, docs, src, lib, app, packages, data 같은 일반적인 source를 감지한 뒤 .tesserae/config.json을 씁니다. 또한 기본 Cognee backend를 설정하여 project ask가 Cognee를 시도하고 compiled wiki search로 fallback할 수 있게 합니다.
Understand Anything과 Cognee runtime memory를 활성화한 완전 자동 설정:
tesserae project setup \
--yes \
--with-understand-anything \
--install-understand-anything \
--understand-anything-platform codex \
--run-cognee \
--install-cognee
수행 내용:
| Flag | Effect |
|---|---|
--with-understand-anything | UA graph projection을 source로 추가합니다. |
--install-understand-anything | UA companion skills를 설치/업데이트합니다. |
--understand-anything-platform codex | Codex를 사용해 Tesserae의 managed UA refresh wrapper를 실행합니다. |
--run-cognee | compile 중 best-effort Cognee runtime cognify를 실행합니다. |
--install-cognee | Cognee가 없으면 현재 Python으로 설치합니다. |
사용자는 UA install path를 알거나 /understand를 입력할 필요가 없습니다. UA graph가 없거나 오래되면 project compile이 project refresh-understand-anything을 실행합니다.
2. 그래프와 projection 컴파일
tesserae project compile
project compile은 durable artifact를 씁니다.
.tesserae/
config.json
graph.json
manifest.json
sqlite.db
temporal_facts.jsonl
graphiti_episodes.jsonl
report.md
competitive_report.md
markdown_projection/
obsidian_vault/
agent_harness/
harness_sessions/
site/
cognee_bundle/
첫 실행 후에는 --changed-only를 사용해 변경되지 않은 markdown 파일을 건너뛰면서, 파일 변경이 없을 때 이전 graph를 보존할 수 있습니다. Understand Anything이 활성화되어 있으면 compile은 먼저 .tesserae/external/understand-anything.md를 refresh/materialize합니다. Cognee runtime이 활성화되어 있으면 .tesserae/cognee_bundle/ 작성 후 best-effort로 Cognee도 업데이트합니다.
3. 정적 frontend 빌드 및 제공
tesserae project build-site
tesserae project serve --port 8765
열기:
http://127.0.0.1:8765/
<!-- BEGIN: subagent-r-watch -->
저장 시 자동 재빌드
개발 서버를 polling watcher와 함께 사용하면 data/ 및 docs/ 아래 편집이 incremental recompile을 트리거합니다.
# terminal 1
python3 -m http.server 56821 --directory .tesserae/site
# terminal 2
tesserae project watch
project watch는 2초마다 polling하고 1초 debounce 후 compile --changed-only를 실행합니다. cron 스타일 rebuild에는 --once(snapshots vs .tesserae/.watch-cache.json), custom watch dir 추가에는 --paths <dir>, cadence 조정에는 --interval / --debounce를 사용하세요. <!-- END: subagent-r-watch -->
보이는 모든 route(home, sources, concepts, entities, papers, repos, topics, syntheses, questions, timeline, graph, AI siblings)에 대한 주석 달린 tour는