-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
112 lines (93 loc) · 3.05 KB
/
Copy path.gitignore
File metadata and controls
112 lines (93 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
node_modules/
.env
*.log
.DS_Store
Thumbs.db
# API keys and runtime config — copy Config/ma-config.example.json and fill in yours
project/Config/ma-config.json
# Auth runtime data — generated at startup
project/server/data/accounts.json
project/server/data/sessions.json
project/server/data/task-sessions.json
project/server/data/task-sessions.json.tmp-*
project/server/data/checkouts.json
# Browser runtime data — generated by browser app
project/server/data/browser-history.json
project/server/data/browser-bookmarks.json
project/server/data/browser-session.json
project/server/data/browser-settings.json
project/server/data/browser-research-sessions.json
project/server/data/nekocore-audit.ndjson
# Entity runtime data — generated when entities are created
/project/entities/*
!/project/entities/.gitkeep
# Root system memory — generated at runtime
/project/memories/*
!/project/memories/.gitkeep
# Local backup and restore artifacts
/project/tmp-backups/*
!/project/tmp-backups/.gitkeep
/project/restore-snapshots/*
!/project/restore-snapshots/.gitkeep
/project/server/data/restore-snapshots/*
!/project/server/data/restore-snapshots/.gitkeep
/project/artifacts/**
# Server entity runtime state
/project/server/entity/*
!/project/server/entity/.gitkeep
# Workspace runtime data
/project/workspace/*
!/project/workspace/.gitkeep
# Skill workspace runtime dirs
project/skills/*/workspace/*
!project/skills/*/workspace/.gitkeep
# MA private runtime data — never commit
/project/MA/MA-Config/ma-config.json
/project/MA/MA-Config/chat-history.json
/project/MA/MA-Config/chat-sessions/
/project/MA/MA-Config/model-performance.json
/project/MA/MA-Config/chores.json
/project/MA/MA-entity/agent_*/
/project/MA/MA-entity/entity_ma/entity.json
/project/MA/MA-entity/*/memories/
/project/MA/MA-entity/*/index/
/project/MA/MA-entity/*/archives/
/project/MA/MA-entity/*/prompt-history/
/project/MA/MA-logs/
# MA dev/debug temp scripts — not for distribution
/project/MA/tmp-*.js
/project/MA/_*.js
/project/MA/test-*.js
/project/MA/ma.pid
# MA workspace — fully wiped on reset, all runtime content
/project/MA/MA-workspace/*
!/project/MA/MA-workspace/MA-WORKLOG.md
# Generated system repair script (build artifact from generate-fixer.js)
project/neko_fixer.py
# Wrangler / Cloudflare Pages deploy artifacts — not part of the project
.wrangler/
project/wrangler.toml
project/.wrangler/
project/_redirects
project/landing-deploy/
project/Neko-Core.html
project/MA-Memory-Architect.html
project/VoardWalker-Code.html
# IDE
.vscode/
*.code-workspace
# Internal process and planning docs — not for public repo
Documents/
PIPELINE-ARCHITECTURE-IMAGE-PROMPT.txt
Modular Task Orch.txt
booter.js
Start-NekoCore-Server.bat
# Daily investigation logs — local-only, never push
CHAT-LOOP-DAILY-*.md
# Test artifacts — generated locally, contain machine-specific paths
test-output.txt
project/test-output.txt
# Explicit archive index docs inside ignored planning tree
Documents/current/completed-phase-plans/INDEX.md
Documents/current/completed-paper-work/INDEX.md
Documents/current/support-docs/INDEX.md