preflight-mcp 0.6.0 → 0.7.2
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.
- package/LICENSE +25 -18
- package/README.md +259 -330
- package/README.zh-CN.md +177 -55
- package/dist/analysis/architecture-summary.js +478 -0
- package/dist/analysis/call-graph/adapters/go-adapter.js +557 -0
- package/dist/analysis/call-graph/adapters/python-adapter.js +501 -0
- package/dist/analysis/call-graph/adapters/rust-adapter.js +632 -0
- package/dist/analysis/call-graph/adapters/typescript-adapter.js +624 -0
- package/dist/analysis/call-graph/call-graph-builder.js +503 -0
- package/dist/analysis/call-graph/index.js +52 -0
- package/dist/analysis/call-graph/types.js +142 -0
- package/dist/analysis/index.js +17 -0
- package/dist/analysis/languages/go-analyzer.js +475 -0
- package/dist/analysis/languages/index.js +7 -0
- package/dist/analysis/languages/python-analyzer.js +454 -0
- package/dist/analysis/languages/rust-analyzer.js +603 -0
- package/dist/analysis/pattern-analyzer.js +239 -0
- package/dist/analysis/type-semantic-analyzer.js +367 -0
- package/dist/analysis/types.js +36 -0
- package/dist/analysis/unified-analyzer.js +424 -0
- package/dist/ast/treeSitter.js +336 -0
- package/dist/bundle/analysis.js +139 -1
- package/dist/bundle/document-ingest.js +241 -0
- package/dist/bundle/facts.js +55 -0
- package/dist/bundle/guides.js +237 -51
- package/dist/bundle/service.js +24 -3
- package/dist/config.js +14 -0
- package/dist/embedding/base.js +34 -0
- package/dist/embedding/index.js +33 -0
- package/dist/embedding/ollama.js +156 -0
- package/dist/embedding/openai.js +156 -0
- package/dist/embedding/types.js +7 -0
- package/dist/modal/context-extractor.js +389 -0
- package/dist/modal/index.js +35 -0
- package/dist/modal/processors/base-processor.js +287 -0
- package/dist/modal/processors/equation-processor.js +424 -0
- package/dist/modal/processors/image-processor.js +273 -0
- package/dist/modal/processors/index.js +13 -0
- package/dist/modal/processors/table-processor.js +370 -0
- package/dist/modal/service.js +378 -0
- package/dist/modal/types.js +54 -0
- package/dist/modal/utils/json-parser.js +334 -0
- package/dist/parser/index.js +19 -0
- package/dist/parser/office-parser.js +448 -0
- package/dist/parser/pdf-parser.js +463 -0
- package/dist/parser/text-parser.js +587 -0
- package/dist/parser/types.js +115 -0
- package/dist/prompts/index.js +4 -0
- package/dist/prompts/templates.js +24 -0
- package/dist/prompts/toolRouter.js +469 -0
- package/dist/prompts/types.js +1 -0
- package/dist/search/semanticSearch.js +274 -0
- package/dist/search/sqliteFts.js +212 -0
- package/dist/server.js +317 -576
- package/dist/tools/analyzeModal.js +182 -0
- package/dist/tools/callGraph.js +530 -0
- package/dist/tools/parseDocument.js +189 -0
- package/dist/tools/searchModal.js +181 -0
- package/package.json +7 -3
package/LICENSE
CHANGED
|
@@ -1,21 +1,28 @@
|
|
|
1
|
-
|
|
1
|
+
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 19 November 2007
|
|
2
3
|
|
|
3
4
|
Copyright (c) 2025 preflight-mcp contributors
|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
of
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
6
|
+
This program is free software: you can redistribute it and/or modify
|
|
7
|
+
it under the terms of the GNU Affero General Public License as published by
|
|
8
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
(at your option) any later version.
|
|
10
|
+
|
|
11
|
+
This program is distributed in the hope that it will be useful,
|
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
GNU Affero General Public License for more details.
|
|
15
|
+
|
|
16
|
+
You should have received a copy of the GNU Affero General Public License
|
|
17
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
|
|
19
|
+
Additional permission under GNU AGPL version 3 section 7:
|
|
20
|
+
|
|
21
|
+
If you modify this Program, or any covered work, by linking or combining
|
|
22
|
+
it with libraries that are released under different licenses, the licensors
|
|
23
|
+
of this Program grant you additional permission to convey the resulting work.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
For the full text of the GNU Affero General Public License v3.0,
|
|
28
|
+
see: https://www.gnu.org/licenses/agpl-3.0.txt
|