-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.context-builder.yaml.example
More file actions
58 lines (53 loc) · 1.13 KB
/
.context-builder.yaml.example
File metadata and controls
58 lines (53 loc) · 1.13 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
# Context Builder Configuration
# https://github.com/agentxagi/context-builder
layers:
contract:
enabled: true
# Custom template (optional). Variables: {{task}}
# template: |
# ## Task
# {{task}}
repo:
enabled: true
scanPatterns:
- "src/**/*.{js,ts,jsx,tsx}"
- "lib/**/*.{js,ts}"
- "app/**/*.{js,ts,py}"
- "*.js"
- "*.ts"
excludePatterns:
- "node_modules/**"
- "dist/**"
- ".git/**"
- "build/**"
- "**/*.test.{js,ts}"
- "**/*.spec.{js,ts}"
- "**/__tests__/**"
- "**/__mocks__/**"
- "coverage/**"
maxFiles: 50
maxLinesPerFile: 100
scanDepth: 3
references:
enabled: true
sources:
- "README.md"
- "docs/**/*.md"
- "ARCHITECTURE.md"
- "CONTRIBUTING.md"
- "CHANGELOG.md"
- "SPEC.md"
memorySearch:
enabled: false
endpoint: "http://localhost:3000/api/search"
maxResults: 5
artifacts:
enabled: true
paths:
- "artifacts/**"
- ".context/**"
- ".context-builder/**"
output:
format: markdown
maxTokens: 8000
includeMeta: true