From 86559e5fc1f041b35cf9469f435e442270bcc70c Mon Sep 17 00:00:00 2001 From: EiffL Date: Thu, 24 Sep 2026 21:36:18 +0200 Subject: [PATCH] Ignore chats/ in scaffolded projects jupyter-ai writes agent chat transcripts into a chats/ directory at the project root, so every exchange with an agent dirtied the tree and lc materialize refused to start. A chat is not a result and not an input; ignoring the directory keeps the tree clean. Existing projects pick the entry up through lc init's entry-wise repair. Co-Authored-By: Claude Fable 5.1 --- src/lightcone/engine/templates/files/gitignore.tmpl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lightcone/engine/templates/files/gitignore.tmpl b/src/lightcone/engine/templates/files/gitignore.tmpl index cfb929a..1e83f0f 100644 --- a/src/lightcone/engine/templates/files/gitignore.tmpl +++ b/src/lightcone/engine/templates/files/gitignore.tmpl @@ -6,3 +6,4 @@ __pycache__/ .venv/ .lightcone/ _build/ +chats/