hypergumbo 2.6.0__tar.gz → 2.7.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.
- {hypergumbo-2.6.0 → hypergumbo-2.7.0}/.gitignore +1 -0
- {hypergumbo-2.6.0 → hypergumbo-2.7.0}/PKG-INFO +10 -9
- {hypergumbo-2.6.0 → hypergumbo-2.7.0}/README.md +5 -4
- {hypergumbo-2.6.0 → hypergumbo-2.7.0}/pyproject.toml +5 -5
- {hypergumbo-2.6.0 → hypergumbo-2.7.0}/src/hypergumbo/__init__.py +0 -0
- {hypergumbo-2.6.0 → hypergumbo-2.7.0}/src/hypergumbo/__main__.py +0 -0
- {hypergumbo-2.6.0 → hypergumbo-2.7.0}/tests/test_meta.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hypergumbo
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.7.0
|
|
4
4
|
Summary: Local-first repo behavior map generator
|
|
5
5
|
Author: Hypergumbo contributors
|
|
6
6
|
License: AGPL-3.0-or-later
|
|
@@ -10,10 +10,10 @@ Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or l
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
12
12
|
Requires-Python: >=3.10
|
|
13
|
-
Requires-Dist: hypergumbo-core==2.
|
|
14
|
-
Requires-Dist: hypergumbo-lang-common==2.
|
|
15
|
-
Requires-Dist: hypergumbo-lang-extended1==2.
|
|
16
|
-
Requires-Dist: hypergumbo-lang-mainstream==2.
|
|
13
|
+
Requires-Dist: hypergumbo-core==2.7.0
|
|
14
|
+
Requires-Dist: hypergumbo-lang-common==2.7.0
|
|
15
|
+
Requires-Dist: hypergumbo-lang-extended1==2.7.0
|
|
16
|
+
Requires-Dist: hypergumbo-lang-mainstream==2.7.0
|
|
17
17
|
Provides-Extra: dev
|
|
18
18
|
Requires-Dist: bandit~=1.9.3; extra == 'dev'
|
|
19
19
|
Requires-Dist: check-jsonschema~=0.36.1; extra == 'dev'
|
|
@@ -180,7 +180,7 @@ See `hypergumbo --help` for all options.
|
|
|
180
180
|
## What It Understands
|
|
181
181
|
|
|
182
182
|
- **Language analyzers**: Python, JS/TS, Java, Rust, Go, C/C++, and [many more](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/LANGUAGES.md)
|
|
183
|
-
- **
|
|
183
|
+
- **Linkers**: Tier 2 edge-recovery passes across four subcategories — Protocol (HTTP, WebSocket, message queues, SQL), Bridge (JNI, wasm_bindgen, Tauri IPC, language-pair FFI), Framework (gRPC, GraphQL, React components, DI resolution, ORM), Infrastructure (containment, inheritance, module imports). [Full catalogue](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/LINKERS.md).
|
|
184
184
|
- **Framework patterns**: FastAPI, Django, Rails, Spring Boot, Phoenix, Express, and [many more](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/FRAMEWORKS.md)
|
|
185
185
|
- **I/O boundary detection**: Maps every call chain that reaches the filesystem, network, subprocesses, or environment — across FFI boundaries
|
|
186
186
|
- **Taint-flow analysis**: Traces data from sensitive sources (crypto keys, plaintext) to sinks (filesystem, network), with sanitizer awareness
|
|
@@ -204,7 +204,7 @@ All analyzers produce the same IR types:
|
|
|
204
204
|
- **Edge**: A relationship between symbols (calls, imports, extends, implements)
|
|
205
205
|
- **Span**: Source location (file, line, column)
|
|
206
206
|
|
|
207
|
-
This uniform IR is what allows all language analyzers and
|
|
207
|
+
This uniform IR is what allows all language analyzers and linkers (Protocol / Bridge / Framework / Infrastructure — see [ADR-0003-ext](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/adr/0003-linker-subcategory-restoration.md)) to work together coherently.
|
|
208
208
|
|
|
209
209
|
## Architecture
|
|
210
210
|
|
|
@@ -216,7 +216,7 @@ packages/
|
|
|
216
216
|
│ ├── ir.py # Symbol, Edge, Span
|
|
217
217
|
│ ├── sketch.py # Token-budgeted Markdown
|
|
218
218
|
│ ├── slice.py # Subgraph extraction
|
|
219
|
-
│ ├── linkers/ #
|
|
219
|
+
│ ├── linkers/ # Tier 2 edge-recovery passes (Protocol/Bridge/Framework/Infrastructure)
|
|
220
220
|
│ └── frameworks/ # Framework detection (YAML patterns)
|
|
221
221
|
├── hypergumbo-lang-mainstream/ # Python, JS, Java, Go, Rust, etc.
|
|
222
222
|
├── hypergumbo-lang-common/ # Haskell, Elixir, GraphQL, etc.
|
|
@@ -251,11 +251,12 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for PR workflow (including fork-based wor
|
|
|
251
251
|
- [docs/USE-CASES.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/USE-CASES.md) — Practical workflows and examples
|
|
252
252
|
- [CHANGELOG.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/CHANGELOG.md) — Implementation history
|
|
253
253
|
- [docs/LANGUAGES.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/LANGUAGES.md) — Supported languages
|
|
254
|
-
- [docs/LINKERS.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/LINKERS.md) —
|
|
254
|
+
- [docs/LINKERS.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/LINKERS.md) — Linkers catalogue (Protocol / Bridge / Framework / Infrastructure)
|
|
255
255
|
- [docs/FRAMEWORKS.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/FRAMEWORKS.md) — Framework patterns
|
|
256
256
|
- [docs/hypergumbo-spec.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/hypergumbo-spec.md) — Detailed specification
|
|
257
257
|
- [docs/CITATIONS.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/CITATIONS.md) — Paper citations for embedding models
|
|
258
258
|
- [docs/CACHE.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/CACHE.md) — Caching architecture
|
|
259
|
+
- [docs/agent-supervisor.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/agent-supervisor.md) — Operator guide for `scripts/agent-supervisor` (the tmux-session watchdog for autonomous agents)
|
|
259
260
|
- [SECURITY.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/SECURITY.md) — Vulnerability reporting
|
|
260
261
|
- [hypergumbo-tracker README](packages/hypergumbo-tracker/README.md) — Standalone tracker for AI agent governance
|
|
261
262
|
|
|
@@ -150,7 +150,7 @@ See `hypergumbo --help` for all options.
|
|
|
150
150
|
## What It Understands
|
|
151
151
|
|
|
152
152
|
- **Language analyzers**: Python, JS/TS, Java, Rust, Go, C/C++, and [many more](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/LANGUAGES.md)
|
|
153
|
-
- **
|
|
153
|
+
- **Linkers**: Tier 2 edge-recovery passes across four subcategories — Protocol (HTTP, WebSocket, message queues, SQL), Bridge (JNI, wasm_bindgen, Tauri IPC, language-pair FFI), Framework (gRPC, GraphQL, React components, DI resolution, ORM), Infrastructure (containment, inheritance, module imports). [Full catalogue](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/LINKERS.md).
|
|
154
154
|
- **Framework patterns**: FastAPI, Django, Rails, Spring Boot, Phoenix, Express, and [many more](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/FRAMEWORKS.md)
|
|
155
155
|
- **I/O boundary detection**: Maps every call chain that reaches the filesystem, network, subprocesses, or environment — across FFI boundaries
|
|
156
156
|
- **Taint-flow analysis**: Traces data from sensitive sources (crypto keys, plaintext) to sinks (filesystem, network), with sanitizer awareness
|
|
@@ -174,7 +174,7 @@ All analyzers produce the same IR types:
|
|
|
174
174
|
- **Edge**: A relationship between symbols (calls, imports, extends, implements)
|
|
175
175
|
- **Span**: Source location (file, line, column)
|
|
176
176
|
|
|
177
|
-
This uniform IR is what allows all language analyzers and
|
|
177
|
+
This uniform IR is what allows all language analyzers and linkers (Protocol / Bridge / Framework / Infrastructure — see [ADR-0003-ext](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/adr/0003-linker-subcategory-restoration.md)) to work together coherently.
|
|
178
178
|
|
|
179
179
|
## Architecture
|
|
180
180
|
|
|
@@ -186,7 +186,7 @@ packages/
|
|
|
186
186
|
│ ├── ir.py # Symbol, Edge, Span
|
|
187
187
|
│ ├── sketch.py # Token-budgeted Markdown
|
|
188
188
|
│ ├── slice.py # Subgraph extraction
|
|
189
|
-
│ ├── linkers/ #
|
|
189
|
+
│ ├── linkers/ # Tier 2 edge-recovery passes (Protocol/Bridge/Framework/Infrastructure)
|
|
190
190
|
│ └── frameworks/ # Framework detection (YAML patterns)
|
|
191
191
|
├── hypergumbo-lang-mainstream/ # Python, JS, Java, Go, Rust, etc.
|
|
192
192
|
├── hypergumbo-lang-common/ # Haskell, Elixir, GraphQL, etc.
|
|
@@ -221,11 +221,12 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for PR workflow (including fork-based wor
|
|
|
221
221
|
- [docs/USE-CASES.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/USE-CASES.md) — Practical workflows and examples
|
|
222
222
|
- [CHANGELOG.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/CHANGELOG.md) — Implementation history
|
|
223
223
|
- [docs/LANGUAGES.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/LANGUAGES.md) — Supported languages
|
|
224
|
-
- [docs/LINKERS.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/LINKERS.md) —
|
|
224
|
+
- [docs/LINKERS.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/LINKERS.md) — Linkers catalogue (Protocol / Bridge / Framework / Infrastructure)
|
|
225
225
|
- [docs/FRAMEWORKS.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/FRAMEWORKS.md) — Framework patterns
|
|
226
226
|
- [docs/hypergumbo-spec.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/hypergumbo-spec.md) — Detailed specification
|
|
227
227
|
- [docs/CITATIONS.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/CITATIONS.md) — Paper citations for embedding models
|
|
228
228
|
- [docs/CACHE.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/CACHE.md) — Caching architecture
|
|
229
|
+
- [docs/agent-supervisor.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/docs/agent-supervisor.md) — Operator guide for `scripts/agent-supervisor` (the tmux-session watchdog for autonomous agents)
|
|
229
230
|
- [SECURITY.md](https://codeberg.org/iterabloom/hypergumbo/src/branch/dev/SECURITY.md) — Vulnerability reporting
|
|
230
231
|
- [hypergumbo-tracker README](packages/hypergumbo-tracker/README.md) — Standalone tracker for AI agent governance
|
|
231
232
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "hypergumbo"
|
|
7
|
-
version = "2.
|
|
7
|
+
version = "2.7.0"
|
|
8
8
|
description = "Local-first repo behavior map generator"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -19,10 +19,10 @@ classifiers = [
|
|
|
19
19
|
]
|
|
20
20
|
dependencies = [
|
|
21
21
|
# Meta-package that pulls in all hypergumbo components
|
|
22
|
-
"hypergumbo-core==2.
|
|
23
|
-
"hypergumbo-lang-mainstream==2.
|
|
24
|
-
"hypergumbo-lang-common==2.
|
|
25
|
-
"hypergumbo-lang-extended1==2.
|
|
22
|
+
"hypergumbo-core==2.7.0",
|
|
23
|
+
"hypergumbo-lang-mainstream==2.7.0",
|
|
24
|
+
"hypergumbo-lang-common==2.7.0",
|
|
25
|
+
"hypergumbo-lang-extended1==2.7.0",
|
|
26
26
|
]
|
|
27
27
|
|
|
28
28
|
[project.optional-dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|