dynvo 1.33.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (180) hide show
  1. dynvo-1.33.0.dist-info/METADATA +239 -0
  2. dynvo-1.33.0.dist-info/RECORD +180 -0
  3. dynvo-1.33.0.dist-info/WHEEL +4 -0
  4. dynvo-1.33.0.dist-info/entry_points.txt +27 -0
  5. dynvo-1.33.0.dist-info/licenses/LICENSE +183 -0
  6. faultline/__init__.py +1 -0
  7. faultline/analyzer/__init__.py +0 -0
  8. faultline/analyzer/ast_extractor.py +1108 -0
  9. faultline/analyzer/auto_alias_discoverer.py +189 -0
  10. faultline/analyzer/evolve.py +666 -0
  11. faultline/analyzer/features.py +1519 -0
  12. faultline/analyzer/git.py +490 -0
  13. faultline/analyzer/import_graph.py +1022 -0
  14. faultline/analyzer/incremental.py +201 -0
  15. faultline/analyzer/marketing_fetcher.py +926 -0
  16. faultline/analyzer/post_process.py +795 -0
  17. faultline/analyzer/repo_config.py +447 -0
  18. faultline/analyzer/reverse_imports.py +712 -0
  19. faultline/analyzer/symbol_graph.py +884 -0
  20. faultline/analyzer/test_mapper.py +333 -0
  21. faultline/analyzer/tsconfig_paths.py +613 -0
  22. faultline/analyzer/url_route_resolver.py +485 -0
  23. faultline/analyzer/validation.py +232 -0
  24. faultline/analyzer/workspace.py +483 -0
  25. faultline/benchmark/__init__.py +52 -0
  26. faultline/benchmark/loader.py +197 -0
  27. faultline/benchmark/metrics.py +300 -0
  28. faultline/benchmark/report.py +107 -0
  29. faultline/cache/__init__.py +110 -0
  30. faultline/cache/backend.py +260 -0
  31. faultline/cache/discovery.py +497 -0
  32. faultline/cache/freshness.py +145 -0
  33. faultline/cache/hashing.py +73 -0
  34. faultline/cache/paths.py +43 -0
  35. faultline/cache/refresh.py +154 -0
  36. faultline/cache/symbols.py +296 -0
  37. faultline/cli.py +1057 -0
  38. faultline/cloud/__init__.py +13 -0
  39. faultline/cloud/sync.py +155 -0
  40. faultline/digest/__init__.py +2 -0
  41. faultline/digest/__main__.py +4 -0
  42. faultline/digest/cli.py +81 -0
  43. faultline/digest/git_reader.py +160 -0
  44. faultline/digest/summarizer.py +192 -0
  45. faultline/framework_linkers/__init__.py +25 -0
  46. faultline/framework_linkers/_discovery.py +110 -0
  47. faultline/framework_linkers/base.py +124 -0
  48. faultline/framework_linkers/nextjs_http_route.py +705 -0
  49. faultline/framework_linkers/nextjs_server_actions.py +598 -0
  50. faultline/framework_linkers/store_mutation.py +1058 -0
  51. faultline/framework_linkers/trpc_procedure.py +756 -0
  52. faultline/llm/__init__.py +0 -0
  53. faultline/llm/cost.py +307 -0
  54. faultline/llm/model_gateway.py +129 -0
  55. faultline/models/__init__.py +0 -0
  56. faultline/models/types.py +1055 -0
  57. faultline/output/__init__.py +0 -0
  58. faultline/output/reporter.py +266 -0
  59. faultline/output/writer.py +40 -0
  60. faultline/pipeline_v2/__init__.py +110 -0
  61. faultline/pipeline_v2/data/__init__.py +74 -0
  62. faultline/pipeline_v2/data/dependency-anchors.yaml +400 -0
  63. faultline/pipeline_v2/data/stacks/config-manifests.yaml +65 -0
  64. faultline/pipeline_v2/data/stacks/django.yaml +124 -0
  65. faultline/pipeline_v2/data/stacks/express.yaml +87 -0
  66. faultline/pipeline_v2/data/stacks/fastapi.yaml +55 -0
  67. faultline/pipeline_v2/data/stacks/filesystem-routing.yaml +86 -0
  68. faultline/pipeline_v2/data/stacks/go-http-router.yaml +53 -0
  69. faultline/pipeline_v2/data/stacks/js-library.yaml +90 -0
  70. faultline/pipeline_v2/data/stacks/mvc-controllers.yaml +27 -0
  71. faultline/pipeline_v2/data/stacks/python-library.yaml +60 -0
  72. faultline/pipeline_v2/data/stacks/rails-app.yaml +79 -0
  73. faultline/pipeline_v2/data/stacks/rust-workspace.yaml +37 -0
  74. faultline/pipeline_v2/data/stacks/schema-domains.yaml +52 -0
  75. faultline/pipeline_v2/domain_noun.py +272 -0
  76. faultline/pipeline_v2/extractors/__init__.py +25 -0
  77. faultline/pipeline_v2/extractors/_pattern_base.py +121 -0
  78. faultline/pipeline_v2/extractors/_rails.py +206 -0
  79. faultline/pipeline_v2/extractors/_util.py +143 -0
  80. faultline/pipeline_v2/extractors/base.py +87 -0
  81. faultline/pipeline_v2/extractors/config.py +377 -0
  82. faultline/pipeline_v2/extractors/django.py +500 -0
  83. faultline/pipeline_v2/extractors/express.py +364 -0
  84. faultline/pipeline_v2/extractors/fastapi.py +324 -0
  85. faultline/pipeline_v2/extractors/fastify.py +273 -0
  86. faultline/pipeline_v2/extractors/go_packages.py +231 -0
  87. faultline/pipeline_v2/extractors/go_router.py +256 -0
  88. faultline/pipeline_v2/extractors/js_library.py +788 -0
  89. faultline/pipeline_v2/extractors/mvc.py +117 -0
  90. faultline/pipeline_v2/extractors/package.py +362 -0
  91. faultline/pipeline_v2/extractors/python_library.py +386 -0
  92. faultline/pipeline_v2/extractors/rails_jobs.py +127 -0
  93. faultline/pipeline_v2/extractors/rails_models.py +165 -0
  94. faultline/pipeline_v2/extractors/rails_routes.py +137 -0
  95. faultline/pipeline_v2/extractors/rails_stimulus.py +143 -0
  96. faultline/pipeline_v2/extractors/rails_views.py +125 -0
  97. faultline/pipeline_v2/extractors/route.py +407 -0
  98. faultline/pipeline_v2/extractors/rust_packages.py +382 -0
  99. faultline/pipeline_v2/extractors/rust_workspace.py +255 -0
  100. faultline/pipeline_v2/extractors/schema.py +249 -0
  101. faultline/pipeline_v2/flow_expansion/__init__.py +29 -0
  102. faultline/pipeline_v2/flow_expansion/adapters/__init__.py +17 -0
  103. faultline/pipeline_v2/flow_expansion/adapters/express.py +17 -0
  104. faultline/pipeline_v2/flow_expansion/adapters/fastapi.py +18 -0
  105. faultline/pipeline_v2/flow_expansion/adapters/nextjs.py +54 -0
  106. faultline/pipeline_v2/flow_expansion/adapters/react.py +19 -0
  107. faultline/pipeline_v2/flow_expansion/call_graph.py +752 -0
  108. faultline/pipeline_v2/flow_expansion/confidence.py +82 -0
  109. faultline/pipeline_v2/flow_expansion/cross_stack.py +261 -0
  110. faultline/pipeline_v2/flow_expansion/expander.py +945 -0
  111. faultline/pipeline_v2/flow_expansion/fan_in.py +224 -0
  112. faultline/pipeline_v2/flow_expansion/flow_display_name.py +413 -0
  113. faultline/pipeline_v2/flow_expansion/reverse_cross_stack.py +313 -0
  114. faultline/pipeline_v2/flow_reach.py +636 -0
  115. faultline/pipeline_v2/flow_symbols.py +1098 -0
  116. faultline/pipeline_v2/flow_test_mapper.py +296 -0
  117. faultline/pipeline_v2/git_snapshot.py +229 -0
  118. faultline/pipeline_v2/incremental.py +169 -0
  119. faultline/pipeline_v2/incremental_gate.py +467 -0
  120. faultline/pipeline_v2/incremental_wiring.py +370 -0
  121. faultline/pipeline_v2/indexes.py +336 -0
  122. faultline/pipeline_v2/lineage.py +322 -0
  123. faultline/pipeline_v2/llm_health.py +244 -0
  124. faultline/pipeline_v2/multi.py +161 -0
  125. faultline/pipeline_v2/naming_validator.py +290 -0
  126. faultline/pipeline_v2/nav_taxonomy.py +457 -0
  127. faultline/pipeline_v2/phase_enrich.py +241 -0
  128. faultline/pipeline_v2/phase_extract.py +151 -0
  129. faultline/pipeline_v2/phase_finalize.py +498 -0
  130. faultline/pipeline_v2/phase_intake.py +181 -0
  131. faultline/pipeline_v2/phase_layer2.py +451 -0
  132. faultline/pipeline_v2/phase_postprocess.py +211 -0
  133. faultline/pipeline_v2/product_strings.py +824 -0
  134. faultline/pipeline_v2/residual_clusterer.py +430 -0
  135. faultline/pipeline_v2/run.py +738 -0
  136. faultline/pipeline_v2/run_dir.py +155 -0
  137. faultline/pipeline_v2/run_logger.py +173 -0
  138. faultline/pipeline_v2/scan_meta.py +486 -0
  139. faultline/pipeline_v2/snapshots.py +515 -0
  140. faultline/pipeline_v2/stack_auditor.py +1377 -0
  141. faultline/pipeline_v2/stage_0_6_shape.py +1589 -0
  142. faultline/pipeline_v2/stage_0_intake.py +857 -0
  143. faultline/pipeline_v2/stage_1_extractors.py +316 -0
  144. faultline/pipeline_v2/stage_1_per_workspace.py +607 -0
  145. faultline/pipeline_v2/stage_2_6_membership_closure.py +984 -0
  146. faultline/pipeline_v2/stage_2_reconcile.py +874 -0
  147. faultline/pipeline_v2/stage_3_flows.py +895 -0
  148. faultline/pipeline_v2/stage_4_guards.py +640 -0
  149. faultline/pipeline_v2/stage_4_residual.py +793 -0
  150. faultline/pipeline_v2/stage_5_3_sibling_collapse.py +706 -0
  151. faultline/pipeline_v2/stage_5_5_bipartite.py +377 -0
  152. faultline/pipeline_v2/stage_5_postprocess.py +869 -0
  153. faultline/pipeline_v2/stage_6_3_import_tree.py +1774 -0
  154. faultline/pipeline_v2/stage_6_4_framework_enrich.py +471 -0
  155. faultline/pipeline_v2/stage_6_5_product_clusterer.py +1106 -0
  156. faultline/pipeline_v2/stage_6_6_branch_slicer.py +1029 -0
  157. faultline/pipeline_v2/stage_6_7_user_flows.py +1172 -0
  158. faultline/pipeline_v2/stage_6_7b_uf_refiner.py +772 -0
  159. faultline/pipeline_v2/stage_6_7c_uf_splitter.py +342 -0
  160. faultline/pipeline_v2/stage_6_8_lineage.py +157 -0
  161. faultline/pipeline_v2/stage_6_95_history.py +899 -0
  162. faultline/pipeline_v2/stage_6_96_impact.py +287 -0
  163. faultline/pipeline_v2/stage_6_9_test_strip.py +371 -0
  164. faultline/pipeline_v2/stage_6_metrics.py +568 -0
  165. faultline/pipeline_v2/stage_7_output.py +259 -0
  166. faultline/pipeline_v2/stage_8_5_member_backfill.py +221 -0
  167. faultline/pipeline_v2/stage_8_6_5_scaffold_filter.py +163 -0
  168. faultline/pipeline_v2/stage_8_6_nonsource_drop.py +276 -0
  169. faultline/pipeline_v2/stage_8_7_anchor_desink.py +260 -0
  170. faultline/pipeline_v2/stage_8_8_shared_members.py +211 -0
  171. faultline/pipeline_v2/stage_8_analyst.py +1403 -0
  172. faultline/pipeline_v2/stage_8_marketing_clusterer.py +991 -0
  173. faultline/pipeline_v2/stage_8_rollup_strategies.py +967 -0
  174. faultline/pipeline_v2/url_linker.py +624 -0
  175. faultline/symbols/__init__.py +17 -0
  176. faultline/symbols/attribution.py +315 -0
  177. faultline/symbols/extractor.py +110 -0
  178. faultline/symbols/roles.py +150 -0
  179. faultline/watch/__init__.py +16 -0
  180. faultline/watch/daemon.py +340 -0
@@ -0,0 +1,239 @@
1
+ Metadata-Version: 2.4
2
+ Name: dynvo
3
+ Version: 1.33.0
4
+ Summary: Map features in any codebase from git history alone. No Jira required.
5
+ Project-URL: Homepage, https://faultlines.dev
6
+ Project-URL: Repository, https://github.com/PashaSchool/faultlines
7
+ Project-URL: Issues, https://github.com/PashaSchool/faultlines/issues
8
+ Author: Faultlines
9
+ License: MIT
10
+ License-File: LICENSE
11
+ Keywords: bug-fix-ratio,code-analysis,engineering-metrics,features,git,health-score,technical-debt
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Software Development :: Quality Assurance
20
+ Classifier: Typing :: Typed
21
+ Requires-Python: >=3.11
22
+ Requires-Dist: anthropic>=0.25.0
23
+ Requires-Dist: gitpython>=3.1.40
24
+ Requires-Dist: json5>=0.9
25
+ Requires-Dist: pydantic>=2.5.0
26
+ Requires-Dist: pyyaml>=6.0
27
+ Requires-Dist: rich>=13.7.0
28
+ Requires-Dist: typer>=0.12.0
29
+ Provides-Extra: ast
30
+ Requires-Dist: tree-sitter-go>=0.23.0; extra == 'ast'
31
+ Requires-Dist: tree-sitter-javascript>=0.23.0; extra == 'ast'
32
+ Requires-Dist: tree-sitter-python>=0.23.0; extra == 'ast'
33
+ Requires-Dist: tree-sitter-rust>=0.23.0; extra == 'ast'
34
+ Requires-Dist: tree-sitter-typescript>=0.23.0; extra == 'ast'
35
+ Requires-Dist: tree-sitter>=0.23.0; extra == 'ast'
36
+ Provides-Extra: trace
37
+ Requires-Dist: tree-sitter-javascript>=0.23.0; extra == 'trace'
38
+ Requires-Dist: tree-sitter-typescript>=0.23.0; extra == 'trace'
39
+ Requires-Dist: tree-sitter>=0.23.0; extra == 'trace'
40
+ Provides-Extra: watch
41
+ Requires-Dist: watchdog>=4.0.0; extra == 'watch'
42
+ Description-Content-Type: text/markdown
43
+
44
+ <div align="center">
45
+
46
+ <a href="https://faultlines.dev">
47
+ <img src="assets/faultlines-banner.png" alt="Faultlines — Codebase intelligence for teams and AI agents" width="100%">
48
+ </a>
49
+
50
+ <br>
51
+
52
+ **Faultlines turns raw git history into a living map of every _feature_ and _user flow_ in your repo — with bug hotspots, test coverage, and the precise context your AI coding agent actually needs.**
53
+
54
+ No Jira. No annotations. No manual tagging. Just `git log` and your code.
55
+
56
+ [![PyPI](https://img.shields.io/pypi/v/faultlines?color=6E56CF&label=pip%20install%20faultlines)](https://pypi.org/project/faultlines/)
57
+ [![Python](https://img.shields.io/pypi/pyversions/faultlines?color=6E56CF)](https://pypi.org/project/faultlines/)
58
+ [![License: MIT](https://img.shields.io/badge/License-MIT-6E56CF.svg)](LICENSE)
59
+ [![MCP](https://img.shields.io/badge/MCP-ready-6E56CF)](https://modelcontextprotocol.io)
60
+ [![Downloads](https://img.shields.io/pypi/dm/faultlines?color=6E56CF)](https://pypi.org/project/faultlines/)
61
+
62
+ [**Website**](https://faultlines.dev) · [**Quick start**](#-quick-start) · [**For AI agents**](#-built-for-ai-coding-agents) · [**How it works**](#-how-it-works) · [**Releases**](https://github.com/PashaSchool/faultlines/releases)
63
+
64
+ </div>
65
+
66
+ ---
67
+
68
+ ## The problem
69
+
70
+ Every engineer rediscovers the same thing on a new codebase:
71
+
72
+ > *"Which files actually implement checkout?"*
73
+ > *"What breaks if I change this?"*
74
+ > *"Who owns the billing flow?"*
75
+ > *"Where are the bugs hiding?"*
76
+
77
+ Your **issue tracker** doesn't know — it's full of aspirational tickets.
78
+ **Static analysis** sees imports, not intent.
79
+ And your **AI agent** just `grep`s 15 files and burns your context window guessing.
80
+
81
+ The answers were in your **git history** the whole time. Faultlines reads them.
82
+
83
+ ## What Faultlines does
84
+
85
+ ```
86
+ $ faultlines ./my-app
87
+
88
+ ✓ 472 commits analysed · 1,284 files mapped
89
+
90
+ FEATURE HEALTH COVERAGE HOTSPOTS FLOWS
91
+ ─────────────────────────────────────────────────────────
92
+ Billing & Subscriptions 62 48% 3 7
93
+ Authentication 88 91% 0 4
94
+ Document E-Sign 41 ⚠ 22% 5 9
95
+ Team & Permissions 79 66% 1 5
96
+
97
+
98
+ → Highest blast radius: src/payments/charge.ts (touches 4 features)
99
+ → Riskiest flow: e-sign/finalize (low coverage · 5 recent bug-fixes)
100
+ ```
101
+
102
+ A **two-layer feature map**:
103
+
104
+ - **Developer features** — code-grounded, the units your engineers actually work in.
105
+ - **Product features** — the customer-facing capabilities those roll up into.
106
+
107
+ …each broken into **flows** (real user journeys), scored, attributed down to the **function and line range**, and served to humans *and* AI agents.
108
+
109
+ ## Features
110
+
111
+ - **Feature & flow detection** — from git history + code structure, on **any stack** (Next.js, Rails, Django, FastAPI, Express, Spring, Laravel, Phoenix, and more).
112
+ - **Bug hotspots & health scores** — find what's rotting before it pages you.
113
+ - **Behavioral test coverage** — coverage *per user flow*, inferred from history even when there's no `lcov`.
114
+ - **Change-impact / blast radius** — "if I touch these files, here's what breaks and who to add as reviewer."
115
+ - **Symbol-level attribution** — functions, classes and **line ranges** per flow, not just file lists.
116
+ - **Ownership & bus-factor** — who maintains each feature, and where the knowledge is dangerously concentrated.
117
+ - **MCP server for AI agents** — 13 typed tools your coding agent calls instead of grepping.
118
+ - **Runtime overlays** — map **Sentry** errors and **PostHog** usage onto features (which features actually fail and get used).
119
+ - **Local-first & private** — runs on your machine; your source code never has to leave it.
120
+
121
+ ## Quick start
122
+
123
+ ```bash
124
+ pip install faultlines
125
+
126
+ # Scan a repo. Bare `faultlines <repo>` runs the scan pipeline —
127
+ # flows and symbol-level attribution are included by default.
128
+ faultlines /path/to/your/repo
129
+ ```
130
+
131
+ Faultlines is **deterministic-first**: the feature/flow structure comes from your code and git history with no LLM required. Set an `ANTHROPIC_API_KEY` and a **Haiku** pass automatically adds human-readable names and flow detection — no flag needed. Pick the model with `--model haiku|sonnet|opus` (default: `haiku`):
132
+
133
+ ```bash
134
+ export ANTHROPIC_API_KEY=sk-ant-...
135
+ faultlines /path/to/your/repo --model sonnet
136
+ ```
137
+
138
+ > `scan-v2` is the explicit name of the same pipeline (`faultlines scan-v2 <repo>`); the bare form is just shorthand for it.
139
+
140
+ That writes a versioned **feature-map JSON** to `~/.faultline/`. Explore it, diff it across runs, ship it to CI, or hand it to your AI agent (below).
141
+
142
+ ## Built for AI coding agents
143
+
144
+ This is the wedge. Install the companion MCP server and your agent stops guessing:
145
+
146
+ ```bash
147
+ # one-off, no install (recommended)
148
+ uvx faultlines-mcp
149
+
150
+ # or install it
151
+ pip install faultlines-mcp
152
+ ```
153
+
154
+ ```jsonc
155
+ // ~/.cursor/mcp.json (or: claude mcp add faultlines -- faultlines-mcp)
156
+ {
157
+ "mcpServers": {
158
+ "faultlines": { "command": "faultlines-mcp" }
159
+ }
160
+ }
161
+ ```
162
+
163
+ Now Cursor / Claude Code / Cline / Windsurf can call **13 tools**:
164
+
165
+ | | Tools |
166
+ |---|---|
167
+ | **Discover** | `list_features` · `find_feature` · `get_repo_summary` |
168
+ | **Files & symbols** | `get_feature_files` · `get_flow_files` · `find_symbols_in_flow` · `find_symbols_for_feature` |
169
+ | **Risk & impact** | `get_hotspots` · `get_feature_owners` · `analyze_change_impact` · `get_regression_risk` |
170
+ | **Runtime** | `get_feature_errors` (Sentry) · `get_feature_pageviews` (PostHog) |
171
+
172
+ > Typical result: **~90% fewer tokens** per query than a naive grep-and-read loop — your agent reads the *right* functions, with line ranges, on the first try.
173
+
174
+ ## The metrics — and why they matter
175
+
176
+ | Metric | What it tells you | Why you care |
177
+ |---|---|---|
178
+ | **Health score** | Composite of churn, bug-fixes, coverage & ownership | One number to triage what to refactor next |
179
+ | **Bug-fix ratio** | Share of commits that fix bugs | High = fragile, defect-prone code |
180
+ | **Churn** | How often a feature changes | Hotspot detection; instability signal |
181
+ | **Impact score** | Structural blast radius − coverage | What a change here actually endangers |
182
+ | **Coverage** | Behavioral test coverage **per flow** | Find untested user journeys, not just untested lines |
183
+ | **Ownership / bus factor** | Who holds the knowledge | Spot single-points-of-failure before they leave |
184
+
185
+ ## How it works
186
+
187
+ ```
188
+ git history ─┐
189
+ ├─▶ deterministic extractors ─┐
190
+ code/config ─┘ (routes · MVC · schema · │
191
+ package · stack patterns) ├─▶ feature & flow map
192
+ │ + metrics + symbols
193
+ Haiku pass · naming + flows (key set) ─┘ │
194
+
195
+ feature-map JSON ──▶ CLI · CI · dashboard · MCP
196
+ ```
197
+
198
+ **Deterministic-first.** The structure comes from your routing conventions, configs, schemas and git co-change patterns — no LLM required. When `ANTHROPIC_API_KEY` is set, an Anthropic (Haiku by default, `--model sonnet|opus`) pass adds human-readable names and flow detection automatically. The output is a single versioned JSON — the stable contract every consumer reads.
199
+
200
+ ## Integrations
201
+
202
+ - **GitHub** — PR comments with risk, coverage gaps and runtime signal on the exact features a diff touches.
203
+ - **Sentry** — production errors mapped to features.
204
+ - **PostHog** — real usage & traffic per feature.
205
+ - **Slack** — weekly digest of top risks, coverage gaps and hotspots.
206
+
207
+ ## Why not just…
208
+
209
+ - **…grep / read the files?** Burns context and misses cross-boundary, runtime and historical coupling that static analysis can't see.
210
+ - **…SonarQube / linters?** Great for line-level issues; blind to *features*, *flows* and *blast radius*.
211
+ - **…your issue tracker?** Describes intent, not reality. Faultlines is grounded in what the code and history actually say.
212
+
213
+ Faultlines is the only layer that joins **structure + git history + runtime** into one map — and serves it to your AI agent.
214
+
215
+ ## Roadmap
216
+
217
+ - [x] Two-layer feature/flow map on any stack
218
+ - [x] Behavioral test coverage & health scoring
219
+ - [x] Symbol-level attribution
220
+ - [x] MCP server (13 tools) — Local · Hosted · VPC
221
+ - [x] Sentry + PostHog runtime overlays
222
+ - [x] Incremental, sub-second re-scans on every commit
223
+ - [x] Native plugins for more agents & IDEs
224
+
225
+ ## Contributing
226
+
227
+ Issues, ideas and PRs are welcome. Faultlines is built to map *any* codebase — if it mis-reads your stack, that's a bug we want to hear about.
228
+
229
+ ## License
230
+
231
+ MIT — see [LICENSE](LICENSE).
232
+
233
+ <div align="center">
234
+
235
+ **[Star this repo](https://github.com/PashaSchool/faultlines)** if Faultlines helps you (or your agent) understand a codebase faster.
236
+
237
+ Made for engineers and the AI agents that work alongside them · [faultlines.dev](https://faultlines.dev)
238
+
239
+ </div>
@@ -0,0 +1,180 @@
1
+ faultline/__init__.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
2
+ faultline/cli.py,sha256=IVdhT2o5q_sJR3kpdav-4uBRbTzAxNIAmCOzqRLqflA,40874
3
+ faultline/analyzer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ faultline/analyzer/ast_extractor.py,sha256=_BS6O3vOTzPi7EO9bJ28Br1rv1xzEoCWEYSo0r2Xx4g,41293
5
+ faultline/analyzer/auto_alias_discoverer.py,sha256=Z6pr2ZH-mWEJ4fIyI8vmfo6iHH62v7_FKx5pB38nQPc,6086
6
+ faultline/analyzer/evolve.py,sha256=mNKJSo91Xp1OjIduzhn67l95ddVGlWM9Acv2QLEy8BQ,25582
7
+ faultline/analyzer/features.py,sha256=d4o2J5cLCj4q80otmBlT_Sa3AqP2qbLz59bEgaKUe0g,58363
8
+ faultline/analyzer/git.py,sha256=82Dy4pgEPkE6CJDhuvhN_6xlJygO6irAxaBY3yqYov4,17047
9
+ faultline/analyzer/import_graph.py,sha256=A68rxOcaBXbx8E0pdp_ckW_aacI3cgGLc3kcoVVfhBM,37458
10
+ faultline/analyzer/incremental.py,sha256=J4U_1In82z4wMBywNguUi2dVQd7eULLohVgG_VrW9c0,7430
11
+ faultline/analyzer/marketing_fetcher.py,sha256=_ya7YziEK-uH7Shzxd27anw7614w1pefKn0UcUegHEs,33884
12
+ faultline/analyzer/post_process.py,sha256=vOBydqOGjL6xjeSqU8Q6xS2ZBAW63_9agKOFqtodd5U,29411
13
+ faultline/analyzer/repo_config.py,sha256=qvlUToaaGwK4fSrTz8ESSOvxb-z50MPu2j1S_IpuWuU,15403
14
+ faultline/analyzer/reverse_imports.py,sha256=s_VjaIsdoZINNn6A84cX3gdA2MzBni3zaFJf5EgIEwo,24988
15
+ faultline/analyzer/symbol_graph.py,sha256=mJEj5U46w1j2MMa39-07w3pU056J9SFpIoz4ohUwdIs,33057
16
+ faultline/analyzer/test_mapper.py,sha256=YFpkmZCZadUPMhZ88m0xeBcNN1LsYJhl_kjnPkqxZiA,12626
17
+ faultline/analyzer/tsconfig_paths.py,sha256=6FJTOLTpZyT8CLEL2IDwQbg-PeYoDD1FsQMffYl6Fqo,22239
18
+ faultline/analyzer/url_route_resolver.py,sha256=hdYXANUPI4h0DFuZuGs0W5mP57T5UVdAJzKkNgqateQ,17800
19
+ faultline/analyzer/validation.py,sha256=lrA0xww94P4idU-5ymgaryaqNrgdpwlUVaNvzft4tTU,8714
20
+ faultline/analyzer/workspace.py,sha256=fwmjEfYmtLHOcQMUROTF3d83_Kv9lUfDn-mHFjtJ5DY,16437
21
+ faultline/benchmark/__init__.py,sha256=rFYm3rPB32ABRFCe24pdObaQjWpa543tI708XOfcVfk,1405
22
+ faultline/benchmark/loader.py,sha256=8AIOx6Rn5I8njPvRNZ6enPLyONHYIjg10_RLLYuDBgY,6672
23
+ faultline/benchmark/metrics.py,sha256=cbibdMg0tyHQJQ5jl5MHg0GtUZ2CEYesawC3Fs-eTvc,10932
24
+ faultline/benchmark/report.py,sha256=b5BBElQSBcmNfxDRtRKOdrwCVSmsFgkDkOWmOqKZHhs,3555
25
+ faultline/cache/__init__.py,sha256=gLu1-Vaq4PL8axhWs35k72APedHIfqnhKHWNqTd-4B8,3977
26
+ faultline/cache/backend.py,sha256=6Sq7RUfe1x2MDDp1ab9o0Z811Av6-ABVGAtIBpDTsn0,10233
27
+ faultline/cache/discovery.py,sha256=7ZgVdcQ8lb_x-hXoSHDkrIKr3DqLHe5nzk9JqYqZ2jA,17376
28
+ faultline/cache/freshness.py,sha256=XjeHqAp01HKf_Rlcjn43MxBlTX45xTp_ldZjRoRG9EI,4396
29
+ faultline/cache/hashing.py,sha256=k6tfBkoMy5o_p1QsyLkQJNVhc4DMoeVbLYOyFxVh-oA,2117
30
+ faultline/cache/paths.py,sha256=XVqkaHnc7haTkwZyUt0dIlnQnLoqO65CIajE4lpJ_tg,1561
31
+ faultline/cache/refresh.py,sha256=S-0EcZvOsrMQWDSWxmYvnhnl10qquzqMSWGxili7bnA,5617
32
+ faultline/cache/symbols.py,sha256=DTJceTkovTJWyKqzipLXb_EBW8A5lEuaQ2DwtiwCZ7I,9919
33
+ faultline/cloud/__init__.py,sha256=F-PsmYAmdI5W99xz73gJY4-bGAweyTLOX_18SR1gN14,526
34
+ faultline/cloud/sync.py,sha256=LjMFSuAEyU4r8xLb2O4Qi5e6B2l3pa4cla6jnYAy-3Q,4395
35
+ faultline/digest/__init__.py,sha256=_EnYY9gPIEq2TR65pVkFwaRC1GPfvuhdS4Ytr3BCjqc,126
36
+ faultline/digest/__main__.py,sha256=sQcTy9xqqS48Ai3GFCqTGTub--ldtLR3ZlIw0uWY3Z0,97
37
+ faultline/digest/cli.py,sha256=ce4umJ6EKbr9rNNnMkXNlWJLbU2W3k8hCKyjgGuA_A0,2485
38
+ faultline/digest/git_reader.py,sha256=OyAtfXwdl3BvKDt8LzmuWo1NACGb9mzF9zYagvT1j1g,4781
39
+ faultline/digest/summarizer.py,sha256=Epq1X_2xCgI0ieeea-ziba0U4Swyt5ON50h-mmLDKhk,6688
40
+ faultline/framework_linkers/__init__.py,sha256=_TtxjG1-XKUu-zmO4UgfQBul5Gbmnc3FuiyPVXvHUU4,866
41
+ faultline/framework_linkers/_discovery.py,sha256=0TO8NrFIgFIT_n4nFGZuy5WqEvwZ7hVI_EYndcuLEO8,3764
42
+ faultline/framework_linkers/base.py,sha256=ggslpxqH6W2S6XZRbGjUwxHZHGTet4Z-wPqghQrpNUA,4811
43
+ faultline/framework_linkers/nextjs_http_route.py,sha256=Lf-bsMJM4jQBmGxBWU2qoVwln2hXGJcI3F2u7QPPdKU,27881
44
+ faultline/framework_linkers/nextjs_server_actions.py,sha256=4MSnXnNTi1Huz3zis5l6jWoYhdVrBZmbxxPZb-W3HTc,23655
45
+ faultline/framework_linkers/store_mutation.py,sha256=HdxnRo60r1OVY4NjFMvBe6dXjpurwB03ErHJyhIU_MA,41512
46
+ faultline/framework_linkers/trpc_procedure.py,sha256=13d7VQ84em62vRonQ5paMm0v0qPSe7lyPsbuUcKr2js,29571
47
+ faultline/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
+ faultline/llm/cost.py,sha256=SYmVwmth9rqPcubwLJldR6VZdfps_H08bf_ob690HGg,11128
49
+ faultline/llm/model_gateway.py,sha256=tJ0HKGBHsOJVe1ns7Ep5cthavBXoFbQkKdLqvOfA0nU,4941
50
+ faultline/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ faultline/models/types.py,sha256=_y1JWl_BcEaCG_7WWzqnk9FkWPax1i0us1ShgUjgvpo,52207
52
+ faultline/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ faultline/output/reporter.py,sha256=nRrH4Fb0Eli7RSyt9wIgUQQZ8t1fUgSSXxFU8eSeCAU,9450
54
+ faultline/output/writer.py,sha256=5WFopZomzNSDjpPlvEbvr61OuAbH4CuyGgEhYeFRe2Q,1312
55
+ faultline/pipeline_v2/__init__.py,sha256=_aPjcAkQKckXE6cVi1JGebebZapj1oWSLswT9nVYz0I,3334
56
+ faultline/pipeline_v2/domain_noun.py,sha256=LvXW_HkXvFLnsAQSx2jLschQkmY5cwhOT7kHbZ21T-c,9328
57
+ faultline/pipeline_v2/flow_reach.py,sha256=T-Qq_pXyDQlcS1l9foRB7A-DhO2vu7crZbFgEUzVvVo,23224
58
+ faultline/pipeline_v2/flow_symbols.py,sha256=QkEn1EgtHwBIW0lUCYXPPJgK5cI0LfHHjTM4H01Ep-Q,39392
59
+ faultline/pipeline_v2/flow_test_mapper.py,sha256=LrZuiebS8YSIrz4BT1TcIXaZwxBxAm4q32NYelJR-Mo,11375
60
+ faultline/pipeline_v2/git_snapshot.py,sha256=T1OnU85j7y_UmN8NPVVXIts4pA-0iAsw_3sA5j2uTqQ,9321
61
+ faultline/pipeline_v2/incremental.py,sha256=KmCe6iYsFvVD4nRBkmjod9bXOXCfw93XAfrOduvIDTI,6067
62
+ faultline/pipeline_v2/incremental_gate.py,sha256=0TbdykfQJAcHm76NJAHOzRaVrYolyeexqS9y84XCE0s,18738
63
+ faultline/pipeline_v2/incremental_wiring.py,sha256=qJhcpXHQjMRlDrw86YUi1SP-YOTLJ55rFhwP86FJBDg,14290
64
+ faultline/pipeline_v2/indexes.py,sha256=O45GrMgih6AV2ugEBR2wFLBjUgvzDhoDqkPp1_GmDy0,13246
65
+ faultline/pipeline_v2/lineage.py,sha256=kpvK21nT8nkwbaHrOHxqehIXZ8TEcHsiWamC2AfTb9Q,11659
66
+ faultline/pipeline_v2/llm_health.py,sha256=7PjHf8jyoz1MfEfrTXc4BKhkjEVNXwgTGkM2WmQUFQA,9218
67
+ faultline/pipeline_v2/multi.py,sha256=aHPJ_dIbLkIW_M7XEt1TbbpPym0VqFuAxSlhZF6OykI,6273
68
+ faultline/pipeline_v2/naming_validator.py,sha256=hZZaX4Yf8-evQbVnuA6fhe7QfLrag8-goSBrR4ivii0,11943
69
+ faultline/pipeline_v2/nav_taxonomy.py,sha256=FavWFuNxZovxmegrXKo5KjCOUlqOWj_oULLcPnDyiug,17131
70
+ faultline/pipeline_v2/phase_enrich.py,sha256=xpwzmHC5v1lvDkPjBEYX6rr6MgK9Liq3d1Pu_wbDHec,10051
71
+ faultline/pipeline_v2/phase_extract.py,sha256=F29YeoqOzz85IA9ReMGe4qNTOdsSfJS4BBsJLCK6WUc,6641
72
+ faultline/pipeline_v2/phase_finalize.py,sha256=0604gRzGzoCtbssJY9qgM3cXpCwyUgyeUj6_nw6OKNA,22483
73
+ faultline/pipeline_v2/phase_intake.py,sha256=tUn00kh9PbkaAeQ7HefZ_kCDDbObeXVKDcwn2DERdho,6935
74
+ faultline/pipeline_v2/phase_layer2.py,sha256=AN9ZAct8QQsguHiu6nLFtCn-05EXcLDXzq8-7BzAz3s,20915
75
+ faultline/pipeline_v2/phase_postprocess.py,sha256=6cKvA51r6Y4uBm7n4BHT_mEW9SiTujZOhEUs4z813vI,8715
76
+ faultline/pipeline_v2/product_strings.py,sha256=WBi4D9OeARr8xfVP-mUX4OqdqKT_OYft-HT0w6bgE6A,32362
77
+ faultline/pipeline_v2/residual_clusterer.py,sha256=QLdZhFtrhZVmGnw-VW4cvtBn-HWDZH-EUwVDzbR-FFA,15702
78
+ faultline/pipeline_v2/run.py,sha256=3_HGMZk-QuaKniZAeH_yVMVZgksYR0envkKEV4eF9w0,31528
79
+ faultline/pipeline_v2/run_dir.py,sha256=VwPLYnnftg0iPuEXgiohqgPXTfnGIxuQHSTl8g2Kqeo,5010
80
+ faultline/pipeline_v2/run_logger.py,sha256=VTe0Oh4WplsCdGka5pUahSbpMLQmw-7XnRwwnDR2z6E,5917
81
+ faultline/pipeline_v2/scan_meta.py,sha256=fr8d-JXkK-AfSPB14E_S2-Y63rJaro8bkOOF296LyU4,21870
82
+ faultline/pipeline_v2/snapshots.py,sha256=dgECUcJiSd0LRvLLysVVM_jDwYEPPv9p0aYmwH_Qxs0,20211
83
+ faultline/pipeline_v2/stack_auditor.py,sha256=S-WhbHxOBL1vHkjU90N65Do0OStmRh_7xIR6aqjxFmM,52340
84
+ faultline/pipeline_v2/stage_0_6_shape.py,sha256=vcnBetquwb84XZML6XvbF3exAy0uu5aAFySvj3lqUco,56601
85
+ faultline/pipeline_v2/stage_0_intake.py,sha256=TR--yScVSd_thbMemry57J5an5EnukXLNY7K3HRHfcY,34590
86
+ faultline/pipeline_v2/stage_1_extractors.py,sha256=tGDGP_Ok7TUAKrXjfUf5YS8R4naXmyPZZwJrsMAj7AI,14681
87
+ faultline/pipeline_v2/stage_1_per_workspace.py,sha256=ZeDE35Wa1dPsgn2q-V9p4Tnm-e3pmt21V1-nTfQ2ICQ,21997
88
+ faultline/pipeline_v2/stage_2_6_membership_closure.py,sha256=VffwtLTpuVYjyjHHBzBgKSJqJXEcvUCz42KBh-O_TRI,39572
89
+ faultline/pipeline_v2/stage_2_reconcile.py,sha256=XJFkCSym5fauoto4CLTPbNDL2Zi6qTjDjPX46LHL9j8,35065
90
+ faultline/pipeline_v2/stage_3_flows.py,sha256=2gL-FSNrGGQCWbH2v4RuGF5NVJqaCD7Wpnb3ckkKqbM,33528
91
+ faultline/pipeline_v2/stage_4_guards.py,sha256=foWqNO_zQOFbeSdTsPBQTUZvkk4udB3V8CqNI5AcpxI,25941
92
+ faultline/pipeline_v2/stage_4_residual.py,sha256=_tytViA-HMovYsKFFo1GLaQ2cwH5URxIccRxze-UPV8,31958
93
+ faultline/pipeline_v2/stage_5_3_sibling_collapse.py,sha256=r5Vktc7YyxT47pOPHj1CXatEaE9DM6mw28IoOfs8kZ4,26520
94
+ faultline/pipeline_v2/stage_5_5_bipartite.py,sha256=L-7rTREA6iO_lo1DZoHaxloatuFQTNrPtkxLFUosWHk,15329
95
+ faultline/pipeline_v2/stage_5_postprocess.py,sha256=N34Ow5YQMbzYSWjP2UmpV_fvOyns8Xf_H_CSeCgfH5w,32767
96
+ faultline/pipeline_v2/stage_6_3_import_tree.py,sha256=e4OdiU-Ss-hFgz1MXBXyqNOmH4RSUISVVYddjE9vBnE,64705
97
+ faultline/pipeline_v2/stage_6_4_framework_enrich.py,sha256=lNVuWXq03QcfAMT47K9EdGqHurBeI1abWcJRY9xpW1g,18851
98
+ faultline/pipeline_v2/stage_6_5_product_clusterer.py,sha256=aWfTQxu0qy37mdk1QzzJL-oBDMPE9jMTOYfnxNS_rWM,44656
99
+ faultline/pipeline_v2/stage_6_6_branch_slicer.py,sha256=_46UdR3m6WO7mDe822Aw8ofgT10UXAXyvDPoB-xByMw,37572
100
+ faultline/pipeline_v2/stage_6_7_user_flows.py,sha256=_-vDp3EXdMyKtdM7S2yQ2XqpXKMPkq9owDRmJTBEthk,53819
101
+ faultline/pipeline_v2/stage_6_7b_uf_refiner.py,sha256=t_1wqQKuLg_Ef2dSYE3dXuyEcEiGlsCNBwWoLfodH4w,30310
102
+ faultline/pipeline_v2/stage_6_7c_uf_splitter.py,sha256=2gGYP0A_sMOAL5kXLPcBFu00xB4aKxaA6yxYcdkZGH4,13295
103
+ faultline/pipeline_v2/stage_6_8_lineage.py,sha256=gKTZmKbmqynyfK4mzIICXLbdz2pViVkXC5CQTaW9y98,5444
104
+ faultline/pipeline_v2/stage_6_95_history.py,sha256=1pS5gZbbOmcOZ6uJOFFU70ShFY2q6RlvumSaHAIewiY,36042
105
+ faultline/pipeline_v2/stage_6_96_impact.py,sha256=4AoeMv5rfwZwcL0v7MJxG0bBNqCJoTD6mnvzMgXfTRg,11196
106
+ faultline/pipeline_v2/stage_6_9_test_strip.py,sha256=Lj8bl7TMUNol4PV2eGwRr3Q3XIxEppm5lnFKZcbpSXs,13515
107
+ faultline/pipeline_v2/stage_6_metrics.py,sha256=2j1UwtLVZghCzp3KrucThFSyIxeLg1RHk9WwfqM5GMA,22419
108
+ faultline/pipeline_v2/stage_7_output.py,sha256=bFrnZANer1DcsJTT0sE0MjOYePOdDzS66TYcl7EJBIw,9316
109
+ faultline/pipeline_v2/stage_8_5_member_backfill.py,sha256=SZ_h6MwYum1dneY-XZyOaDkeg1sE1qH6OlpsV_p5HDk,8419
110
+ faultline/pipeline_v2/stage_8_6_5_scaffold_filter.py,sha256=kTvUvnVZ_WIkYidt54fLd8K5Em8lHk5RgRq9juvGjbc,6089
111
+ faultline/pipeline_v2/stage_8_6_nonsource_drop.py,sha256=oiy0JvnqPakr-Ora23_WwxKuNZ0rxOK8CsehTZih6PM,10598
112
+ faultline/pipeline_v2/stage_8_7_anchor_desink.py,sha256=aHWiYjgeE39N29WYkfQI-78xup9Tc1pyFNlvN2BvHF8,10568
113
+ faultline/pipeline_v2/stage_8_8_shared_members.py,sha256=FdMTjjdqda7kpP2TR-3OZ9xQGQt3Hvp9g9bsj-jAkr0,7855
114
+ faultline/pipeline_v2/stage_8_analyst.py,sha256=BbKdzo3sH7Rj98HbxIu3q-AUl0hzuxU67FYWa-wtEhs,53482
115
+ faultline/pipeline_v2/stage_8_marketing_clusterer.py,sha256=hZpN50PJjHpb4sxhV_96QTvcWeYzI-F5jjlanW0T7Qs,37837
116
+ faultline/pipeline_v2/stage_8_rollup_strategies.py,sha256=_i8cL6VX9xUS8fP3MW1FllrtzLCbgzkbupr51V97NhI,37028
117
+ faultline/pipeline_v2/url_linker.py,sha256=IEG0pM8hUY0Ac8u5btiT3DXiE4itEK5x2x-joCawq6k,24131
118
+ faultline/pipeline_v2/data/__init__.py,sha256=9DKPRHAzoCcPL5oV5FcOTrN2nybshLiD_DAnPLjlFjc,2819
119
+ faultline/pipeline_v2/data/dependency-anchors.yaml,sha256=jpxgPc49zQsbUt0CZo4TF4Xs1umW-2RLTQ2DCkS63TQ,9005
120
+ faultline/pipeline_v2/data/stacks/config-manifests.yaml,sha256=TWkOorUMK_kr8epIt1VwpmRNfLQjuRVCgLtHMZP31ZA,2577
121
+ faultline/pipeline_v2/data/stacks/django.yaml,sha256=-oqGZUJaZ1vCF4Jci5nIbb3KXRcHuRz778Z2K72YVZw,4626
122
+ faultline/pipeline_v2/data/stacks/express.yaml,sha256=GdaqrS2SxpIJ7DPR6HtmHYX1f1_OlVunIySzKqKB1uw,3467
123
+ faultline/pipeline_v2/data/stacks/fastapi.yaml,sha256=fCDxNLDKJoXeOgd4PlTASjriePQzv99FxlQPwTZAdEY,2028
124
+ faultline/pipeline_v2/data/stacks/filesystem-routing.yaml,sha256=et7tU-VLGd2Q4klMqdQ1lKck-VjSiPeHaZBWyOXhfKE,3333
125
+ faultline/pipeline_v2/data/stacks/go-http-router.yaml,sha256=iKHFjHPzuy8-Za3JyLXXBKLl2ESFHqXFkEn3Z2odwb8,1884
126
+ faultline/pipeline_v2/data/stacks/js-library.yaml,sha256=Xip4nulvDTzOlAfZWYdXqUaMLb_1EPN5mh76G_krSgE,2479
127
+ faultline/pipeline_v2/data/stacks/mvc-controllers.yaml,sha256=hgnJOP4CIG4KZGLxHloSZzMlAJLF9UgQ30gSYq2i5ew,1123
128
+ faultline/pipeline_v2/data/stacks/python-library.yaml,sha256=vVmfgIBjeRmwPyO8SJdDHWTHYjsJVtALzIU2sog6c0w,1745
129
+ faultline/pipeline_v2/data/stacks/rails-app.yaml,sha256=hHkc7FvDXGpZoWZLL5-GJvMIU0W8EdeSXXQ95mMayqY,3792
130
+ faultline/pipeline_v2/data/stacks/rust-workspace.yaml,sha256=7_lrRL408c30rtUfUBLXWdzUmDyM7thrnWTM0XZdOzQ,1194
131
+ faultline/pipeline_v2/data/stacks/schema-domains.yaml,sha256=QHQsY3ttUG71XnQLE7X-X5wNcvJKbB72qjPMX6j_3Vw,2215
132
+ faultline/pipeline_v2/extractors/__init__.py,sha256=e3_wS5SKx_sNZ1w46MlqWlJeZiitIDkBKCgM_pukedw,910
133
+ faultline/pipeline_v2/extractors/_pattern_base.py,sha256=V_JL0HVibHcxhwx2knkGoe1DDgoDbFuWvAkgQgwctHQ,5284
134
+ faultline/pipeline_v2/extractors/_rails.py,sha256=9j5JNoBSDzreyxgk0oTzb9mN5pjfZkCLWBe6MKoD9W4,7063
135
+ faultline/pipeline_v2/extractors/_util.py,sha256=bbRUM7yuueUCAQ19XDxC1CYqS_KrUcOdDFyvfxylpp4,5262
136
+ faultline/pipeline_v2/extractors/base.py,sha256=5-eFEzSXFfibkbAjA-A2mDQxlx_HxTKTcJZ251SAWFc,3585
137
+ faultline/pipeline_v2/extractors/config.py,sha256=xSJwIzCzrMTRijB-6vUqD7pBpsuUJQz9WlKaruDqpfw,14319
138
+ faultline/pipeline_v2/extractors/django.py,sha256=R3tvvBv8K2FccdBNKvQPFaKdlJMtE35_OSDMxxbWtgc,20449
139
+ faultline/pipeline_v2/extractors/express.py,sha256=8_Pi-_FBkDIPC89STRldW3MD2SeH_-lkxoPyg08Yj8g,13521
140
+ faultline/pipeline_v2/extractors/fastapi.py,sha256=LdCK9JEVmap_GozT5rMD60r3mQvPHoxfw8Eg353pm58,12112
141
+ faultline/pipeline_v2/extractors/fastify.py,sha256=hICSehRcnmRFlPjc1rKJbUJ26204quySoi9CuhO-f7o,9811
142
+ faultline/pipeline_v2/extractors/go_packages.py,sha256=YHngfbWoPyqZWV04i9Jcib8sGRLmle90xNEWWX2A3zg,9101
143
+ faultline/pipeline_v2/extractors/go_router.py,sha256=OcvjU5ypw30TYsegbBKWD5iYd2B_Cdd886HlITezc8s,9010
144
+ faultline/pipeline_v2/extractors/js_library.py,sha256=CkaCJGhB2P_phIr0AwGZjVnDsXwC0wW45B-LIOsQE40,32589
145
+ faultline/pipeline_v2/extractors/mvc.py,sha256=Fy6QPSJsgmOQX5qEpFqu0HBUakzbcS-mj8JjAqR1eSQ,4270
146
+ faultline/pipeline_v2/extractors/package.py,sha256=heeZAJtpZJ3G30-gsvIz26wHqCDi4W28cFIe7T8hc9w,14460
147
+ faultline/pipeline_v2/extractors/python_library.py,sha256=j2wmnTyvyj1Zx4thPI7VKvTsE1f8V0pm9w6TPjFr4mQ,14116
148
+ faultline/pipeline_v2/extractors/rails_jobs.py,sha256=R0o3-ilJ0jvsF3UkUjTvppTgbIC445lqRFnvKzRGUXs,3664
149
+ faultline/pipeline_v2/extractors/rails_models.py,sha256=WTF7PQ-xPAk7_RGppd3PyeVOx2JHJetErlDuoz5ykxE,5702
150
+ faultline/pipeline_v2/extractors/rails_routes.py,sha256=wIMokpBrBKvt7vpsebbazBgmyQBJkQHkrA8qzKIMgcM,4516
151
+ faultline/pipeline_v2/extractors/rails_stimulus.py,sha256=ec2v_Q8YEfIbgCLs6fqUP_G99juJzH-XxLOKaWO04A4,4416
152
+ faultline/pipeline_v2/extractors/rails_views.py,sha256=ex5p7f9BQZFBTcKHDOre5UbnqS-X5Q1SdD4OTQiwsyo,4081
153
+ faultline/pipeline_v2/extractors/route.py,sha256=iGYDKw6g-h29jX2337OWKrJLh83G19vP-OrS1dcUHuw,16859
154
+ faultline/pipeline_v2/extractors/rust_packages.py,sha256=5Dad5t-2PpxEWl5K-Jy2ygVVEA2UORDHTrwTyRwDqOs,16301
155
+ faultline/pipeline_v2/extractors/rust_workspace.py,sha256=azFNPFUTQurD8EP0ZHPP3OKipt73ohvDAjTyRWIBfls,9072
156
+ faultline/pipeline_v2/extractors/schema.py,sha256=4jmtT_WoSy8KFl7tRrIlyaKzun-qOcMsywGriKd7nBE,8956
157
+ faultline/pipeline_v2/flow_expansion/__init__.py,sha256=hXzXLsDMbc8ezJqzTNcDa7gL-zM4z13WWVSfqT_oRb0,1214
158
+ faultline/pipeline_v2/flow_expansion/call_graph.py,sha256=ektv_Q8VsYAkzwlpNM7aABDJudmQilwaSCXE6-jF5W4,31077
159
+ faultline/pipeline_v2/flow_expansion/confidence.py,sha256=VJp8sqZftcdNCQVOHaCdNnWYzknEdyzrunFl41bVgqQ,2610
160
+ faultline/pipeline_v2/flow_expansion/cross_stack.py,sha256=r1FcuAA9BJOpQAvGEH-zd00MojIB2XMuFdRLFFPBQ3o,9649
161
+ faultline/pipeline_v2/flow_expansion/expander.py,sha256=B_AgvqkRoAgxbhCtCdeltWdDcJET9tsPPMTg5AelrJc,36643
162
+ faultline/pipeline_v2/flow_expansion/fan_in.py,sha256=mwfz-XGUCQLXyH63wsZLUXbJwdgJDab-w3vjALhezNk,8655
163
+ faultline/pipeline_v2/flow_expansion/flow_display_name.py,sha256=t6SuUc939CdLLijPHl-YrGxoL3VEIT1Lub92f27QPwQ,16466
164
+ faultline/pipeline_v2/flow_expansion/reverse_cross_stack.py,sha256=veL_eoruo3Ctujf-8qgihcjwQmuhT8cnRdSLHioSOc0,11933
165
+ faultline/pipeline_v2/flow_expansion/adapters/__init__.py,sha256=Iapuv8OyifezUOxNZ97FX_uBSVDFYn7ZtzPGOUGl2Hw,553
166
+ faultline/pipeline_v2/flow_expansion/adapters/express.py,sha256=qbiI6rkVzZrlv0emck7WT_LOv69y-f5hneU47zBEWQE,587
167
+ faultline/pipeline_v2/flow_expansion/adapters/fastapi.py,sha256=yqkF0LivVmZuIMfyaYs6jFHZtd1EKTU5KBY8l7DOAQE,514
168
+ faultline/pipeline_v2/flow_expansion/adapters/nextjs.py,sha256=TvoTp4o0ODBBkegrXA01W9RXXsP3ZW4o3oLaeHTAn8I,1977
169
+ faultline/pipeline_v2/flow_expansion/adapters/react.py,sha256=pO649-NPHAbvKnSVNdz3x3kJHposns1aGsBdu0jThb0,568
170
+ faultline/symbols/__init__.py,sha256=eCt0Y4VplPgAJt-8hKQHrcGfVVWDi9QWCGFmqEWtDJY,691
171
+ faultline/symbols/attribution.py,sha256=_yiTvgueE1FO-F4DpANsqT_I7WUX-LdqVXDjdHp8S8A,10157
172
+ faultline/symbols/extractor.py,sha256=RTf4CKtSpCqheVm_CdGRhxXBLaWu-qt2tsyPJBQ6VTE,4168
173
+ faultline/symbols/roles.py,sha256=_LtGf08TbS2Oerylk7FUS_6TbCfeO5POtOspKV4tIlw,5136
174
+ faultline/watch/__init__.py,sha256=KmyI18PGFYQlCWZNpcfAEsXAmzp7-9CdJwEpYh-lPSw,637
175
+ faultline/watch/daemon.py,sha256=ZeJywfbk0BvufVokQYfqOo1jhOm-ataxJv5kDOpx-dA,9584
176
+ dynvo-1.33.0.dist-info/METADATA,sha256=rWgB907QKmX7vhjLZbicdWd0sTHXpLm0wZWBJYxEUtg,10881
177
+ dynvo-1.33.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
178
+ dynvo-1.33.0.dist-info/entry_points.txt,sha256=oiFe3-newi5cguL6wR_VP5-9ojPh13VW6ysV9S7WECg,1770
179
+ dynvo-1.33.0.dist-info/licenses/LICENSE,sha256=cHKqL5gny_JjzKfwxCEOrtcQDsA5bdrvfdBmYWBDUlA,10227
180
+ dynvo-1.33.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,27 @@
1
+ [console_scripts]
2
+ dynvo = faultline.cli:main
3
+
4
+ [faultlines.extractors]
5
+ config = faultline.pipeline_v2.extractors.config:ConfigAsProductExtractor
6
+ fastapi-route = faultline.pipeline_v2.extractors.fastapi:FastApiRouteExtractor
7
+ go-router = faultline.pipeline_v2.extractors.go_router:GoRouterExtractor
8
+ js-library = faultline.pipeline_v2.extractors.js_library:JsLibraryExtractor
9
+ mvc = faultline.pipeline_v2.extractors.mvc:MVCControllerExtractor
10
+ package = faultline.pipeline_v2.extractors.package:PackageAnchorExtractor
11
+ python-library = faultline.pipeline_v2.extractors.python_library:PythonLibraryExtractor
12
+ rails-jobs = faultline.pipeline_v2.extractors.rails_jobs:RailsJobsExtractor
13
+ rails-models = faultline.pipeline_v2.extractors.rails_models:RailsModelsExtractor
14
+ rails-routes = faultline.pipeline_v2.extractors.rails_routes:RailsRoutesExtractor
15
+ rails-stimulus = faultline.pipeline_v2.extractors.rails_stimulus:RailsStimulusExtractor
16
+ rails-views = faultline.pipeline_v2.extractors.rails_views:RailsViewsExtractor
17
+ route = faultline.pipeline_v2.extractors.route:RouteFileExtractor
18
+ route-express = faultline.pipeline_v2.extractors.express:ExpressRouteExtractor
19
+ route-fastify = faultline.pipeline_v2.extractors.fastify:FastifyRouteExtractor
20
+ rust-workspace = faultline.pipeline_v2.extractors.rust_workspace:RustWorkspaceExtractor
21
+ schema = faultline.pipeline_v2.extractors.schema:SchemaDomainExtractor
22
+
23
+ [faultlines.framework_linkers]
24
+ nextjs-http-route = faultline.framework_linkers.nextjs_http_route:NextjsHttpRouteLinker
25
+ nextjs-server-actions = faultline.framework_linkers.nextjs_server_actions:NextjsServerActionsLinker
26
+ store-mutation = faultline.framework_linkers.store_mutation:StoreMutationLinker
27
+ trpc-procedure = faultline.framework_linkers.trpc_procedure:TrpcProcedureLinker
@@ -0,0 +1,183 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship made available under
36
+ the License, as indicated by a copyright notice that is included in
37
+ or attached to the work (an example is provided in the Appendix below).
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship. For the purposes
43
+ of this License, Derivative Works shall not include works that remain
44
+ separable from, or merely link (or bind by name) to the interfaces of,
45
+ the Work and Derivative Works thereof.
46
+
47
+ "Contribution" shall mean, as defined by Sections 1 through 9 of this
48
+ document, any work of authorship, including the original version of
49
+ the Work and any modifications or additions to that Work or Derivative
50
+ Works of the Work, intentionally submitted to the Licensor for
51
+ inclusion in the Work by the copyright owner or by an individual or
52
+ Legal Entity authorized to submit on behalf of the copyright owner.
53
+ For the purposes of this definition, "submitted" means any form of
54
+ electronic, verbal, or written communication sent to the Licensor or
55
+ its representatives, including but not limited to communication on
56
+ electronic mailing lists, source code control systems, and issue
57
+ tracking systems that are managed by, or on behalf of, the Licensor
58
+ for the purpose of discussing and improving the Work, but excluding
59
+ communication that is conspicuously marked or otherwise designated
60
+ in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any Legal Entity on behalf of
63
+ whom a Contribution has been received by the Licensor and incorporated
64
+ within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by the combined contribution of their
81
+ Contribution(s) with the Work to which such Contribution(s) was
82
+ submitted. If You institute patent litigation against any entity
83
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
84
+ the Work or any Contribution embodied within the Work constitutes
85
+ direct or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate as
87
+ of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or Derivative
95
+ Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, You must include a readable copy of the
108
+ attribution notices contained within such NOTICE file, in
109
+ at least one of the following places: within a NOTICE text
110
+ file distributed as part of the Derivative Works; within
111
+ the Source form or documentation, if provided along with the
112
+ Derivative Works; or, within a display generated by the
113
+ Derivative Works, if and wherever such third-party notices
114
+ normally appear. The contents of the NOTICE file are for
115
+ informational purposes only and do not modify the License.
116
+ You may add Your own attribution notices within Derivative
117
+ Works that You distribute, alongside or in addition to the
118
+ NOTICE text from the Work, provided that such additional
119
+ attribution notices cannot be construed as modifying the License.
120
+
121
+ You may add Your own license statement for Your modifications and
122
+ may provide additional grant of rights to use, copy, modify, merge,
123
+ publish, distribute, sublicense, and/or sell copies of the
124
+ Contributions, and to permit persons to whom the Contributions are
125
+ furnished to do so.
126
+
127
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
128
+ any Contribution intentionally submitted for inclusion in the Work
129
+ by You to the Licensor shall be under the terms and conditions of
130
+ this License, without any additional terms or conditions.
131
+ Notwithstanding the above, nothing herein shall supersede or modify
132
+ the terms of any separate license agreement you may have executed
133
+ with Licensor regarding such Contributions.
134
+
135
+ 6. Trademarks. This License does not grant permission to use the trade
136
+ names, trademarks, service marks, or product names of the Licensor,
137
+ except as required for reasonable and customary use in describing the
138
+ origin of the Work and reproducing the content of the NOTICE file.
139
+
140
+ 7. Disclaimer of Warranty. Unless required by applicable law or
141
+ agreed to in writing, Licensor provides the Work (and each
142
+ Contributor provides its Contributions) on an "AS IS" BASIS,
143
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
144
+ implied, including, without limitation, any warranties or conditions
145
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
146
+ PARTICULAR PURPOSE. You are solely responsible for determining the
147
+ appropriateness of using or reproducing the Work and assume any
148
+ risks associated with Your exercise of permissions under this License.
149
+
150
+ 8. Limitation of Liability. In no event and under no legal theory,
151
+ whether in tort (including negligence), contract, or otherwise,
152
+ unless required by applicable law (such as deliberate and grossly
153
+ negligent acts) or agreed to in writing, shall any Contributor be
154
+ liable to You for damages, including any direct, indirect, special,
155
+ incidental, or exemplary damages of any character arising as a
156
+ result of this License or out of the use or inability to use the
157
+ Work (including but not limited to damages for loss of goodwill,
158
+ work stoppage, computer failure or malfunction, or all other
159
+ commercial damages or losses), even if such Contributor has been
160
+ advised of the possibility of such damages.
161
+
162
+ 9. Accepting Warranty or Additional Liability. While redistributing
163
+ the Work or Derivative Works thereof, You may choose to offer,
164
+ and charge a fee for, acceptance of support, warranty, indemnity,
165
+ or other liability obligations and/or rights consistent with this
166
+ License. However, in accepting such obligations, You may offer only
167
+ conditions consistent with the terms of this License.
168
+
169
+ END OF TERMS AND CONDITIONS
170
+
171
+ Copyright 2026 pashaSchool
172
+
173
+ Licensed under the Apache License, Version 2.0 (the "License");
174
+ you may not use this file except in compliance with the License.
175
+ You may obtain a copy of the License at
176
+
177
+ http://www.apache.org/licenses/LICENSE-2.0
178
+
179
+ Unless required by applicable law or agreed to in writing, software
180
+ distributed under the License is distributed on an "AS IS" BASIS,
181
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
182
+ See the License for the specific language governing permissions and
183
+ limitations under the License.
faultline/__init__.py ADDED
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"
File without changes