Skip to content

Commit 340197a

Browse files
committed
feat: add call-chain command
1 parent 243368a commit 340197a

File tree

9 files changed

+767
-499
lines changed

9 files changed

+767
-499
lines changed

.gitignore

Lines changed: 61 additions & 219 deletions
Original file line numberDiff line numberDiff line change
@@ -1,247 +1,89 @@
1+
file_contents.txt
2+
**/file_contents.txt
3+
.env
4+
examples/**/results.*
5+
.compozy
6+
node_modules
7+
bin
8+
**/reports/**
9+
**/coverage*
10+
11+
# Bun-specific files
12+
bun.lockb
13+
.bun
14+
15+
# .gitignore
16+
# Specifies intentionally untracked files that Git should ignore.
17+
# Get latest from https://github.com/github/gitignore/blob/main/Go.gitignore
18+
119
# Binaries for programs and plugins
220
*.exe
321
*.exe~
422
*.dll
523
*.so
624
*.dylib
25+
schemas/
26+
sessions/
727

828
# Test binary, built with `go test -c`
929
*.test
1030

11-
# Output of the go coverage tool, specifically when used with LiteIDE
31+
# Output of the go coverage tool, specifically when run with the -o flag
1232
*.out
13-
coverage.*
14-
coverage.html
15-
coverage.txt
1633

17-
# Dependency directories (remove the comment below to include it)
18-
vendor/
34+
# Dependency directories (remove the comment below if you do not commit vendor)
35+
# vendor/
1936

2037
# Go workspace file
21-
go.work
38+
# go.work
39+
# go.work.sum
2240

23-
# Build output
24-
bin/
25-
build/
26-
dist/
27-
*.tar.gz
28-
*.zip
29-
30-
# IDE and editor files
31-
.vscode/
41+
# Environment configuration.
42+
.env
43+
.envrc
44+
.env.*
45+
46+
# IDE-specific files
3247
.idea/
33-
*.swp
34-
*.swo
35-
*~
48+
*.sublime-project
49+
*.sublime-workspace
3650

37-
# OS generated files
51+
# OS-specific files
3852
.DS_Store
39-
.DS_Store?
40-
._*
41-
.Spotlight-V100
42-
.Trashes
43-
ehthumbs.db
4453
Thumbs.db
4554

46-
# Logs
47-
*.log
48-
logs/
49-
*.log.*
50-
51-
# Runtime data
52-
pids
53-
*.pid
54-
*.seed
55-
*.pid.lock
56-
57-
# Coverage directory used by tools like istanbul
58-
coverage/
59-
.nyc_output
55+
# Build output
56+
/build/
6057

61-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
62-
.grunt
58+
# Local artifacts
59+
compozy
60+
diff.txt
6361

64-
# Bower dependency directory (https://bower.io/)
65-
bower_components
62+
.aider*
6663

67-
# node_modules (if any Node.js tools are used)
68-
node_modules/
64+
# Added by Task Master AI
65+
# Logs
66+
logs
67+
*.log
6968
npm-debug.log*
7069
yarn-debug.log*
7170
yarn-error.log*
72-
73-
# Optional npm cache directory
74-
.npm
75-
76-
# Optional REPL history
77-
.node_repl_history
78-
79-
# Output of 'npm pack'
80-
*.tgz
81-
82-
# Yarn Integrity file
83-
.yarn-integrity
84-
85-
# dotenv environment variables file
86-
.env
87-
.env.local
88-
.env.development.local
89-
.env.test.local
90-
.env.production.local
91-
92-
# Docker
93-
.docker/
94-
95-
# Temporary files
96-
tmp/
97-
temp/
98-
*.tmp
99-
*.temp
100-
101-
# Database files
102-
*.db
103-
*.sqlite
104-
*.sqlite3
105-
106-
# Neo4j data
107-
data/
108-
logs/
109-
import/
110-
certificates/
111-
plugins/
112-
113-
# Test artifacts
114-
*.prof
115-
*.test
116-
*.bench
117-
__debug_bin*
118-
119-
# Air (live reload tool)
120-
tmp/
121-
122-
# Delve debugger
123-
__debug_bin
124-
125-
# golangci-lint cache
126-
.golangci-lint-cache/
127-
128-
# Go mod cache (usually handled by Go, but just in case)
129-
/go/pkg/mod/
130-
131-
# Config files that might contain secrets
132-
config.local.*
133-
*.local.yaml
134-
*.local.yml
71+
dev-debug.log
72+
# Dependency directories
73+
node_modules/
74+
# Environment variables
75+
# Editor directories and files
76+
.idea
77+
*.suo
78+
*.ntvs*
79+
*.njsproj
80+
*.sln
81+
*.sw?
82+
# OS specific
83+
84+
# Local configuration files
13585
*.local.json
13686

137-
# Backup files
138-
*.bak
139-
*.backup
140-
*~
141-
142-
# Archives
143-
*.7z
144-
*.dmg
145-
*.gz
146-
*.iso
147-
*.jar
148-
*.rar
149-
*.tar
150-
*.zip
151-
152-
# Documentation build
153-
docs/_build/
154-
docs/build/
155-
156-
# goreleaser
157-
dist/
158-
159-
# Local development helpers
160-
.devcontainer/
161-
docker-compose.override.yml
162-
163-
# macOS specific
164-
.DS_Store
165-
.AppleDouble
166-
.LSOverride
167-
168-
# Icon must end with two \r
169-
Icon
170-
171-
# Thumbnails
172-
._*
173-
174-
# Files that might appear in the root of a volume
175-
.DocumentRevisions-V100
176-
.fseventsd
177-
.Spotlight-V100
178-
.TemporaryItems
179-
.Trashes
180-
.VolumeIcon.icns
181-
.com.apple.timemachine.donotpresent
182-
183-
# Directories potentially created on remote AFP share
184-
.AppleDB
185-
.AppleDesktop
186-
Network Trash Folder
187-
Temporary Items
188-
.apdisk
189-
190-
# Windows specific
191-
Thumbs.db
192-
Thumbs.db:encryptable
193-
ehthumbs.db
194-
ehthumbs_vista.db
195-
*.stackdump
196-
[Dd]esktop.ini
197-
$RECYCLE.BIN/
198-
*.cab
199-
*.msi
200-
*.msix
201-
*.msm
202-
*.msp
203-
*.lnk
204-
205-
# Linux specific
206-
*~
207-
.fuse_hidden*
208-
.directory
209-
.Trash-*
210-
.nfs*
211-
212-
# JetBrains IDEs
213-
.idea/
214-
*.iml
215-
*.ipr
216-
*.iws
217-
out/
218-
219-
# Visual Studio Code
220-
.vscode/
221-
!.vscode/settings.json
222-
!.vscode/tasks.json
223-
!.vscode/launch.json
224-
!.vscode/extensions.json
225-
226-
# Vim
227-
*.swp
228-
*.swo
229-
*~
230-
.netrwhist
231-
232-
# Emacs
233-
*~
234-
\#*\#
235-
/.emacs.desktop
236-
/.emacs.desktop.lock
237-
*.elc
238-
auto-save-list
239-
tramp
240-
.\#*
241-
242-
# Project specific
243-
gograph
244-
gograph.exe
245-
246-
# Test directory for auto-discovery feature
247-
test-project/
87+
# Added by Task Master AI
88+
.vscode
89+
test-project

0 commit comments

Comments
 (0)