-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEBASE-DNA.yaml
More file actions
2138 lines (2138 loc) · 76.6 KB
/
Copy pathCODEBASE-DNA.yaml
File metadata and controls
2138 lines (2138 loc) · 76.6 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
codedna:
version: "1.0"
generated_at: 2026-03-26T14:50:34.378Z
tool_version: 0.1.0
metadata:
project_name: code-dna
git_remote: null
branch: master
commit_sha: 601981ea74a5eeb644fbe6d8fc1e51c2ac34ebc2
languages:
- id: typescript
files: 92
loc: 35405
percentage: 99
- id: javascript
files: 2
loc: 259
percentage: 1
- id: go
files: 2
loc: 82
percentage: 0
- id: python
files: 2
loc: 68
percentage: 0
- id: vue
files: 2
loc: 71
percentage: 0
- id: rust
files: 1
loc: 48
percentage: 0
total_files: 101
total_loc: 35933
architecture:
style: unknown
confidence: 0.2
framework:
name: unknown
version: null
markers: []
layers:
- name: .claude
directories:
- .claude
file_count: 46
role: unknown
- name: docs
directories:
- docs
file_count: 3
role: unknown
- name: grammars
directories:
- grammars
file_count: 1
role: unknown
- name: scripts
directories:
- scripts
file_count: 2
role: unknown
- name: .github
directories:
- .github
file_count: 2
role: unknown
- name: analyzers
directories:
- analyzers
file_count: 6
role: unknown
- name: cli
directories:
- cli
file_count: 3
role: unknown
- name: config
directories:
- config
file_count: 4
role: config
- name: core
directories:
- core
file_count: 8
role: unknown
- name: parsers
directories:
- parsers
file_count: 19
role: unknown
- name: mcp
directories:
- mcp
file_count: 2
role: unknown
- name: output
directories:
- output
file_count: 3
role: unknown
- name: test
directories:
- test
file_count: 75
role: unknown
module_map:
- path: .
type: directory
children:
- path: .claude
type: directory
children:
- path: .claude/agents
type: directory
children:
- path: .claude/agents/architect-agent.md
type: file
loc: 49
- path: .claude/agents/backend-agent.md
type: file
loc: 50
- path: .claude/agents/coordinators
type: directory
children:
- path: .claude/agents/coordinators/dev-lead.md
type: file
loc: 354
- path: .claude/agents/coordinators/ops-lead.md
type: file
loc: 351
- path: .claude/agents/coordinators/planning-lead.md
type: file
loc: 270
- path: .claude/agents/coordinators/quality-lead.md
type: file
loc: 347
- path: .claude/agents/deep-research-agent.md
type: file
loc: 121
- path: .claude/agents/devops-agent.md
type: file
loc: 50
- path: .claude/agents/docs-agent.md
type: file
loc: 49
- path: .claude/agents/frontend-agent.md
type: file
loc: 50
- path: .claude/agents/fullstack-agent.md
type: file
loc: 50
- path: .claude/agents/marketing-agent.md
type: file
loc: 47
- path: .claude/agents/master-orchestrator.md
type: file
loc: 580
- path: .claude/agents/planning-agent.md
type: file
loc: 47
- path: .claude/agents/research-agent.md
type: file
loc: 46
- path: .claude/agents/saas-architect.md
type: file
loc: 60
- path: .claude/agents/security-agent.md
type: file
loc: 47
- path: .claude/agents/testing-agent.md
type: file
loc: 51
- path: .claude/agents/uiux-agent.md
type: file
loc: 48
- path: .claude/agents/writing-agent.md
type: file
loc: 48
- path: .claude/commands
type: directory
children:
- path: .claude/commands/fishi-board.md
type: file
loc: 66
- path: .claude/commands/fishi-gate.md
type: file
loc: 94
- path: .claude/commands/fishi-init.md
type: file
loc: 255
- path: .claude/commands/fishi-prd.md
type: file
loc: 49
- path: .claude/commands/fishi-reset.md
type: file
loc: 72
- path: .claude/commands/fishi-resume.md
type: file
loc: 57
- path: .claude/commands/fishi-sprint.md
type: file
loc: 78
- path: .claude/commands/fishi-status.md
type: file
loc: 89
- path: .claude/rules
type: directory
children:
- path: .claude/rules/conventions.md
type: file
loc: 8
- path: .claude/rules/delegation.md
type: file
loc: 51
- path: .claude/rules/pipeline.md
type: file
loc: 18
- path: .claude/rules/safety.md
type: file
loc: 18
- path: .claude/settings.json
type: file
loc: 213
- path: .claude/skills
type: directory
children:
- path: .claude/skills/adaptive-taskgraph
type: directory
children:
- path: .claude/skills/adaptive-taskgraph/SKILL.md
type: file
loc: 191
- path: .claude/skills/api-design
type: directory
children:
- path: .claude/skills/api-design/SKILL.md
type: file
loc: 108
- path: .claude/skills/brainstorming
type: directory
children:
- path: .claude/skills/brainstorming/SKILL.md
type: file
loc: 58
- path: .claude/skills/brownfield-analysis
type: directory
children:
- path: .claude/skills/brownfield-analysis/SKILL.md
type: file
loc: 95
- path: .claude/skills/brownfield-discovery
type: directory
children:
- path: .claude/skills/brownfield-discovery/SKILL.md
type: file
loc: 106
- path: .claude/skills/code-gen
type: directory
children:
- path: .claude/skills/code-gen/SKILL.md
type: file
loc: 69
- path: .claude/skills/debugging
type: directory
children:
- path: .claude/skills/debugging/SKILL.md
type: file
loc: 75
- path: .claude/skills/deep-research
type: directory
children:
- path: .claude/skills/deep-research/SKILL.md
type: file
loc: 54
- path: .claude/skills/deployment
type: directory
children:
- path: .claude/skills/deployment/SKILL.md
type: file
loc: 117
- path: .claude/skills/documentation
type: directory
children:
- path: .claude/skills/documentation/SKILL.md
type: file
loc: 145
- path: .claude/skills/prd
type: directory
children:
- path: .claude/skills/prd/SKILL.md
type: file
loc: 143
- path: .claude/skills/taskboard-ops
type: directory
children:
- path: .claude/skills/taskboard-ops/SKILL.md
type: file
loc: 81
- path: .claude/skills/testing
type: directory
children:
- path: .claude/skills/testing/SKILL.md
type: file
loc: 100
- path: .github
type: directory
children:
- path: .github/workflows
type: directory
children:
- path: .github/workflows/ci.yml
type: file
loc: 69
- path: .github/workflows/publish.yml
type: file
loc: 30
- path: .gitignore
type: file
loc: 14
- path: .mcp.json
type: file
loc: 25
- path: .npmignore
type: file
loc: 39
- path: .prettierrc
type: file
loc: 7
- path: AGENTS.md
type: file
loc: 90
- path: CLAUDE.md
type: file
loc: 74
- path: CODEBASE-DNA.md
type: file
loc: 508
- path: CODEBASE-DNA.yaml
type: file
loc: 2333
- path: Code-DNA.txt
type: file
loc: 76
- path: LICENSE
type: file
loc: 22
- path: README.md
type: file
loc: 417
- path: SOUL.md
type: file
loc: 56
- path: docs
type: directory
children:
- path: docs/API.md
type: file
loc: 766
- path: docs/MCP.md
type: file
loc: 329
- path: docs/README.md
type: file
loc: 4
- path: grammars
type: directory
children:
- path: grammars/.gitkeep
type: file
loc: 1
- path: package.json
type: file
loc: 78
- path: scripts
type: directory
children:
- path: scripts/copy-grammars.mjs
type: file
language: javascript
loc: 88
- path: scripts/dogfood.mjs
type: file
language: javascript
loc: 171
- path: src
type: directory
children:
- path: src/analyzers
type: directory
children:
- path: src/analyzers/.gitkeep
type: file
loc: 1
- path: src/analyzers/architecture-detector.ts
type: file
language: typescript
loc: 290
- path: src/analyzers/convention-analyzer.ts
type: file
language: typescript
loc: 524
- path: src/analyzers/framework-detector.ts
type: file
language: typescript
loc: 541
- path: src/analyzers/git-analyzer.ts
type: file
language: typescript
loc: 387
- path: src/analyzers/risk-analyzer.ts
type: file
language: typescript
loc: 260
- path: src/cli
type: directory
children:
- path: src/cli/commands
type: directory
children:
- path: src/cli/commands/.gitkeep
type: file
loc: 1
- path: src/cli/index.ts
type: file
role: entry
language: typescript
loc: 367
- path: src/cli/mcp-command.ts
type: file
language: typescript
loc: 54
- path: src/config
type: directory
children:
- path: src/config/.gitkeep
type: file
role: config
loc: 1
- path: src/config/defaults.ts
type: file
role: config
language: typescript
loc: 29
- path: src/config/loader.ts
type: file
role: config
language: typescript
loc: 168
- path: src/config/schema.ts
type: file
role: config
language: typescript
loc: 90
- path: src/core
type: directory
children:
- path: src/core/.gitkeep
type: file
loc: 1
- path: src/core/dependency-graph.ts
type: file
language: typescript
loc: 334
- path: src/core/diff-engine.ts
type: file
language: typescript
loc: 619
- path: src/core/engine.ts
type: file
language: typescript
loc: 615
- path: src/core/file-discovery.ts
type: file
language: typescript
loc: 272
- path: src/core/token-budget.ts
type: file
language: typescript
loc: 159
- path: src/core/types.ts
type: file
language: typescript
loc: 572
- path: src/core/watcher.ts
type: file
language: typescript
loc: 280
- path: src/lib.ts
type: file
language: typescript
loc: 33
- path: src/mcp
type: directory
children:
- path: src/mcp/.gitkeep
type: file
loc: 1
- path: src/mcp/server.ts
type: file
role: entry
language: typescript
loc: 539
- path: src/output
type: directory
children:
- path: src/output/.gitkeep
type: file
loc: 1
- path: src/output/markdown-formatter.ts
type: file
language: typescript
loc: 392
- path: src/output/yaml-formatter.ts
type: file
language: typescript
loc: 220
- path: src/parsers
type: directory
children:
- path: src/parsers/extractor-registry.ts
type: file
language: typescript
loc: 93
- path: src/parsers/extractors
type: directory
children:
- path: src/parsers/extractors/.gitkeep
type: file
loc: 1
- path: src/parsers/extractors/base-extractor.ts
type: file
language: typescript
loc: 113
- path: src/parsers/extractors/cpp.ts
type: file
language: typescript
loc: 692
- path: src/parsers/extractors/csharp.ts
type: file
language: typescript
loc: 538
- path: src/parsers/extractors/go.ts
type: file
language: typescript
loc: 340
- path: src/parsers/extractors/java.ts
type: file
language: typescript
loc: 545
- path: src/parsers/extractors/kotlin.ts
type: file
language: typescript
loc: 573
- path: src/parsers/extractors/php.ts
type: file
language: typescript
loc: 773
- path: src/parsers/extractors/python.ts
type: file
language: typescript
loc: 476
- path: src/parsers/extractors/ruby.ts
type: file
language: typescript
loc: 466
- path: src/parsers/extractors/rust.ts
type: file
language: typescript
loc: 507
- path: src/parsers/extractors/solidity.ts
type: file
language: typescript
loc: 494
- path: src/parsers/extractors/swift.ts
type: file
language: typescript
loc: 440
- path: src/parsers/extractors/typescript.ts
type: file
language: typescript
loc: 622
- path: src/parsers/extractors/vue.ts
type: file
language: typescript
loc: 694
- path: src/parsers/parallel-parser.ts
type: file
language: typescript
loc: 320
- path: src/parsers/parse-worker.ts
type: file
language: typescript
loc: 152
- path: src/parsers/parser-engine.ts
type: file
language: typescript
loc: 300
- path: test
type: directory
children:
- path: test/benchmarks
type: directory
children:
- path: test/benchmarks/README.md
type: file
role: test
loc: 72
- path: test/benchmarks/performance.bench.ts
type: file
role: test
language: typescript
loc: 338
- path: test/fixtures
type: directory
children:
- path: test/fixtures/repos
type: directory
children:
- path: test/fixtures/repos/.gitkeep
type: file
role: test
loc: 1
- path: test/fixtures/repos/mixed-monorepo
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/.gitignore
type: file
role: test
loc: 7
- path: test/fixtures/repos/mixed-monorepo/Cargo.toml
type: file
role: test
loc: 7
- path: test/fixtures/repos/mixed-monorepo/go.mod
type: file
role: test
loc: 9
- path: test/fixtures/repos/mixed-monorepo/libs
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/libs/core
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/libs/core/Cargo.toml
type: file
role: test
loc: 9
- path: test/fixtures/repos/mixed-monorepo/libs/core/src
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/libs/core/src/lib.rs
type: file
role: test
language: rust
loc: 48
symbols:
- name: User
kind: class
exported: true
- name: validate_id
kind: function
exported: true
- name: format_display_name
kind: function
exported: true
- path: test/fixtures/repos/mixed-monorepo/package.json
type: file
role: test
loc: 19
- path: test/fixtures/repos/mixed-monorepo/packages
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/packages/shared
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/packages/shared/package.json
type: file
role: test
loc: 10
- path: test/fixtures/repos/mixed-monorepo/packages/shared/src
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/packages/shared/src/types.ts
type: file
role: test
language: typescript
loc: 36
- path: test/fixtures/repos/mixed-monorepo/packages/shared/src/utils.ts
type: file
role: test
language: typescript
loc: 34
- path: test/fixtures/repos/mixed-monorepo/packages/ui
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/packages/ui/package.json
type: file
role: test
loc: 10
- path: test/fixtures/repos/mixed-monorepo/packages/ui/src
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/packages/ui/src/App.vue
type: file
role: test
language: vue
loc: 34
- path: test/fixtures/repos/mixed-monorepo/packages/ui/src/Button.vue
type: file
role: test
language: vue
loc: 37
- path: test/fixtures/repos/mixed-monorepo/services
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/services/api
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/services/api/package.json
type: file
role: test
loc: 11
- path: test/fixtures/repos/mixed-monorepo/services/api/src
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/services/api/src/index.ts
type: file
role: test
language: typescript
loc: 24
- path: test/fixtures/repos/mixed-monorepo/services/api/src/middleware.ts
type: file
role: test
language: typescript
loc: 34
- path: test/fixtures/repos/mixed-monorepo/services/api/src/routes.ts
type: file
role: test
language: typescript
loc: 32
- path: test/fixtures/repos/mixed-monorepo/services/gateway
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/services/gateway/handler.go
type: file
role: test
language: go
loc: 51
- path: test/fixtures/repos/mixed-monorepo/services/gateway/main.go
type: file
role: test
language: go
loc: 31
- path: test/fixtures/repos/mixed-monorepo/services/worker
type: directory
children:
- path: test/fixtures/repos/mixed-monorepo/services/worker/main.py
type: file
role: test
language: python
loc: 32
- path: test/fixtures/repos/mixed-monorepo/services/worker/requirements.txt
type: file
role: test
loc: 5
- path: test/fixtures/repos/mixed-monorepo/services/worker/tasks.py
type: file
role: test
language: python
loc: 36
symbols:
- name: EmailPayload
kind: class
exported: false
- name: ReportPayload
kind: class
exported: false
- name: send_email_task
kind: function
exported: false
decorators:
- celery_app.task
- name: process_report_task
kind: function
exported: false
decorators:
- celery_app.task
- path: test/fixtures/repos/tiny-ts
type: directory
children:
- path: test/fixtures/repos/tiny-ts/node_modules
type: directory
children:
- path: test/fixtures/repos/tiny-ts/node_modules/.gitkeep
type: file
role: test
loc: 1
- path: test/fixtures/repos/tiny-ts/package.json
type: file
role: test
loc: 6
- path: test/fixtures/repos/tiny-ts/src
type: directory
children:
- path: test/fixtures/repos/tiny-ts/src/controllers
type: directory
children:
- path: test/fixtures/repos/tiny-ts/src/controllers/user.controller.ts
type: file
role: test
language: typescript
loc: 4
- path: test/fixtures/repos/tiny-ts/src/index.ts
type: file
role: test
language: typescript
loc: 4
- path: test/fixtures/repos/tiny-ts/src/models
type: directory
children:
- path: test/fixtures/repos/tiny-ts/src/models/user.model.ts
type: file
role: test
language: typescript
loc: 5
- path: test/fixtures/repos/tiny-ts/src/services
type: directory
children:
- path: test/fixtures/repos/tiny-ts/src/services/user.service.ts
type: file
role: test
language: typescript
loc: 4
symbols:
- name: UserService
kind: class
exported: true
- name: getUser
kind: method
exported: false
- path: test/fixtures/repos/tiny-ts/src/utils
type: directory
children:
- path: test/fixtures/repos/tiny-ts/src/utils/helper.ts
type: file
role: test
language: typescript
loc: 4
- path: test/fixtures/repos/tiny-ts/test
type: directory
children:
- path: test/fixtures/repos/tiny-ts/test/user.test.ts
type: file
role: test
language: typescript
loc: 6
- path: test/integration
type: directory
children:
- path: test/integration/.gitkeep
type: file
role: test
loc: 1
- path: test/integration/full-pipeline.test.ts
type: file
role: test
language: typescript
loc: 151
- path: test/integration/mcp.test.ts
type: file
role: test
language: typescript
loc: 461
- path: test/integration/monorepo.test.ts
type: file
role: test
language: typescript
loc: 378
- path: test/integration/pipeline.test.ts
type: file
role: test
language: typescript
loc: 837
- path: test/unit
type: directory
children:
- path: test/unit/analyzers
type: directory
children:
- path: test/unit/analyzers/.gitkeep
type: file
role: test
loc: 1
- path: test/unit/analyzers/architecture-detector.test.ts
type: file
role: test
language: typescript
loc: 219
- path: test/unit/analyzers/convention-analyzer.test.ts
type: file
role: test
language: typescript
loc: 418
- path: test/unit/analyzers/framework-detector.test.ts
type: file
role: test
language: typescript
loc: 291
- path: test/unit/analyzers/git-analyzer.test.ts
type: file
role: test
language: typescript
loc: 268
- path: test/unit/analyzers/risk-analyzer.test.ts
type: file
role: test
language: typescript
loc: 403
- path: test/unit/cli.test.ts
type: file
role: test
language: typescript
loc: 318
- path: test/unit/config
type: directory
children:
- path: test/unit/config/loader.test.ts
type: file
role: test
language: typescript
loc: 189
- path: test/unit/core
type: directory
children:
- path: test/unit/core/.gitkeep
type: file
role: test
loc: 1
- path: test/unit/core/dependency-graph.test.ts
type: file
role: test
language: typescript
loc: 328
- path: test/unit/core/diff-engine.test.ts
type: file
role: test
language: typescript
loc: 832
- path: test/unit/core/file-discovery.test.ts
type: file
role: test
language: typescript
loc: 189
- path: test/unit/core/token-budget.test.ts
type: file
role: test
language: typescript
loc: 194
- path: test/unit/core/types.test.ts
type: file
role: test
language: typescript
loc: 551
- path: test/unit/core/watcher.test.ts
type: file
role: test
language: typescript
loc: 494
- path: test/unit/mcp
type: directory
children:
- path: test/unit/mcp/server.test.ts
type: file
role: test
language: typescript
loc: 433
- path: test/unit/output
type: directory
children:
- path: test/unit/output/.gitkeep
type: file
role: test
loc: 1
- path: test/unit/output/markdown-formatter.test.ts
type: file
role: test
language: typescript
loc: 268
- path: test/unit/output/mock-dna-output.ts
type: file
role: test
language: typescript
loc: 216
- path: test/unit/output/yaml-formatter.test.ts
type: file
role: test