-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
55 lines (46 loc) · 1.19 KB
/
.gitignore
File metadata and controls
55 lines (46 loc) · 1.19 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
# Dependencies
node_modules/
deps/
# TypeScript build output
dist/
# Generated builtin-modules files (compiled from src/*.ts or Rust source)
# These are regenerated at install time via `npm run build:modules`
# _restore.js and _save.js are hand-written, so exclude them from the glob.
builtin-modules/*.js
builtin-modules/*.d.ts
builtin-modules/*.d.ts.map
!builtin-modules/_restore.js
!builtin-modules/_save.js
# Temp directory for TypeScript source consistency tests
.tmp-ts-check/
# Rust build artifacts
target/
Cargo.lock
*.node
# Log files are written to ~/.hyperagent/logs/ (not in the repo)
# User data — never commit (approvals, config, logs, cache)
approved-plugins.json
fetch-log.jsonl
config.json
*.jsonl
.hyperagent_history
!plugins/**/plugin.json
# OS files
.DS_Store
Thumbs.db
working_docs/
working-docs/
iteration-logs/
.vscode/
# Hyperagent runtime build artifacts
src/sandbox/runtime/target/
src/sandbox/runtime/Cargo.lock
# Generated plugin files (compiled from *.ts)
# These are regenerated via `npm run build:modules`
plugins/*/index.d.ts
plugins/*/index.js
plugins/shared/*.d.ts
plugins/shared/*.js
plugins/plugin-schema-types.d.ts
plugins/plugin-schema-types.js
plugins/host-modules.d.ts