-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy path.gitignore
More file actions
3635 lines (3607 loc) · 183 KB
/
Copy path.gitignore
File metadata and controls
3635 lines (3607 loc) · 183 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
# ============================================================================
# OS-specific files
# ============================================================================
.*.sw?
._.DS_Store
.DS_Store
Thumbs.db
# ============================================================================
# Environment and secrets
# ============================================================================
.env
.env.*
!.env.example
/.env.local
# ============================================================================
# Node.js dependencies and configuration
# ============================================================================
.node-version
/.nvm
/.pnpmfile.cjs
.npmrc.local
**/node_modules
/npm-debug.log
pnpm-debug.log*
/yarn.lock
/yarn.log
yarn-error.log*
/.yarnrc.yml
# ============================================================================
# Build outputs and artifacts
# ============================================================================
**/.build-checkpoints
**/*.build-signature
**/.cache/
/.rollup.cache
**/.type-coverage/
**/build/
!docs/build/
**/coverage/
**/dist/
/external/
**/html/
*.d.ts
*.d.ts.map
*.tsbuildinfo
**/*.tmp
*.tmp
# ============================================================================
# Language-specific build artifacts
# ============================================================================
## Rust builds
**/target/
## WASM builds
**/wasm-bundle/
# ============================================================================
# Editor and IDE files
# ============================================================================
.idea/
/.vscode/
*.old
*.sw?
*.swo
*.swp
*~
# ============================================================================
# Development and debugging
# ============================================================================
*.log
**/build/*.log
/.claude/*
!/.claude/agents/
!/.claude/commands/
!/.claude/hooks/
!/.claude/ops/
!/.claude/settings.json
!/.claude/skills/
# ============================================================================
# Kimi Code CLI user-local overrides
# ============================================================================
/.kimi-code/local.toml
# ============================================================================
# Backup and temporary files
# ============================================================================
*.backup
*.bak
**/*.tmp.bak*
*.old
*~
# ============================================================================
# Yarn PnP files
# ============================================================================
/.pnp.cjs
/.pnp.loader.mjs
/.yarn/
# ============================================================================
# Archive directories
# ============================================================================
**/docs/archive/
# ============================================================================
# Workspace-specific patterns
# ============================================================================
## Generated packages (from templates/)
packages/package-builder/build/
## Downloaded build sources
packages/*/.minilm-source/
packages/*/.onnx-source/
packages/*/.yoga-source/
packages/*/.yoga-tests/
## Workspace-generated files
packages/cli/CHANGELOG.md
packages/cli/LICENSE
packages/cli/*.png
packages/cli-with-sentry/CHANGELOG.md
packages/cli-with-sentry/data/
packages/cli-with-sentry/LICENSE
packages/cli-with-sentry/*.png
packages/socket/CHANGELOG.md
packages/socket/LICENSE
packages/socket/*.png
# ============================================================================
# Allow specific files (negation patterns)
# ============================================================================
!.env.example
!/.vscode/extensions.json
!docs/build/
!packages/package-builder/templates/**/*.d.ts
!src/types/**/*.d.ts
!packages/*/src/types/**/*.d.ts
# <fleet>
# Managed by socket-wheelhouse. Don't edit locally — edit upstream
# in scripts/sync-scaffolding/checks/gitignore-fleet-block.mts and
# re-cascade via `pnpm run sync`. Project-specific ignores stay
# OUTSIDE this block; the fixer preserves them.
# Per-machine Claude Code permission config + log dirs stay ignored;
# the cascaded subdirs (agents, commands, hooks, output-styles,
# settings.json, skills, workflows) are explicitly re-included so the
# wheelhouse cascade can ship them.
/.claude/*
!/.claude/agents/
!/.claude/commands/
!/.claude/hooks/
!/.claude/output-styles/
!/.claude/rules/
!/.claude/settings.json
!/.claude/skills/
!/.claude/workflows/
# Transient agent work-state: handoff + planning docs live in these
# gitignored operator-notes homes and are NEVER committed. Re-asserted here
# AFTER the re-include lines above so a future `!/.claude/<x>/` re-include
# can't accidentally start tracking them. Dir-scoped so no sibling path is
# caught. handoff-docs-are-untracked backstops a stray committed handoff doc.
/.claude/plans/
/.claude/reports/
# Release-only GENERATED hook-dispatch artifacts: all three dispatch-table
# variants, the rolldown bundles, the native snapshot launcher + its frozen
# sidecars, the dispatch manifest, and the ahead-of-time TypeBox
# validators. Rebuilt by
# build-hook-bundle / build-hook-snapshot / setup:3-hook-snapshot, shipped in
# the GitHub-release bundle, NEVER committed to the cascade. Unanchored (**/)
# so each is ignored in BOTH the repo-root live copy AND the template/base/
# mirror — the fleet keeps ignores in this root block, not nested per-dir
# files. Keep in lock-step with RELEASE_ONLY_DIR_MIRROR_FILES (scripts/repo/
# sync-scaffolding/dir-mirror-skip.mts). See docs/agents.md/fleet/release-vs-cascade.md.
**/.claude/hooks/fleet/_dist/fleet-pack.cjs
# Prebuilt dispatch-launcher variants (one per platform-arch), CI
# cross-compiled and hydrated from the release bundle; the host build
# copies its match into _shared/ instead of invoking cc. Contract:
# scripts/fleet/_shared/launcher-variants.mts.
**/.claude/hooks/fleet/_dist/launchers/
# Legacy pre-v1.0.16 dispatch layout: socket-sdk-js still tracks the
# _dispatch/index.cjs loader, which requires ./fleet-pack.cjs — that generated
# bundle must stay untracked there. This path stays _dispatch/ on purpose: it
# describes a layout that member still has on disk, so renaming it here would
# un-ignore that repo's generated bundle. Keep the entry until every member
# has migrated to the fleet/index.cjs + _dist/fleet-pack.cjs layout; it
# matches nothing once the legacy bundle is gone.
**/.claude/hooks/fleet/_dispatch/fleet-pack.cjs
**/.claude/hooks/fleet/_shared/dispatch-launcher
**/.claude/hooks/fleet/_shared/dispatch-launcher.exe
**/.claude/hooks/fleet/_shared/dispatch-table-excluded.mts
**/.claude/hooks/fleet/_shared/dispatch-table-snapshot.mts
**/.claude/hooks/fleet/_shared/dispatch-table.mts
**/.claude/hooks/fleet/_shared/excluded-fleet-pack.cjs
**/.claude/hooks/fleet/_shared/generated-validators.mts
**/.claude/hooks/fleet/_shared/node.path
**/.claude/hooks/fleet/_shared/snapshot-blob.path
**/.claude/hooks/fleet/_shared/snapshot-fleet-pack.cjs
**/.claude/hooks/fleet/_shared/dispatch-manifest.json
# The rolldown-bundled fleet oxlint plugin (build-oxlint-bundle.mts): members
# load this single artifact via jsPlugins instead of the ~100 rule source
# dirs. Release-only + gitignored like the hook bundles above.
**/.config/fleet/oxlint-plugin.mjs
# Derived cross-harness rule adapters — generated per-repo, per-platform by
# the multi-agent scaffolding (setup / init / sync) script from .claude/skills/
# and CLAUDE.md, never committed. A tracked symlink checks out as a plain
# pointer file on Windows, so each host gets a real symlink generated on its
# own OS. Tracking them only produces churn + merge conflicts. Keep in sync
# with ADAPTERS in scripts/fleet/gen/harness-adapters.mts + the .agents/ mirror
# (and the .mcp.json projections in scripts/fleet/mcp-config.mts: /.codex/,
# and /opencode.json — all generated from the single committed .mcp.json
# authority at setup and rebuilt into the release bundle at
# make-publish-bundle, never committed).
# Host dirs we own entirely are ignored wholesale; .github/ holds tracked
# fleet files, so only its generated adapter file is named.
/.agents/
/.clinerules/
/.codex/
/.cursor/
/.github/copilot-instructions.md
/.janus/
/.kiro/
/.windsurf/
/AGENTS.md
/opencode.json
# VS Code: ignore the dir contents so a hidden tasks.json with a `folderOpen`
# auto-run (a known npm supply-chain vector — runs on folder open, zero clicks)
# cannot be committed. Re-include only the benign shared settings.json. Use the
# `/.vscode/*` contents form (NOT `.vscode/`) so the re-include can take effect.
# vscode-folder-open-task-guard backstops any explicitly-added auto-run task.
/.vscode/*
!/.vscode/settings.json
# OS noise
.DS_Store
._.DS_Store
Thumbs.db
# Build outputs — universal across the fleet. Project-specific
# variants (e.g. a non-standard dist path) go OUTSIDE this block.
# The build/test-output + vendored-tree entries below are kept in
# lock-step with GENERATED_GLOBS (scripts/fleet/constants/
# generated-globs.mts) by generated-globs-are-consistent.mts.
**/build/
**/dist/
/template/generated/
**/out/
**/.cache/
**/.repo-map/
**/.swc/
**/.vitiate/
# Vendored / upstream trees + conformance fixtures — untracked-by-default
# (docs/agents.md/fleet/untracked-by-default.md): someone else's source or
# synced corpora, restored by the owning sync/build step, never hand-edited.
# A repo that must track a hand-written file inside one re-includes it
# OUTSIDE this block (!<dir>/ then <dir>/* then !<dir>/<file>).
**/test/fixtures/
**/upstream/
# Node
node_modules
# Workspace-local pnpm store — CI jobs whose pnpm runs inside a
# workspace-mounted sandbox pin the store here (setup-and-install
# store-dir input); never committed.
/.pnpm-store/
npm-debug.log
pnpm-debug.log
*.tgz
# </fleet>
# <repo>
# </repo>
# ─── repo-local (socket-wheelhouse): keep hand-authored files that the
# fleet-canonical globs would otherwise ignore (untrack-ignored-files fix) ───
!/packages/cli/test/fixtures/
!/.node-version
# vitiate coverage-guided fuzz lane caches (regenerable; never commit)
/.swc/
/.vitiate/
**/.swc/
**/.vitiate/
# jvm manifest facts — build + smoke-test artifacts generated under the
# tracked emitter/harness trees; compiled or produced at test/build time.
/packages/cli/src/commands/manifest/scripts/maven-extension/target/
/packages/cli/src/commands/manifest/scripts/maven-extension/coana-maven-extension.jar
/packages/cli/src/commands/manifest/scripts/test/gradle-compat/project/localrepo/
/packages/cli/src/commands/manifest/scripts/test/gradle-compat/project/records.tsv
/packages/cli/src/commands/manifest/scripts/test/gradle-compat/project/.socket.facts.json
/packages/cli/src/commands/manifest/scripts/test/gradle-compat/project/.gradle/
/packages/cli/src/commands/manifest/scripts/test/gradle-compat/project/build/
/packages/cli/src/commands/manifest/scripts/test/gradle-compat/.gradle-home/
/packages/cli/src/commands/manifest/scripts/test/gradle-compat/.populate-for.txt
/packages/cli/src/commands/manifest/scripts/test/maven-compat/project/localrepo/
/packages/cli/src/commands/manifest/scripts/test/maven-compat/project/records.tsv
/packages/cli/src/commands/manifest/scripts/test/maven-compat/project/target/
/packages/cli/src/commands/manifest/scripts/test/maven-compat/project/*/target/
/packages/cli/src/commands/manifest/scripts/test/sbt-compat/project/target/
/packages/cli/src/commands/manifest/scripts/test/sbt-compat/project/project/target/
/packages/cli/src/commands/manifest/scripts/test/sbt-compat/project/project/build.properties
/packages/cli/src/commands/manifest/scripts/test/sbt-compat/project/scala-version.sbt
/packages/cli/src/commands/manifest/scripts/test/sbt-compat/project/localrepo/
/packages/cli/src/commands/manifest/scripts/test/sbt-compat/project/records.tsv
# <fleet-pack>
# Fleet-pack untrack set — managed by scripts/repo/bootstrap/fleet.mjs.
# REGENERATED from the release-bundle manifest on every hydrate; stale
# entries are pruned. Hand-added ignores belong OUTSIDE these markers.
.agents/
.claude/agents/fleet/code-reviewer.md
.claude/agents/fleet/fix.md
.claude/agents/fleet/offload.md
.claude/agents/fleet/pr-feedback.md
.claude/agents/fleet/pr-open.md
.claude/agents/fleet/pr-review.md
.claude/agents/fleet/refactor-cleaner.md
.claude/agents/fleet/security-reviewer.md
.claude/commands/fleet/audit-gha-settings.md
.claude/commands/fleet/codifying-disciplines.md
.claude/commands/fleet/green-ci-local.md
.claude/commands/fleet/green-ci.md
.claude/commands/fleet/looping-quality.md
.claude/commands/fleet/researching-recency.md
.claude/commands/fleet/scanning-quality.md
.claude/commands/fleet/security-scan.md
.claude/commands/fleet/setup-security-tools.md
.claude/commands/fleet/squash-history.md
.claude/commands/fleet/update-coverage.md
.claude/commands/fleet/update-hooks-dry.md
.claude/commands/fleet/update-pricing.md
.claude/commands/fleet/update-security.md
.claude/hooks/fleet/_dist/fleet-pack.cjs
.claude/hooks/fleet/_dist/launchers/dispatch-launcher-darwin-arm64
.claude/hooks/fleet/_dist/launchers/dispatch-launcher-darwin-x64
.claude/hooks/fleet/_dist/launchers/dispatch-launcher-linux-arm64
.claude/hooks/fleet/_dist/launchers/dispatch-launcher-linux-x64
.claude/hooks/fleet/_dist/launchers/dispatch-launcher-win32-ia32.exe
.claude/hooks/fleet/_dist/launchers/dispatch-launcher-win32-x64.exe
.claude/hooks/fleet/_shared/.clangd
.claude/hooks/fleet/_shared/README.md
.claude/hooks/fleet/_shared/active-edits-ledger.mts
.claude/hooks/fleet/_shared/agent-memory.mts
.claude/hooks/fleet/_shared/ai-attribution.mts
.claude/hooks/fleet/_shared/ai-slop-patterns.mts
.claude/hooks/fleet/_shared/artifact-gates.mts
.claude/hooks/fleet/_shared/ast/calls.mts
.claude/hooks/fleet/_shared/ast/comment-types.mts
.claude/hooks/fleet/_shared/ast/comments.mts
.claude/hooks/fleet/_shared/ast/core.mts
.claude/hooks/fleet/_shared/ast/literals.mts
.claude/hooks/fleet/_shared/authorization-phrase-assertions.mts
.claude/hooks/fleet/_shared/authorization-phrases.mts
.claude/hooks/fleet/_shared/balancer-mode.mts
.claude/hooks/fleet/_shared/benign-untracking.mts
.claude/hooks/fleet/_shared/branch-switch.mts
.claude/hooks/fleet/_shared/brew-supply-chain.mts
.claude/hooks/fleet/_shared/builtin-module.mts
.claude/hooks/fleet/_shared/bypass.mts
.claude/hooks/fleet/_shared/chicken-and-egg.mts
.claude/hooks/fleet/_shared/code-format-parser.mts
.claude/hooks/fleet/_shared/commit-command.mts
.claude/hooks/fleet/_shared/copyleft-upstreams.mts
.claude/hooks/fleet/_shared/dated-citation.mts
.claude/hooks/fleet/_shared/denied-domains.mts
.claude/hooks/fleet/_shared/dependency-spec-forms.mts
.claude/hooks/fleet/_shared/dispatch-entry.mts
.claude/hooks/fleet/_shared/dispatch-hook.mts
.claude/hooks/fleet/_shared/dispatch-launcher-win.c
.claude/hooks/fleet/_shared/dispatch-launcher.c
.claude/hooks/fleet/_shared/dispatch-manifest.json
.claude/hooks/fleet/_shared/dispatch-snapshot-entry.mts
.claude/hooks/fleet/_shared/dispatch-table-excluded.mts
.claude/hooks/fleet/_shared/dispatch-table-snapshot.mts
.claude/hooks/fleet/_shared/dispatch-table.mts
.claude/hooks/fleet/_shared/doc-location-guard.mts
.claude/hooks/fleet/_shared/edit-content.mts
.claude/hooks/fleet/_shared/entrypoint.mts
.claude/hooks/fleet/_shared/ephemeral-path.mts
.claude/hooks/fleet/_shared/error-message-quality.mts
.claude/hooks/fleet/_shared/es-polyfills.mts
.claude/hooks/fleet/_shared/evasion-normalize.mts
.claude/hooks/fleet/_shared/excluded-entry.mts
.claude/hooks/fleet/_shared/excluded-fleet-pack.cjs
.claude/hooks/fleet/_shared/failing-tests-ledger.mts
.claude/hooks/fleet/_shared/fetch-allowlist.mts
.claude/hooks/fleet/_shared/fleet-context.mts
.claude/hooks/fleet/_shared/fleet-env.mts
.claude/hooks/fleet/_shared/fleet-fork.mts
.claude/hooks/fleet/_shared/fleet-markers.mts
.claude/hooks/fleet/_shared/fleet-pack-payload.mts
.claude/hooks/fleet/_shared/fleet-repo.mts
.claude/hooks/fleet/_shared/fleet-repos.mts
.claude/hooks/fleet/_shared/fleet-roster.mts
.claude/hooks/fleet/_shared/footgun-admission.mts
.claude/hooks/fleet/_shared/foreign-linters.mts
.claude/hooks/fleet/_shared/foreign-paths.mts
.claude/hooks/fleet/_shared/generated-validators.mts
.claude/hooks/fleet/_shared/gh-invocation.mts
.claude/hooks/fleet/_shared/gh-pr-command.mts
.claude/hooks/fleet/_shared/gh-target-repo.mts
.claude/hooks/fleet/_shared/git-branch.mts
.claude/hooks/fleet/_shared/git-cwd.mts
.claude/hooks/fleet/_shared/git-identity.mts
.claude/hooks/fleet/_shared/git-runner.mts
.claude/hooks/fleet/_shared/git-stash.mts
.claude/hooks/fleet/_shared/git-state.mts
.claude/hooks/fleet/_shared/git-subcommand.mts
.claude/hooks/fleet/_shared/golden-fixture-target.mts
.claude/hooks/fleet/_shared/guard.mts
.claude/hooks/fleet/_shared/handoff-request.mts
.claude/hooks/fleet/_shared/honesty-framing.mts
.claude/hooks/fleet/_shared/known-names.mts
.claude/hooks/fleet/_shared/landable.mts
.claude/hooks/fleet/_shared/learning-ledger.mts
.claude/hooks/fleet/_shared/markdown-path.mts
.claude/hooks/fleet/_shared/marker-sites.mts
.claude/hooks/fleet/_shared/markers.mts
.claude/hooks/fleet/_shared/memory-store.mts
.claude/hooks/fleet/_shared/mermaid-github.mts
.claude/hooks/fleet/_shared/named-blocks.mts
.claude/hooks/fleet/_shared/native-handler-files.mts
.claude/hooks/fleet/_shared/nested-gitignore.mts
.claude/hooks/fleet/_shared/nested-strings.mts
.claude/hooks/fleet/_shared/npmrc-trust.mts
.claude/hooks/fleet/_shared/outbound-voice.mts
.claude/hooks/fleet/_shared/package-manager-auto-update.mts
.claude/hooks/fleet/_shared/parked-paths.mts
.claude/hooks/fleet/_shared/paths.mts
.claude/hooks/fleet/_shared/payload.mts
.claude/hooks/fleet/_shared/positional-args.mts
.claude/hooks/fleet/_shared/private-paths.mts
.claude/hooks/fleet/_shared/public-surfaces.mts
.claude/hooks/fleet/_shared/push-admin.mts
.claude/hooks/fleet/_shared/push-refspec.mts
.claude/hooks/fleet/_shared/ref-providers.mts
.claude/hooks/fleet/_shared/repo-mode.mts
.claude/hooks/fleet/_shared/repo-root.mts
.claude/hooks/fleet/_shared/repo-test-home.mts
.claude/hooks/fleet/_shared/script-redirects.mts
.claude/hooks/fleet/_shared/sfw-ca.mts
.claude/hooks/fleet/_shared/shell-command.mts
.claude/hooks/fleet/_shared/snapshot-cache-path.cjs
.claude/hooks/fleet/_shared/snapshot-fleet-pack.cjs
.claude/hooks/fleet/_shared/snapshot-hostile-builtins.mts
.claude/hooks/fleet/_shared/snapshot-loader.cjs
.claude/hooks/fleet/_shared/snapshot-notes.md
.claude/hooks/fleet/_shared/sorted-by.mts
.claude/hooks/fleet/_shared/sparkle-auto-update.mts
.claude/hooks/fleet/_shared/spawn-timeout.mts
.claude/hooks/fleet/_shared/squash-sentinel.mts
.claude/hooks/fleet/_shared/stop-nudge.mts
.claude/hooks/fleet/_shared/stop-request.mts
.claude/hooks/fleet/_shared/suppression-rules.mts
.claude/hooks/fleet/_shared/tag-shapes.mts
.claude/hooks/fleet/_shared/test/fixtures.mts
.claude/hooks/fleet/_shared/token-patterns.mts
.claude/hooks/fleet/_shared/trailing-aside.mts
.claude/hooks/fleet/_shared/transcript.mts
.claude/hooks/fleet/_shared/trust-gates.mts
.claude/hooks/fleet/_shared/unbacked-claims.mts
.claude/hooks/fleet/_shared/untrusted/directive-patterns.mts
.claude/hooks/fleet/_shared/untrusted/directive-scan.mts
.claude/hooks/fleet/_shared/untrusted/honeypot-token.mts
.claude/hooks/fleet/_shared/uv-config.mts
.claude/hooks/fleet/_shared/verdict.mts
.claude/hooks/fleet/_shared/waiting-discipline.mts
.claude/hooks/fleet/_shared/wheelhouse-root.mts
.claude/hooks/fleet/account-snapshot-recorder/README.md
.claude/hooks/fleet/account-snapshot-recorder/index.mts
.claude/hooks/fleet/account-snapshot-recorder/package.json
.claude/hooks/fleet/account-snapshot-recorder/tsconfig.json
.claude/hooks/fleet/actionlint-on-workflow-edit/README.md
.claude/hooks/fleet/actionlint-on-workflow-edit/index.mts
.claude/hooks/fleet/actionlint-on-workflow-edit/package.json
.claude/hooks/fleet/actionlint-on-workflow-edit/tsconfig.json
.claude/hooks/fleet/active-edits-bash-recorder/README.md
.claude/hooks/fleet/active-edits-bash-recorder/index.mts
.claude/hooks/fleet/active-edits-bash-recorder/package.json
.claude/hooks/fleet/active-edits-bash-recorder/tsconfig.json
.claude/hooks/fleet/active-edits-ledger/README.md
.claude/hooks/fleet/active-edits-ledger/index.mts
.claude/hooks/fleet/active-edits-ledger/package.json
.claude/hooks/fleet/active-edits-ledger/tsconfig.json
.claude/hooks/fleet/adversarial-review-nudge/README.md
.claude/hooks/fleet/adversarial-review-nudge/index.mts
.claude/hooks/fleet/adversarial-review-nudge/package.json
.claude/hooks/fleet/adversarial-review-nudge/tsconfig.json
.claude/hooks/fleet/agent-prompt-budget-guard/README.md
.claude/hooks/fleet/agent-prompt-budget-guard/index.mts
.claude/hooks/fleet/agent-prompt-budget-guard/package.json
.claude/hooks/fleet/agent-prompt-budget-guard/signal-position.mts
.claude/hooks/fleet/agent-prompt-budget-guard/tsconfig.json
.claude/hooks/fleet/ai-balancer-proxy-start/README.md
.claude/hooks/fleet/ai-balancer-proxy-start/index.mts
.claude/hooks/fleet/ai-balancer-proxy-start/package.json
.claude/hooks/fleet/ai-balancer-proxy-start/tsconfig.json
.claude/hooks/fleet/ai-config-drift-nudge/README.md
.claude/hooks/fleet/ai-config-drift-nudge/index.mts
.claude/hooks/fleet/ai-config-drift-nudge/package.json
.claude/hooks/fleet/ai-config-drift-nudge/tsconfig.json
.claude/hooks/fleet/ai-config-poisoning-guard/README.md
.claude/hooks/fleet/ai-config-poisoning-guard/index.mts
.claude/hooks/fleet/ai-config-poisoning-guard/package.json
.claude/hooks/fleet/ai-config-poisoning-guard/tsconfig.json
.claude/hooks/fleet/ai-shim-start/README.md
.claude/hooks/fleet/ai-shim-start/index.mts
.claude/hooks/fleet/ai-shim-start/package.json
.claude/hooks/fleet/ai-shim-start/tsconfig.json
.claude/hooks/fleet/alpha-sort-nudge/README.md
.claude/hooks/fleet/alpha-sort-nudge/index.mts
.claude/hooks/fleet/alpha-sort-nudge/package.json
.claude/hooks/fleet/alpha-sort-nudge/tsconfig.json
.claude/hooks/fleet/answer-questions-nudge/README.md
.claude/hooks/fleet/answer-questions-nudge/index.mts
.claude/hooks/fleet/answer-questions-nudge/package.json
.claude/hooks/fleet/answer-questions-nudge/tsconfig.json
.claude/hooks/fleet/answer-status-requests-nudge/README.md
.claude/hooks/fleet/answer-status-requests-nudge/index.mts
.claude/hooks/fleet/answer-status-requests-nudge/package.json
.claude/hooks/fleet/answer-status-requests-nudge/tsconfig.json
.claude/hooks/fleet/anti-prose-guard/README.md
.claude/hooks/fleet/anti-prose-guard/alerted-ledger.mts
.claude/hooks/fleet/anti-prose-guard/index.mts
.claude/hooks/fleet/anti-prose-guard/package.json
.claude/hooks/fleet/anti-prose-guard/patterns.mts
.claude/hooks/fleet/anti-prose-guard/tsconfig.json
.claude/hooks/fleet/artifact-gates-on-stop/README.md
.claude/hooks/fleet/artifact-gates-on-stop/index.mts
.claude/hooks/fleet/artifact-gates-on-stop/package.json
.claude/hooks/fleet/artifact-gates-on-stop/tsconfig.json
.claude/hooks/fleet/ask-suppression-nudge/README.md
.claude/hooks/fleet/ask-suppression-nudge/index.mts
.claude/hooks/fleet/ask-suppression-nudge/package.json
.claude/hooks/fleet/ask-suppression-nudge/tsconfig.json
.claude/hooks/fleet/attribution-rewrite-nudge/README.md
.claude/hooks/fleet/attribution-rewrite-nudge/index.mts
.claude/hooks/fleet/attribution-rewrite-nudge/package.json
.claude/hooks/fleet/attribution-rewrite-nudge/tsconfig.json
.claude/hooks/fleet/auth-rotation-nudge/README.md
.claude/hooks/fleet/auth-rotation-nudge/index.mts
.claude/hooks/fleet/auth-rotation-nudge/package.json
.claude/hooks/fleet/auth-rotation-nudge/services.mts
.claude/hooks/fleet/auth-rotation-nudge/tsconfig.json
.claude/hooks/fleet/authorization-phrase-emission-guard/README.md
.claude/hooks/fleet/authorization-phrase-emission-guard/index.mts
.claude/hooks/fleet/authorization-phrase-emission-guard/package.json
.claude/hooks/fleet/authorization-phrase-emission-guard/tsconfig.json
.claude/hooks/fleet/auto-land-on-stop/README.md
.claude/hooks/fleet/auto-land-on-stop/hold.mts
.claude/hooks/fleet/auto-land-on-stop/index.mts
.claude/hooks/fleet/auto-land-on-stop/package.json
.claude/hooks/fleet/auto-land-on-stop/tsconfig.json
.claude/hooks/fleet/avoid-cd-nudge/README.md
.claude/hooks/fleet/avoid-cd-nudge/index.mts
.claude/hooks/fleet/avoid-cd-nudge/package.json
.claude/hooks/fleet/avoid-cd-nudge/tsconfig.json
.claude/hooks/fleet/bash-timeout-nudge/README.md
.claude/hooks/fleet/bash-timeout-nudge/index.mts
.claude/hooks/fleet/bash-timeout-nudge/package.json
.claude/hooks/fleet/bash-timeout-nudge/tsconfig.json
.claude/hooks/fleet/bot-comment-collapse-guard/README.md
.claude/hooks/fleet/bot-comment-collapse-guard/index.mts
.claude/hooks/fleet/bot-comment-collapse-guard/package.json
.claude/hooks/fleet/bot-comment-collapse-guard/tsconfig.json
.claude/hooks/fleet/branch-worktree-sweep-nudge/README.md
.claude/hooks/fleet/branch-worktree-sweep-nudge/index.mts
.claude/hooks/fleet/branch-worktree-sweep-nudge/package.json
.claude/hooks/fleet/branch-worktree-sweep-nudge/tsconfig.json
.claude/hooks/fleet/brew-supply-chain-is-hardened-at-edit/README.md
.claude/hooks/fleet/brew-supply-chain-is-hardened-at-edit/index.mts
.claude/hooks/fleet/brew-supply-chain-is-hardened-at-edit/package.json
.claude/hooks/fleet/brew-supply-chain-is-hardened-at-edit/tsconfig.json
.claude/hooks/fleet/broken-hook-detector/README.md
.claude/hooks/fleet/broken-hook-detector/index.mts
.claude/hooks/fleet/broken-hook-detector/package.json
.claude/hooks/fleet/broken-hook-detector/tsconfig.json
.claude/hooks/fleet/bump-defers-to-release-guard/README.md
.claude/hooks/fleet/bump-defers-to-release-guard/index.mts
.claude/hooks/fleet/bump-defers-to-release-guard/package.json
.claude/hooks/fleet/bump-defers-to-release-guard/tsconfig.json
.claude/hooks/fleet/bundle-flags-guard/README.md
.claude/hooks/fleet/bundle-flags-guard/index.mts
.claude/hooks/fleet/bundle-flags-guard/package.json
.claude/hooks/fleet/bundle-flags-guard/tsconfig.json
.claude/hooks/fleet/bundle-stale-reminder/README.md
.claude/hooks/fleet/bundle-stale-reminder/index.mts
.claude/hooks/fleet/bundle-stale-reminder/package.json
.claude/hooks/fleet/bundle-stale-reminder/tsconfig.json
.claude/hooks/fleet/c8-ignore-reason-guard/README.md
.claude/hooks/fleet/c8-ignore-reason-guard/index.mts
.claude/hooks/fleet/c8-ignore-reason-guard/package.json
.claude/hooks/fleet/c8-ignore-reason-guard/tsconfig.json
.claude/hooks/fleet/cascade-first-triage-nudge/README.md
.claude/hooks/fleet/cascade-first-triage-nudge/index.mts
.claude/hooks/fleet/cascade-first-triage-nudge/package.json
.claude/hooks/fleet/cascade-first-triage-nudge/tsconfig.json
.claude/hooks/fleet/cascade-graph-defers-to-script-guard/README.md
.claude/hooks/fleet/cascade-graph-defers-to-script-guard/index.mts
.claude/hooks/fleet/cascade-graph-defers-to-script-guard/package.json
.claude/hooks/fleet/cascade-graph-defers-to-script-guard/tsconfig.json
.claude/hooks/fleet/catch-message-guard/README.md
.claude/hooks/fleet/catch-message-guard/index.mts
.claude/hooks/fleet/catch-message-guard/package.json
.claude/hooks/fleet/catch-message-guard/tsconfig.json
.claude/hooks/fleet/changelog-entry-shape-nudge/README.md
.claude/hooks/fleet/changelog-entry-shape-nudge/index.mts
.claude/hooks/fleet/changelog-entry-shape-nudge/package.json
.claude/hooks/fleet/changelog-entry-shape-nudge/tsconfig.json
.claude/hooks/fleet/changelog-no-empty-guard/README.md
.claude/hooks/fleet/changelog-no-empty-guard/index.mts
.claude/hooks/fleet/changelog-no-empty-guard/package.json
.claude/hooks/fleet/changelog-no-empty-guard/tsconfig.json
.claude/hooks/fleet/check-new-deps/README.md
.claude/hooks/fleet/check-new-deps/audit.mts
.claude/hooks/fleet/check-new-deps/index.mts
.claude/hooks/fleet/check-new-deps/package.json
.claude/hooks/fleet/check-new-deps/tsconfig.json
.claude/hooks/fleet/check-new-deps/types.mts
.claude/hooks/fleet/claude-code-action-lockdown-guard/README.md
.claude/hooks/fleet/claude-code-action-lockdown-guard/index.mts
.claude/hooks/fleet/claude-code-action-lockdown-guard/package.json
.claude/hooks/fleet/claude-code-action-lockdown-guard/tsconfig.json
.claude/hooks/fleet/claude-lockdown-guard/README.md
.claude/hooks/fleet/claude-lockdown-guard/index.mts
.claude/hooks/fleet/claude-lockdown-guard/package.json
.claude/hooks/fleet/claude-lockdown-guard/tsconfig.json
.claude/hooks/fleet/claude-md-defer-detail-nudge/README.md
.claude/hooks/fleet/claude-md-defer-detail-nudge/index.mts
.claude/hooks/fleet/claude-md-defer-detail-nudge/package.json
.claude/hooks/fleet/claude-md-defer-detail-nudge/tsconfig.json
.claude/hooks/fleet/claude-md-rule-add-guard/README.md
.claude/hooks/fleet/claude-md-rule-add-guard/index.mts
.claude/hooks/fleet/claude-md-rule-add-guard/package.json
.claude/hooks/fleet/claude-md-rule-add-guard/tsconfig.json
.claude/hooks/fleet/claude-md-section-size-guard/README.md
.claude/hooks/fleet/claude-md-section-size-guard/index.mts
.claude/hooks/fleet/claude-md-section-size-guard/package.json
.claude/hooks/fleet/claude-md-section-size-guard/tsconfig.json
.claude/hooks/fleet/claude-md-size-guard/README.md
.claude/hooks/fleet/claude-md-size-guard/index.mts
.claude/hooks/fleet/claude-md-size-guard/package.json
.claude/hooks/fleet/claude-md-size-guard/tsconfig.json
.claude/hooks/fleet/claude-segmentation-guard/README.md
.claude/hooks/fleet/claude-segmentation-guard/index.mts
.claude/hooks/fleet/claude-segmentation-guard/package.json
.claude/hooks/fleet/claude-segmentation-guard/tsconfig.json
.claude/hooks/fleet/clipboard-snippet-nudge/README.md
.claude/hooks/fleet/clipboard-snippet-nudge/index.mts
.claude/hooks/fleet/clipboard-snippet-nudge/package.json
.claude/hooks/fleet/clipboard-snippet-nudge/tsconfig.json
.claude/hooks/fleet/clone-reviewed-repo-nudge/README.md
.claude/hooks/fleet/clone-reviewed-repo-nudge/detect.mts
.claude/hooks/fleet/clone-reviewed-repo-nudge/index.mts
.claude/hooks/fleet/clone-reviewed-repo-nudge/package.json
.claude/hooks/fleet/clone-reviewed-repo-nudge/tsconfig.json
.claude/hooks/fleet/code-as-law-nudge/README.md
.claude/hooks/fleet/code-as-law-nudge/index.mts
.claude/hooks/fleet/code-as-law-nudge/package.json
.claude/hooks/fleet/code-as-law-nudge/tsconfig.json
.claude/hooks/fleet/codex-no-write-guard/README.md
.claude/hooks/fleet/codex-no-write-guard/index.mts
.claude/hooks/fleet/codex-no-write-guard/package.json
.claude/hooks/fleet/codex-no-write-guard/tsconfig.json
.claude/hooks/fleet/codex-session-budget-guard/README.md
.claude/hooks/fleet/codex-session-budget-guard/index.mts
.claude/hooks/fleet/codex-session-budget-guard/package.json
.claude/hooks/fleet/codex-session-budget-guard/reap.mts
.claude/hooks/fleet/codex-session-budget-guard/tsconfig.json
.claude/hooks/fleet/codify-footgun-nudge/README.md
.claude/hooks/fleet/codify-footgun-nudge/index.mts
.claude/hooks/fleet/codify-footgun-nudge/package.json
.claude/hooks/fleet/codify-footgun-nudge/tsconfig.json
.claude/hooks/fleet/commit-author-guard/README.md
.claude/hooks/fleet/commit-author-guard/index.mts
.claude/hooks/fleet/commit-author-guard/package.json
.claude/hooks/fleet/commit-author-guard/tsconfig.json
.claude/hooks/fleet/commit-cadence-nudge/README.md
.claude/hooks/fleet/commit-cadence-nudge/index.mts
.claude/hooks/fleet/commit-cadence-nudge/package.json
.claude/hooks/fleet/commit-cadence-nudge/tsconfig.json
.claude/hooks/fleet/commit-message-format-guard/README.md
.claude/hooks/fleet/commit-message-format-guard/index.mts
.claude/hooks/fleet/commit-message-format-guard/package.json
.claude/hooks/fleet/commit-message-format-guard/tsconfig.json
.claude/hooks/fleet/commit-paths-are-named-guard/README.md
.claude/hooks/fleet/commit-paths-are-named-guard/index.mts
.claude/hooks/fleet/commit-paths-are-named-guard/package.json
.claude/hooks/fleet/commit-paths-are-named-guard/tsconfig.json
.claude/hooks/fleet/commit-pr-nudge/README.md
.claude/hooks/fleet/commit-pr-nudge/index.mts
.claude/hooks/fleet/commit-pr-nudge/package.json
.claude/hooks/fleet/commit-pr-nudge/tsconfig.json
.claude/hooks/fleet/commit-size-nudge/README.md
.claude/hooks/fleet/commit-size-nudge/index.mts
.claude/hooks/fleet/commit-size-nudge/package.json
.claude/hooks/fleet/commit-size-nudge/tsconfig.json
.claude/hooks/fleet/compound-lessons-nudge/README.md
.claude/hooks/fleet/compound-lessons-nudge/index.mts
.claude/hooks/fleet/compound-lessons-nudge/package.json
.claude/hooks/fleet/compound-lessons-nudge/tsconfig.json
.claude/hooks/fleet/config-refs-are-segregated-at-edit/README.md
.claude/hooks/fleet/config-refs-are-segregated-at-edit/index.mts
.claude/hooks/fleet/config-refs-are-segregated-at-edit/package.json
.claude/hooks/fleet/config-refs-are-segregated-at-edit/tsconfig.json
.claude/hooks/fleet/consumer-grep-nudge/README.md
.claude/hooks/fleet/consumer-grep-nudge/index.mts
.claude/hooks/fleet/consumer-grep-nudge/package.json
.claude/hooks/fleet/consumer-grep-nudge/tsconfig.json
.claude/hooks/fleet/convo-prose-nudge/README.md
.claude/hooks/fleet/convo-prose-nudge/index.mts
.claude/hooks/fleet/convo-prose-nudge/package.json
.claude/hooks/fleet/convo-prose-nudge/tsconfig.json
.claude/hooks/fleet/copy-on-select-hint-nudge/README.md
.claude/hooks/fleet/copy-on-select-hint-nudge/index.mts
.claude/hooks/fleet/copy-on-select-hint-nudge/package.json
.claude/hooks/fleet/copy-on-select-hint-nudge/tsconfig.json
.claude/hooks/fleet/corepack-guard/README.md
.claude/hooks/fleet/corepack-guard/index.mts
.claude/hooks/fleet/corepack-guard/package.json
.claude/hooks/fleet/corepack-guard/tsconfig.json
.claude/hooks/fleet/corrupt-rebase-guard/README.md
.claude/hooks/fleet/corrupt-rebase-guard/index.mts
.claude/hooks/fleet/corrupt-rebase-guard/package.json
.claude/hooks/fleet/corrupt-rebase-guard/rebase-shape.mts
.claude/hooks/fleet/corrupt-rebase-guard/tsconfig.json
.claude/hooks/fleet/crlf-split-nudge/README.md
.claude/hooks/fleet/crlf-split-nudge/index.mts
.claude/hooks/fleet/crlf-split-nudge/package.json
.claude/hooks/fleet/crlf-split-nudge/tsconfig.json
.claude/hooks/fleet/cross-repo-guard/README.md
.claude/hooks/fleet/cross-repo-guard/index.mts
.claude/hooks/fleet/cross-repo-guard/package.json
.claude/hooks/fleet/cross-repo-guard/tsconfig.json
.claude/hooks/fleet/default-branch-guard/README.md
.claude/hooks/fleet/default-branch-guard/index.mts
.claude/hooks/fleet/default-branch-guard/package.json
.claude/hooks/fleet/default-branch-guard/tsconfig.json
.claude/hooks/fleet/defer-to-script-nudge/README.md
.claude/hooks/fleet/defer-to-script-nudge/index.mts
.claude/hooks/fleet/defer-to-script-nudge/package.json
.claude/hooks/fleet/defer-to-script-nudge/tsconfig.json
.claude/hooks/fleet/deferred-residue-guard/README.md
.claude/hooks/fleet/deferred-residue-guard/index.mts
.claude/hooks/fleet/deferred-residue-guard/package.json
.claude/hooks/fleet/deferred-residue-guard/tsconfig.json
.claude/hooks/fleet/denied-domain-reference-guard/README.md
.claude/hooks/fleet/denied-domain-reference-guard/index.mts
.claude/hooks/fleet/denied-domain-reference-guard/package.json
.claude/hooks/fleet/denied-domain-reference-guard/tsconfig.json
.claude/hooks/fleet/dep-derived-source-nudge/README.md
.claude/hooks/fleet/dep-derived-source-nudge/index.mts
.claude/hooks/fleet/dep-derived-source-nudge/package.json
.claude/hooks/fleet/dep-derived-source-nudge/tsconfig.json
.claude/hooks/fleet/dirty-lockfile-nudge/README.md
.claude/hooks/fleet/dirty-lockfile-nudge/index.mts
.claude/hooks/fleet/dirty-lockfile-nudge/package.json
.claude/hooks/fleet/dirty-lockfile-nudge/tsconfig.json
.claude/hooks/fleet/dirty-worktree-stop-guard/README.md
.claude/hooks/fleet/dirty-worktree-stop-guard/index.mts
.claude/hooks/fleet/dirty-worktree-stop-guard/package.json
.claude/hooks/fleet/dirty-worktree-stop-guard/tsconfig.json
.claude/hooks/fleet/disowned-dirt-guard/README.md
.claude/hooks/fleet/disowned-dirt-guard/index.mts
.claude/hooks/fleet/disowned-dirt-guard/package.json
.claude/hooks/fleet/disowned-dirt-guard/tsconfig.json
.claude/hooks/fleet/dogfood-cascade-nudge/README.md
.claude/hooks/fleet/dogfood-cascade-nudge/index.mts
.claude/hooks/fleet/dogfood-cascade-nudge/package.json
.claude/hooks/fleet/dogfood-cascade-nudge/tsconfig.json
.claude/hooks/fleet/dont-blame-nudge/README.md
.claude/hooks/fleet/dont-blame-nudge/index.mts
.claude/hooks/fleet/dont-blame-nudge/package.json
.claude/hooks/fleet/dont-blame-nudge/tsconfig.json
.claude/hooks/fleet/dont-stop-mid-queue-nudge/README.md
.claude/hooks/fleet/dont-stop-mid-queue-nudge/index.mts
.claude/hooks/fleet/dont-stop-mid-queue-nudge/package.json
.claude/hooks/fleet/dont-stop-mid-queue-nudge/tsconfig.json
.claude/hooks/fleet/drift-check-nudge/README.md
.claude/hooks/fleet/drift-check-nudge/index.mts
.claude/hooks/fleet/drift-check-nudge/package.json
.claude/hooks/fleet/drift-check-nudge/tsconfig.json
.claude/hooks/fleet/enqueue-dont-pivot-nudge/README.md
.claude/hooks/fleet/enqueue-dont-pivot-nudge/index.mts
.claude/hooks/fleet/enqueue-dont-pivot-nudge/package.json
.claude/hooks/fleet/enqueue-dont-pivot-nudge/tsconfig.json
.claude/hooks/fleet/enterprise-push-nudge/README.md
.claude/hooks/fleet/enterprise-push-nudge/index.mts
.claude/hooks/fleet/enterprise-push-nudge/package.json
.claude/hooks/fleet/enterprise-push-nudge/tsconfig.json
.claude/hooks/fleet/env-kill-switches-are-absent-at-edit/README.md
.claude/hooks/fleet/env-kill-switches-are-absent-at-edit/index.mts
.claude/hooks/fleet/env-kill-switches-are-absent-at-edit/package.json
.claude/hooks/fleet/env-kill-switches-are-absent-at-edit/tsconfig.json
.claude/hooks/fleet/error-messages-are-thorough-at-edit/README.md
.claude/hooks/fleet/error-messages-are-thorough-at-edit/index.mts
.claude/hooks/fleet/error-messages-are-thorough-at-edit/package.json
.claude/hooks/fleet/error-messages-are-thorough-at-edit/tsconfig.json
.claude/hooks/fleet/excuse-detector/README.md
.claude/hooks/fleet/excuse-detector/index.mts
.claude/hooks/fleet/excuse-detector/package.json
.claude/hooks/fleet/excuse-detector/tsconfig.json
.claude/hooks/fleet/fetch-allowlist-is-respected-at-edit/README.md
.claude/hooks/fleet/fetch-allowlist-is-respected-at-edit/index.mts
.claude/hooks/fleet/fetch-allowlist-is-respected-at-edit/package.json
.claude/hooks/fleet/fetch-allowlist-is-respected-at-edit/tsconfig.json
.claude/hooks/fleet/file-size-nudge/README.md
.claude/hooks/fleet/file-size-nudge/index.mts
.claude/hooks/fleet/file-size-nudge/package.json
.claude/hooks/fleet/file-size-nudge/tsconfig.json
.claude/hooks/fleet/fixer-foreign-edits-nudge/README.md
.claude/hooks/fleet/fixer-foreign-edits-nudge/index.mts
.claude/hooks/fleet/fixer-foreign-edits-nudge/package.json
.claude/hooks/fleet/fixer-foreign-edits-nudge/tsconfig.json
.claude/hooks/fleet/fixes-need-tests-nudge/README.md
.claude/hooks/fleet/fixes-need-tests-nudge/index.mts
.claude/hooks/fleet/fixes-need-tests-nudge/package.json
.claude/hooks/fleet/fixes-need-tests-nudge/tsconfig.json
.claude/hooks/fleet/follow-direct-imperative-nudge/README.md
.claude/hooks/fleet/follow-direct-imperative-nudge/index.mts
.claude/hooks/fleet/follow-direct-imperative-nudge/package.json
.claude/hooks/fleet/follow-direct-imperative-nudge/tsconfig.json
.claude/hooks/fleet/foreign-repo-conventions-nudge/README.md
.claude/hooks/fleet/foreign-repo-conventions-nudge/index.mts
.claude/hooks/fleet/foreign-repo-conventions-nudge/package.json
.claude/hooks/fleet/foreign-repo-conventions-nudge/tsconfig.json
.claude/hooks/fleet/generic-export-name-nudge/README.md
.claude/hooks/fleet/generic-export-name-nudge/index.mts
.claude/hooks/fleet/generic-export-name-nudge/package.json
.claude/hooks/fleet/generic-export-name-nudge/tsconfig.json
.claude/hooks/fleet/gh-body-code-format-guard/README.md
.claude/hooks/fleet/gh-body-code-format-guard/index.mts
.claude/hooks/fleet/gh-body-code-format-guard/package.json
.claude/hooks/fleet/gh-body-code-format-guard/tsconfig.json
.claude/hooks/fleet/gh-token-hygiene-guard/README.md
.claude/hooks/fleet/gh-token-hygiene-guard/index.mts
.claude/hooks/fleet/gh-token-hygiene-guard/package.json
.claude/hooks/fleet/gh-token-hygiene-guard/tsconfig.json
.claude/hooks/fleet/git-config-write-guard/README.md
.claude/hooks/fleet/git-config-write-guard/index.mts
.claude/hooks/fleet/git-config-write-guard/package.json
.claude/hooks/fleet/git-config-write-guard/tsconfig.json
.claude/hooks/fleet/git-identity-drift-nudge/README.md
.claude/hooks/fleet/git-identity-drift-nudge/index.mts
.claude/hooks/fleet/git-identity-drift-nudge/package.json
.claude/hooks/fleet/git-identity-drift-nudge/tsconfig.json
.claude/hooks/fleet/gitignore-is-single-file-at-edit/README.md
.claude/hooks/fleet/gitignore-is-single-file-at-edit/index.mts
.claude/hooks/fleet/gitignore-is-single-file-at-edit/package.json
.claude/hooks/fleet/gitignore-is-single-file-at-edit/tsconfig.json
.claude/hooks/fleet/gitmodules-comment-guard/README.md
.claude/hooks/fleet/gitmodules-comment-guard/index.mts
.claude/hooks/fleet/gitmodules-comment-guard/package.json
.claude/hooks/fleet/gitmodules-comment-guard/tsconfig.json
.claude/hooks/fleet/golden-fixtures-are-named-golden-at-edit/README.md
.claude/hooks/fleet/golden-fixtures-are-named-golden-at-edit/index.mts
.claude/hooks/fleet/golden-fixtures-are-named-golden-at-edit/package.json
.claude/hooks/fleet/golden-fixtures-are-named-golden-at-edit/tsconfig.json
.claude/hooks/fleet/handoff-command-nudge/README.md
.claude/hooks/fleet/handoff-command-nudge/index.mts
.claude/hooks/fleet/handoff-command-nudge/package.json
.claude/hooks/fleet/handoff-command-nudge/tsconfig.json
.claude/hooks/fleet/handoff-request-guard/README.md
.claude/hooks/fleet/handoff-request-guard/index.mts
.claude/hooks/fleet/handoff-request-guard/package.json
.claude/hooks/fleet/handoff-request-guard/tsconfig.json
.claude/hooks/fleet/history-rewrite-guard/README.md
.claude/hooks/fleet/history-rewrite-guard/index.mts
.claude/hooks/fleet/history-rewrite-guard/package.json
.claude/hooks/fleet/history-rewrite-guard/tsconfig.json
.claude/hooks/fleet/honeypot-echo-guard/README.md
.claude/hooks/fleet/honeypot-echo-guard/bait-detection.mts
.claude/hooks/fleet/honeypot-echo-guard/block-message.mts
.claude/hooks/fleet/honeypot-echo-guard/index.mts
.claude/hooks/fleet/honeypot-echo-guard/outbound-bodies.mts
.claude/hooks/fleet/honeypot-echo-guard/package.json
.claude/hooks/fleet/honeypot-echo-guard/token-corroboration.mts
.claude/hooks/fleet/honeypot-echo-guard/tsconfig.json
.claude/hooks/fleet/hook-snapshot-rewire-nudge/README.md
.claude/hooks/fleet/hook-snapshot-rewire-nudge/index.mts
.claude/hooks/fleet/hook-snapshot-rewire-nudge/package.json
.claude/hooks/fleet/hook-snapshot-rewire-nudge/tsconfig.json
.claude/hooks/fleet/human-gate-ends-turn-guard/README.md
.claude/hooks/fleet/human-gate-ends-turn-guard/index.mts
.claude/hooks/fleet/human-gate-ends-turn-guard/package.json
.claude/hooks/fleet/human-gate-ends-turn-guard/tsconfig.json
.claude/hooks/fleet/immutable-release-guard/README.md
.claude/hooks/fleet/immutable-release-guard/index.mts
.claude/hooks/fleet/immutable-release-guard/package.json
.claude/hooks/fleet/immutable-release-guard/tsconfig.json
.claude/hooks/fleet/index.cjs
.claude/hooks/fleet/inline-script-defer-guard/README.md
.claude/hooks/fleet/inline-script-defer-guard/index.mts
.claude/hooks/fleet/inline-script-defer-guard/package.json
.claude/hooks/fleet/inline-script-defer-guard/tsconfig.json
.claude/hooks/fleet/issue-autolink-nudge/README.md
.claude/hooks/fleet/issue-autolink-nudge/index.mts
.claude/hooks/fleet/issue-autolink-nudge/package.json
.claude/hooks/fleet/issue-autolink-nudge/tsconfig.json
.claude/hooks/fleet/judgment-nudge/README.md
.claude/hooks/fleet/judgment-nudge/index.mts
.claude/hooks/fleet/judgment-nudge/package.json
.claude/hooks/fleet/judgment-nudge/tsconfig.json
.claude/hooks/fleet/keep-working-while-waiting-nudge/README.md
.claude/hooks/fleet/keep-working-while-waiting-nudge/index.mts
.claude/hooks/fleet/keep-working-while-waiting-nudge/package.json
.claude/hooks/fleet/keep-working-while-waiting-nudge/tsconfig.json
.claude/hooks/fleet/land-as-you-go-nudge/README.md
.claude/hooks/fleet/land-as-you-go-nudge/index.mts
.claude/hooks/fleet/land-as-you-go-nudge/package.json
.claude/hooks/fleet/land-as-you-go-nudge/tsconfig.json
.claude/hooks/fleet/land-fast-nudge/README.md
.claude/hooks/fleet/land-fast-nudge/index.mts
.claude/hooks/fleet/land-fast-nudge/package.json
.claude/hooks/fleet/land-fast-nudge/tsconfig.json
.claude/hooks/fleet/latest-release-pin-guard/README.md
.claude/hooks/fleet/latest-release-pin-guard/index.mts
.claude/hooks/fleet/latest-release-pin-guard/package.json
.claude/hooks/fleet/latest-release-pin-guard/tsconfig.json
.claude/hooks/fleet/link-protocol-dep-guard/README.md
.claude/hooks/fleet/link-protocol-dep-guard/index.mts
.claude/hooks/fleet/link-protocol-dep-guard/package.json
.claude/hooks/fleet/link-protocol-dep-guard/tsconfig.json
.claude/hooks/fleet/live-edit-collision-guard/README.md
.claude/hooks/fleet/live-edit-collision-guard/index.mts
.claude/hooks/fleet/live-edit-collision-guard/package.json
.claude/hooks/fleet/live-edit-collision-guard/tsconfig.json
.claude/hooks/fleet/lock-step-ref-nudge/README.md
.claude/hooks/fleet/lock-step-ref-nudge/index.mts
.claude/hooks/fleet/lock-step-ref-nudge/package.json
.claude/hooks/fleet/lock-step-ref-nudge/tsconfig.json
.claude/hooks/fleet/logger-guard/README.md
.claude/hooks/fleet/logger-guard/index.mts
.claude/hooks/fleet/logger-guard/package.json
.claude/hooks/fleet/logger-guard/tsconfig.json
.claude/hooks/fleet/long-running-task-nudge/README.md
.claude/hooks/fleet/long-running-task-nudge/index.mts
.claude/hooks/fleet/long-running-task-nudge/package.json
.claude/hooks/fleet/long-running-task-nudge/tsconfig.json
.claude/hooks/fleet/markdown-filenames-are-canonical-at-edit/README.md
.claude/hooks/fleet/markdown-filenames-are-canonical-at-edit/index.mts
.claude/hooks/fleet/markdown-filenames-are-canonical-at-edit/package.json
.claude/hooks/fleet/markdown-filenames-are-canonical-at-edit/tsconfig.json
.claude/hooks/fleet/mass-delete-guard/README.md
.claude/hooks/fleet/mass-delete-guard/index.mts
.claude/hooks/fleet/mass-delete-guard/package.json
.claude/hooks/fleet/mass-delete-guard/tsconfig.json
.claude/hooks/fleet/memories-are-codified-at-edit/README.md
.claude/hooks/fleet/memories-are-codified-at-edit/index.mts
.claude/hooks/fleet/memories-are-codified-at-edit/package.json
.claude/hooks/fleet/memories-are-codified-at-edit/tsconfig.json
.claude/hooks/fleet/memory-codify-nudge/README.md
.claude/hooks/fleet/memory-codify-nudge/index.mts
.claude/hooks/fleet/memory-codify-nudge/package.json
.claude/hooks/fleet/memory-codify-nudge/tsconfig.json
.claude/hooks/fleet/memory-discovery-nudge/README.md
.claude/hooks/fleet/memory-discovery-nudge/index.mts
.claude/hooks/fleet/memory-discovery-nudge/package.json
.claude/hooks/fleet/memory-discovery-nudge/tsconfig.json
.claude/hooks/fleet/mermaid-github-safe-nudge/README.md
.claude/hooks/fleet/mermaid-github-safe-nudge/index.mts
.claude/hooks/fleet/mermaid-github-safe-nudge/package.json
.claude/hooks/fleet/mermaid-github-safe-nudge/tsconfig.json
.claude/hooks/fleet/minimum-release-age-guard/README.md
.claude/hooks/fleet/minimum-release-age-guard/index.mts
.claude/hooks/fleet/minimum-release-age-guard/package.json
.claude/hooks/fleet/minimum-release-age-guard/tsconfig.json
.claude/hooks/fleet/mixed-clock-recency-guard/README.md
.claude/hooks/fleet/mixed-clock-recency-guard/index.mts
.claude/hooks/fleet/mixed-clock-recency-guard/package.json
.claude/hooks/fleet/mixed-clock-recency-guard/tsconfig.json
.claude/hooks/fleet/model-fallback/README.md
.claude/hooks/fleet/model-fallback/index.mts
.claude/hooks/fleet/model-fallback/package.json
.claude/hooks/fleet/model-fallback/tsconfig.json
.claude/hooks/fleet/model-policy-guard/README.md
.claude/hooks/fleet/model-policy-guard/index.mts
.claude/hooks/fleet/model-policy-guard/model-policy.mts
.claude/hooks/fleet/model-policy-guard/package.json
.claude/hooks/fleet/model-policy-guard/settings-layers.mts
.claude/hooks/fleet/model-policy-guard/tsconfig.json
.claude/hooks/fleet/model-spawn-policy-guard/README.md
.claude/hooks/fleet/model-spawn-policy-guard/index.mts
.claude/hooks/fleet/model-spawn-policy-guard/package.json
.claude/hooks/fleet/model-spawn-policy-guard/tsconfig.json
.claude/hooks/fleet/module-noun-name-guard/README.md
.claude/hooks/fleet/module-noun-name-guard/index.mts
.claude/hooks/fleet/module-noun-name-guard/package.json
.claude/hooks/fleet/module-noun-name-guard/tsconfig.json
.claude/hooks/fleet/new-hook-claude-md-guard/README.md