open-source-network 2.0.0__tar.gz
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.
- open_source_network-2.0.0/.gitignore +19 -0
- open_source_network-2.0.0/LICENSE +21 -0
- open_source_network-2.0.0/PKG-INFO +22 -0
- open_source_network-2.0.0/README.md +0 -0
- open_source_network-2.0.0/data/README.md +33 -0
- open_source_network-2.0.0/node_modules/@types/trusted-types/LICENSE +21 -0
- open_source_network-2.0.0/node_modules/@types/trusted-types/README.md +15 -0
- open_source_network-2.0.0/node_modules/dompurify/LICENSE +568 -0
- open_source_network-2.0.0/node_modules/dompurify/README.md +479 -0
- open_source_network-2.0.0/node_modules/highlight.js/LICENSE +29 -0
- open_source_network-2.0.0/node_modules/highlight.js/README.md +521 -0
- open_source_network-2.0.0/node_modules/marked/README.md +106 -0
- open_source_network-2.0.0/node_modules/md-spawn/README.md +108 -0
- open_source_network-2.0.0/oss_neural_match/__init__.py +2 -0
- open_source_network-2.0.0/oss_neural_match/data/__init__.py +0 -0
- open_source_network-2.0.0/oss_neural_match/data/synonyms.json +588 -0
- open_source_network-2.0.0/oss_neural_match/db.json +24610 -0
- open_source_network-2.0.0/oss_neural_match/engine/__init__.py +30 -0
- open_source_network-2.0.0/oss_neural_match/engine/embeddings.py +557 -0
- open_source_network-2.0.0/oss_neural_match/engine/explain.py +965 -0
- open_source_network-2.0.0/oss_neural_match/engine/graph.py +625 -0
- open_source_network-2.0.0/oss_neural_match/engine/health.py +698 -0
- open_source_network-2.0.0/oss_neural_match/engine/scoring.py +691 -0
- open_source_network-2.0.0/oss_neural_match/server.py +1242 -0
- open_source_network-2.0.0/pyproject.toml +58 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
*.pyc
|
|
3
|
+
.pytest_cache/
|
|
4
|
+
*.egg-info/
|
|
5
|
+
dist/
|
|
6
|
+
build/
|
|
7
|
+
.env
|
|
8
|
+
data/embeddings.npy
|
|
9
|
+
data/embedding_index.json
|
|
10
|
+
data/signals.json
|
|
11
|
+
data/security.json
|
|
12
|
+
website/node_modules/
|
|
13
|
+
website/dist/
|
|
14
|
+
website/.astro/
|
|
15
|
+
api/node_modules/
|
|
16
|
+
api/dist/
|
|
17
|
+
.wrangler/
|
|
18
|
+
.venv/
|
|
19
|
+
venv/
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 KingHippo
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: open-source-network
|
|
3
|
+
Version: 2.0.0
|
|
4
|
+
Summary: Open Source Network — 244-tool open-source intelligence engine for Claude Code
|
|
5
|
+
Project-URL: Homepage, https://oss-neural-match.pages.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/TheKingHippopotamus/Open_source_network
|
|
7
|
+
Author-email: KingHippo <king.hippopotamus@yahoo.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: claude,claude-code,developer-tools,mcp,open-source,stack-builder,tool-discovery
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
19
|
+
Requires-Python: >=3.11
|
|
20
|
+
Requires-Dist: mcp[cli]>=1.9.0
|
|
21
|
+
Requires-Dist: numpy>=1.24.0
|
|
22
|
+
Requires-Dist: pydantic>=2.0.0
|
|
File without changes
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# data/
|
|
2
|
+
|
|
3
|
+
This directory holds all runtime data files for Open Source Network.
|
|
4
|
+
|
|
5
|
+
## Files
|
|
6
|
+
|
|
7
|
+
### db.json (curated, committed)
|
|
8
|
+
The main tool database. Every record has 51 fields covering metadata, tags, use cases, anti-patterns, GitHub stats, and more. Edit this to add or improve tools. Do not auto-generate this file.
|
|
9
|
+
|
|
10
|
+
### synonyms.json (curated, committed)
|
|
11
|
+
Technical synonym corpus used at query time to expand searches. Maps terms to their equivalents (e.g. `"k8s" -> ["kubernetes"]`). Bidirectional entries are maintained manually.
|
|
12
|
+
|
|
13
|
+
### embeddings.npy (generated, gitignored)
|
|
14
|
+
Pre-computed dense embedding vectors for all tools. Shape: `(N, D)` float32 array where N is the number of tools and D is the embedding dimension. Generated by running the embedding script. Not committed — too large and regenerable.
|
|
15
|
+
|
|
16
|
+
### embedding_index.json (generated, gitignored)
|
|
17
|
+
Slug-to-row mapping for the embeddings array. Format: `{"slug": row_index, ...}`. Generated alongside `embeddings.npy`. Not committed.
|
|
18
|
+
|
|
19
|
+
### signals.json (auto-refreshed, gitignored)
|
|
20
|
+
Live GitHub signals: stars, forks, open issues, last commit date. Fetched weekly by the refresh script. Not committed — changes too frequently and contains data that goes stale.
|
|
21
|
+
|
|
22
|
+
### security.json (auto-refreshed, gitignored)
|
|
23
|
+
Security advisory data per tool. Fetched from GitHub Security Advisories. Not committed.
|
|
24
|
+
|
|
25
|
+
## Regenerating derived files
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
# Rebuild embeddings (requires sentence-transformers)
|
|
29
|
+
python scripts/build_embeddings.py
|
|
30
|
+
|
|
31
|
+
# Refresh live signals
|
|
32
|
+
python scripts/refresh_signals.py
|
|
33
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Microsoft Corporation.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Installation
|
|
2
|
+
> `npm install --save @types/trusted-types`
|
|
3
|
+
|
|
4
|
+
# Summary
|
|
5
|
+
This package contains type definitions for trusted-types (https://github.com/WICG/trusted-types).
|
|
6
|
+
|
|
7
|
+
# Details
|
|
8
|
+
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/trusted-types.
|
|
9
|
+
|
|
10
|
+
### Additional Details
|
|
11
|
+
* Last updated: Mon, 20 Nov 2023 23:36:24 GMT
|
|
12
|
+
* Dependencies: none
|
|
13
|
+
|
|
14
|
+
# Credits
|
|
15
|
+
These definitions were written by [Jakub Vrana](https://github.com/vrana), [Damien Engels](https://github.com/engelsdamien), [Emanuel Tesar](https://github.com/siegrift), [Bjarki](https://github.com/bjarkler), and [Sebastian Silbermann](https://github.com/eps1lon).
|