codingest 0.2.16__tar.gz → 0.2.18__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.
- {codingest-0.2.16 → codingest-0.2.18}/Cargo.lock +12 -10
- {codingest-0.2.16 → codingest-0.2.18}/Cargo.toml +79 -9
- {codingest-0.2.16 → codingest-0.2.18}/PKG-INFO +5 -5
- {codingest-0.2.16 → codingest-0.2.18}/README.md +3 -3
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/Cargo.toml +1 -1
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/Cargo.toml +1 -1
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-mcp/Cargo.toml +1 -1
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-py/Cargo.toml +3 -3
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-py/src/lib.rs +1 -1
- {codingest-0.2.16 → codingest-0.2.18}/pyproject.toml +2 -2
- {codingest-0.2.16 → codingest-0.2.18}/LICENSE +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/codingest/__init__.py +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/codingest/__init__.pyi +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/codingest/cli.py +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/codingest/mcp_server.py +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/bin/codingest_bench.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/bin/codingest_stats.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/call_edges.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/js_workspace.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/load/edge_frames.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/load/entity_frames.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/load.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/mod.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/other_edges.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/routes/django.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/routes/fastapi.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/routes/flask.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/routes/mod.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/semantic_edges.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/builder/type_edges.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/cross_lang.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/docs/mod.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/docs/rst.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/lib.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/manifest/mod.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/models.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/agc.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/cpp.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/csharp.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/css.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/dart.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/go.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/html.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/java.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/julia.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/mod.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/php.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/python.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/r.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/registry.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/rust_lang.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/shared.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/swift.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/parsers/typescript.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/repo.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/src/rev.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/agc_apollo.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/README.md +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/agc_basic.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/cpp_extern_c.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/cpp_include.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/cross_ts_py.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/csharp_using_alias.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/dart_import.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/dart_part_of.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/docs_ext_collide.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/docs_mdx.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/dup_minified_assets.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/go_interface.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/html_js_lang_group.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/java_javadoc.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/julia_basic.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/php_group_use.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/py_basic.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/py_import.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/py_inheritance.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/py_nested_defs.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/py_routes_dup.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/py_src_layout.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/r_basic.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/rust_import.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/rust_inline_mod.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/rust_xfile.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/swift_basic.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/ts_callback.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/ts_closure_scope.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/ts_hof_binding.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/ts_monorepo.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/web_served_root.sha256 +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/grammar_kinds.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/parity.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/traversal_semantics.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/skills/codingest-code-review/SKILL.md +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/skills/codingest-code-review/references/mcp-upgrade.md +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/skills/codingest-code-review/references/public-repositories.md +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/skills/codingest-code-review/references/queries.md +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/src/code_tree_cli.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/src/lib.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/src/main.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/src/query.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/src/skill.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/src/skill_assets.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/tests/exit_codes.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-mcp/src/lib.rs +0 -0
- {codingest-0.2.16 → codingest-0.2.18}/crates/codingest-mcp/src/main.rs +0 -0
|
@@ -302,7 +302,7 @@ dependencies = [
|
|
|
302
302
|
|
|
303
303
|
[[package]]
|
|
304
304
|
name = "codingest"
|
|
305
|
-
version = "0.2.
|
|
305
|
+
version = "0.2.18"
|
|
306
306
|
dependencies = [
|
|
307
307
|
"aho-corasick",
|
|
308
308
|
"base64 0.22.1",
|
|
@@ -338,7 +338,7 @@ dependencies = [
|
|
|
338
338
|
|
|
339
339
|
[[package]]
|
|
340
340
|
name = "codingest-cli"
|
|
341
|
-
version = "0.2.
|
|
341
|
+
version = "0.2.18"
|
|
342
342
|
dependencies = [
|
|
343
343
|
"anyhow",
|
|
344
344
|
"clap",
|
|
@@ -350,7 +350,7 @@ dependencies = [
|
|
|
350
350
|
|
|
351
351
|
[[package]]
|
|
352
352
|
name = "codingest-mcp"
|
|
353
|
-
version = "0.2.
|
|
353
|
+
version = "0.2.18"
|
|
354
354
|
dependencies = [
|
|
355
355
|
"anyhow",
|
|
356
356
|
"codingest",
|
|
@@ -359,7 +359,7 @@ dependencies = [
|
|
|
359
359
|
|
|
360
360
|
[[package]]
|
|
361
361
|
name = "codingest-py"
|
|
362
|
-
version = "0.2.
|
|
362
|
+
version = "0.2.18"
|
|
363
363
|
dependencies = [
|
|
364
364
|
"codingest",
|
|
365
365
|
"codingest-cli",
|
|
@@ -1366,9 +1366,9 @@ dependencies = [
|
|
|
1366
1366
|
|
|
1367
1367
|
[[package]]
|
|
1368
1368
|
name = "kglite"
|
|
1369
|
-
version = "0.
|
|
1369
|
+
version = "0.17.3"
|
|
1370
1370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
-
checksum = "
|
|
1371
|
+
checksum = "c414d1f4ae2d7d0af3ce088b843fbc3622cac2c29467cc81bc2dc639006136e0"
|
|
1372
1372
|
dependencies = [
|
|
1373
1373
|
"bzip2",
|
|
1374
1374
|
"chrono",
|
|
@@ -1402,14 +1402,15 @@ dependencies = [
|
|
|
1402
1402
|
|
|
1403
1403
|
[[package]]
|
|
1404
1404
|
name = "kglite-mcp-server"
|
|
1405
|
-
version = "0.
|
|
1405
|
+
version = "0.17.3"
|
|
1406
1406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
-
checksum = "
|
|
1407
|
+
checksum = "764efb5d817e481d9c96302c185a71bceba6ed09a79b3c6ad2f131688c7384c9"
|
|
1408
1408
|
dependencies = [
|
|
1409
1409
|
"anyhow",
|
|
1410
1410
|
"bytes",
|
|
1411
1411
|
"chrono",
|
|
1412
1412
|
"clap",
|
|
1413
|
+
"futures",
|
|
1413
1414
|
"http-body-util",
|
|
1414
1415
|
"hyper",
|
|
1415
1416
|
"hyper-util",
|
|
@@ -1421,6 +1422,7 @@ dependencies = [
|
|
|
1421
1422
|
"serde",
|
|
1422
1423
|
"serde_json",
|
|
1423
1424
|
"tokio",
|
|
1425
|
+
"tokio-util",
|
|
1424
1426
|
"tracing",
|
|
1425
1427
|
]
|
|
1426
1428
|
|
|
@@ -1506,9 +1508,9 @@ dependencies = [
|
|
|
1506
1508
|
|
|
1507
1509
|
[[package]]
|
|
1508
1510
|
name = "mcp-methods"
|
|
1509
|
-
version = "0.4.
|
|
1511
|
+
version = "0.4.8"
|
|
1510
1512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
-
checksum = "
|
|
1513
|
+
checksum = "bff1a460997aa714ab45ad88fc5dbfcbcaee4983e84b2512d2461a6d281c2386"
|
|
1512
1514
|
dependencies = [
|
|
1513
1515
|
"anyhow",
|
|
1514
1516
|
"clap",
|
|
@@ -3,7 +3,7 @@ members = ["crates/codingest", "crates/codingest-cli", "crates/codingest-mcp", "
|
|
|
3
3
|
resolver = "2"
|
|
4
4
|
|
|
5
5
|
[workspace.package]
|
|
6
|
-
version = "0.2.
|
|
6
|
+
version = "0.2.18"
|
|
7
7
|
edition = "2021"
|
|
8
8
|
rust-version = "1.88"
|
|
9
9
|
license = "MIT"
|
|
@@ -12,9 +12,78 @@ repository = "https://github.com/kkollsga/codingest"
|
|
|
12
12
|
[workspace.dependencies]
|
|
13
13
|
base64 = "0.22"
|
|
14
14
|
sha2 = "0.11"
|
|
15
|
-
# kglite engine + MCP server — imported as crates.io libraries. The 0.
|
|
16
|
-
# floor spans
|
|
17
|
-
#
|
|
15
|
+
# kglite engine + MCP server — imported as crates.io libraries. The 0.17.3
|
|
16
|
+
# floor spans the 0.17.2 and 0.17.3 query releases. Nothing in codingest's
|
|
17
|
+
# builder source moved for either release; the changes reach users through
|
|
18
|
+
# `codingest query` and the embedded `codingest-mcp` server:
|
|
19
|
+
# * read `CALL` subqueries gain modern scope clauses plus UNION / INTERSECT /
|
|
20
|
+
# EXCEPT composition, and Cypher 25 adds FILTER, OFFSET, NODETACH DELETE,
|
|
21
|
+
# FINISH and INSERT. Procedure calls now execute per incoming row instead
|
|
22
|
+
# of reviving an empty pipeline. `PassCtx`'s new private fields are a Rust
|
|
23
|
+
# break for struct-literal callers, but codingest never constructs one.
|
|
24
|
+
# * typed and undirected relationship counts, correlated EXISTS patterns,
|
|
25
|
+
# and fused OPTIONAL MATCH / two-MATCH aggregates are faster or corrected.
|
|
26
|
+
# Those are engine query paths only. The builder's `prepare_kgl_write`,
|
|
27
|
+
# `write_kgl` and `save_graph` persistence entries are unchanged.
|
|
28
|
+
# The preceding 0.17.1 floor spanned four upstream releases: codingest took
|
|
29
|
+
# none of 0.16.23, 0.16.24
|
|
30
|
+
# or 0.17.0, so all four land here together. Nothing in our source moved for
|
|
31
|
+
# it — the workspace builds, clippys and tests clean against 0.17.1 with zero
|
|
32
|
+
# edits, and every corpus golden is byte-identical across the move. Where they
|
|
33
|
+
# land for us:
|
|
34
|
+
# * kglite-mcp-server (embedded unchanged via codingest-mcp's
|
|
35
|
+
# run_with_extensions): every route that reaches the engine — the built-in
|
|
36
|
+
# `cypher_query`, manifest `tools[].cypher` templates, recipe queries —
|
|
37
|
+
# now runs under a 180 s query deadline. It had NONE before, so a runaway
|
|
38
|
+
# query held the active graph's read lock, which stalls the single-flight
|
|
39
|
+
# rebuild gate every later tool call enters, and one bad query took the
|
|
40
|
+
# whole server with it. codingest-mcp inherits the deadline: a query past
|
|
41
|
+
# three minutes is refused instead of wedging the session. Its
|
|
42
|
+
# `cypher_query` inline preview also renders list, map, node, relationship
|
|
43
|
+
# and path cells as natural JSON (`{"start":1,"end":2,"type":"CALLS",…}`)
|
|
44
|
+
# instead of serde's externally-tagged `Value` encoding
|
|
45
|
+
# (`{"Relationship":{"rel_type":…}}`), and a nested null is `null` rather
|
|
46
|
+
# than the string `"Null"` — an agent parsing that preview text sees
|
|
47
|
+
# different field names than before; `FORMAT CSV` is unchanged. An unknown
|
|
48
|
+
# nested `applies_when` key in a skill file now skips that skill with a
|
|
49
|
+
# diagnostic instead of activating it; codingest ships no manifest and
|
|
50
|
+
# declares no skills pack, so only an operator manifest pointed at
|
|
51
|
+
# codingest-mcp can reach it.
|
|
52
|
+
# * kglite core, on paths we call. `CypherResult::to_csv()` — the renderer
|
|
53
|
+
# behind `codingest query --format csv` — preserves numeric and timestamp
|
|
54
|
+
# text precision instead of compacting it recursively, and follows RFC
|
|
55
|
+
# quoting. `ORDER BY` on a sort key an earlier `WITH` produced is honoured
|
|
56
|
+
# instead of silently returning input order, and `RETURN *` with
|
|
57
|
+
# `ORDER BY … LIMIT` returns rows instead of a `*` column of `1`s. Both are
|
|
58
|
+
# fixes, and the shipped code-review queries sort only on RETURN-defined
|
|
59
|
+
# aliases — already the correct path — so their output does not move.
|
|
60
|
+
# Loading a `.kgl` costs more: 0.17.0 normalizes legacy stored endpoint
|
|
61
|
+
# references on every complete-snapshot load and the format carries no
|
|
62
|
+
# marker proving a blob is reference-free, so an ordinary portable load
|
|
63
|
+
# measured 12–15% slower upstream. That is the Python `build()` handoff's
|
|
64
|
+
# read side, paid once per build, not query time.
|
|
65
|
+
# * kglite core, breaking for callers we are not. `RawOp` gained a
|
|
66
|
+
# `Declaration` variant, and `ClassDecl` / `QueryDiagnostics` gained fields
|
|
67
|
+
# — exhaustive-match and struct-literal breaks codingest cannot hit: it
|
|
68
|
+
# matches no `RawOp` and constructs neither. `compute_description` takes a
|
|
69
|
+
# `DescribeRequest` instead of eight positional arguments, and
|
|
70
|
+
# `wrap_for_durability` became fallible, and `load_rdf` now demands a fresh
|
|
71
|
+
# empty in-memory graph — all three uncalled here (codingest uses no
|
|
72
|
+
# `durable=` level and loads no RDF). Write-on-a-read-handle and
|
|
73
|
+
# unknown-node-type errors retype to `ArgumentError` / `InvalidArgument`,
|
|
74
|
+
# cross-type ordering comparisons return null, re-declaring an identity or
|
|
75
|
+
# title field on a populated type is refused instead of warned, Python
|
|
76
|
+
# query parameters reject integers outside signed 64-bit, close/save
|
|
77
|
+
# lifecycle tightens and query handles capture a 180 s default timeout:
|
|
78
|
+
# each reaches our users through the separately-installed kglite wheel, on
|
|
79
|
+
# the graph object `build()` hands back, never through a codingest call.
|
|
80
|
+
# 0.16.23's blueprint input formats (`files:`, `frames=`, the delimited and
|
|
81
|
+
# xlsx readers) are surface codingest declares nothing into.
|
|
82
|
+
# `save_graph` / `write_kgl` / `prepare_kgl_write` — every persistence entry
|
|
83
|
+
# we call — are byte-identical, and the goldens prove it.
|
|
84
|
+
# It sits on the 0.16.22
|
|
85
|
+
# floor, which spanned two upstream releases: codingest never took 0.16.21, so
|
|
86
|
+
# 0.16.21 and 0.16.22 landed here together. Where they landed for us:
|
|
18
87
|
# * kglite-mcp-server (embedded unchanged via codingest-mcp's
|
|
19
88
|
# run_with_extensions): a `skills:` pack declared in a manifest but missing
|
|
20
89
|
# on disk now FAILS the boot. It used to fail the whole registry build and
|
|
@@ -364,9 +433,10 @@ sha2 = "0.11"
|
|
|
364
433
|
# which kglite 0.15.14 and earlier refuse by version number. Because
|
|
365
434
|
# `codingest.build()` writes the bytes with the Rust engine compiled in here and
|
|
366
435
|
# reads them back through the separately-installed Python `kglite` wheel, the
|
|
367
|
-
# two sides must be on the same side of that break — hence
|
|
368
|
-
#
|
|
369
|
-
# a hard failure with `FileFormatError`.
|
|
436
|
+
# two sides must be on the same side of that break — hence pyproject.toml
|
|
437
|
+
# carries a BOUNDED range rather than a bare `>=`, and hence a reader on 0.15.x
|
|
438
|
+
# is not "old but workable", it is a hard failure with `FileFormatError`. (The
|
|
439
|
+
# range itself moves every floor bump; it is stated once, in pyproject.toml.)
|
|
370
440
|
# 0.16.0 also removed `DirGraph::enable_columnar` from the public API (every
|
|
371
441
|
# graph is columnar from its first node now); the two sites that open-coded
|
|
372
442
|
# `prepare_save` + `enable_columnar` before a `.kgl` write moved to the
|
|
@@ -429,8 +499,8 @@ sha2 = "0.11"
|
|
|
429
499
|
# and no disk storage. Neither 0.15.7 nor 0.15.8 changes the `kglite::api` we
|
|
430
500
|
# call, graph output, property encoding, or `.kgl` serialization.
|
|
431
501
|
# Keep both libraries aligned so the graph and server share one engine release.
|
|
432
|
-
kglite = { version = "0.
|
|
433
|
-
kglite-mcp-server = { version = "0.
|
|
502
|
+
kglite = { version = "0.17.3", default-features = false }
|
|
503
|
+
kglite-mcp-server = { version = "0.17.3", default-features = false }
|
|
434
504
|
|
|
435
505
|
# Dependency debuginfo capped at line tables (kglite coordination, 2026-08-31,
|
|
436
506
|
# after unbounded debug trees filled the build-cache disk to zero): a
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codingest
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.18
|
|
4
4
|
Classifier: Development Status :: 3 - Alpha
|
|
5
5
|
Classifier: Intended Audience :: Developers
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
12
12
|
Classifier: Programming Language :: Rust
|
|
13
13
|
Classifier: Topic :: Software Development
|
|
14
14
|
Classifier: Topic :: Software Development :: Libraries
|
|
15
|
-
Requires-Dist: kglite>=0.
|
|
15
|
+
Requires-Dist: kglite>=0.17.3,<0.18
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Summary: Build fast, queryable code graphs for AI agents, MCP code review, and local or GitHub repository analysis.
|
|
18
18
|
Keywords: ai-agents,mcp,code-review,knowledge-graph,code-analysis,github,tree-sitter,cypher
|
|
@@ -192,7 +192,7 @@ codingest skill install # code-review Agent Skill
|
|
|
192
192
|
```
|
|
193
193
|
|
|
194
194
|
The wheel bundles every grammar plus the `codingest` and `codingest-mcp`
|
|
195
|
-
commands. KGLite ≥0.
|
|
195
|
+
commands. KGLite ≥0.17.3 is installed automatically as the query/storage
|
|
196
196
|
engine; its MCP server and the transitive `mcp-methods` framework power the
|
|
197
197
|
builder-aware Codingest server. Nothing else needs to be installed.
|
|
198
198
|
|
|
@@ -205,7 +205,7 @@ Python prerequisites.
|
|
|
205
205
|
```toml
|
|
206
206
|
[dependencies]
|
|
207
207
|
codingest = "0.2"
|
|
208
|
-
kglite = "0.
|
|
208
|
+
kglite = "0.17.3"
|
|
209
209
|
```
|
|
210
210
|
|
|
211
211
|
```rust
|
|
@@ -277,7 +277,7 @@ diagnostic.
|
|
|
277
277
|
## Dependency policy
|
|
278
278
|
|
|
279
279
|
`kglite` and `kglite-mcp-server` use matching crates.io requirements with a
|
|
280
|
-
0.
|
|
280
|
+
0.17.3 minimum and a shared lockfile. This keeps the builder, persistence
|
|
281
281
|
handoff, and embedded MCP server on one compatible engine patch line.
|
|
282
282
|
|
|
283
283
|
## Parity with the (now-removed) in-tree component
|
|
@@ -165,7 +165,7 @@ codingest skill install # code-review Agent Skill
|
|
|
165
165
|
```
|
|
166
166
|
|
|
167
167
|
The wheel bundles every grammar plus the `codingest` and `codingest-mcp`
|
|
168
|
-
commands. KGLite ≥0.
|
|
168
|
+
commands. KGLite ≥0.17.3 is installed automatically as the query/storage
|
|
169
169
|
engine; its MCP server and the transitive `mcp-methods` framework power the
|
|
170
170
|
builder-aware Codingest server. Nothing else needs to be installed.
|
|
171
171
|
|
|
@@ -178,7 +178,7 @@ Python prerequisites.
|
|
|
178
178
|
```toml
|
|
179
179
|
[dependencies]
|
|
180
180
|
codingest = "0.2"
|
|
181
|
-
kglite = "0.
|
|
181
|
+
kglite = "0.17.3"
|
|
182
182
|
```
|
|
183
183
|
|
|
184
184
|
```rust
|
|
@@ -250,7 +250,7 @@ diagnostic.
|
|
|
250
250
|
## Dependency policy
|
|
251
251
|
|
|
252
252
|
`kglite` and `kglite-mcp-server` use matching crates.io requirements with a
|
|
253
|
-
0.
|
|
253
|
+
0.17.3 minimum and a shared lockfile. This keeps the builder, persistence
|
|
254
254
|
handoff, and embedded MCP server on one compatible engine patch line.
|
|
255
255
|
|
|
256
256
|
## Parity with the (now-removed) in-tree component
|
|
@@ -10,7 +10,7 @@ keywords = ["knowledge-graph", "code-analysis", "tree-sitter", "cypher", "kglite
|
|
|
10
10
|
categories = ["development-tools", "parser-implementations"]
|
|
11
11
|
|
|
12
12
|
# Requires the kglite 0.15 engine API (`kglite::api::code_entities`); the
|
|
13
|
-
# workspace pins the current engine floor (0.
|
|
13
|
+
# workspace pins the current engine floor (0.17.3).
|
|
14
14
|
|
|
15
15
|
[lib]
|
|
16
16
|
name = "codingest"
|
|
@@ -14,7 +14,7 @@ name = "codingest"
|
|
|
14
14
|
path = "src/main.rs"
|
|
15
15
|
|
|
16
16
|
[dependencies]
|
|
17
|
-
codingest = { version = "0.2.
|
|
17
|
+
codingest = { version = "0.2.18", path = "../codingest" }
|
|
18
18
|
kglite = { workspace = true }
|
|
19
19
|
anyhow = "1.0.104"
|
|
20
20
|
clap = { version = "4.6.4", features = ["derive"] }
|
|
@@ -42,7 +42,7 @@ doctest = false
|
|
|
42
42
|
pyo3 = { version = "0.29" }
|
|
43
43
|
# The engine-free builder (parsers, call/type/route edges, rev merge, repo
|
|
44
44
|
# clone, manifest reader). Docs pass gated by this crate's `docs` feature.
|
|
45
|
-
codingest = { version = "0.2.
|
|
45
|
+
codingest = { version = "0.2.18", path = "../codingest", default-features = false }
|
|
46
46
|
# `.kgl` persistence (`kglite::api::io::save_graph`) for the serialize half of
|
|
47
47
|
# the build-then-load handoff, plus the `DirGraph` type the builder returns.
|
|
48
48
|
kglite = { workspace = true }
|
|
@@ -53,9 +53,9 @@ tempfile = "3.27.0"
|
|
|
53
53
|
# through `_run_cli`, so `pip install codingest` also installs the `codingest`
|
|
54
54
|
# command without a second wheel or a duplicated builder build. Mirrors
|
|
55
55
|
# kglite-py's `kglite-cli` bundling.
|
|
56
|
-
codingest-cli = { version = "0.2.
|
|
56
|
+
codingest-cli = { version = "0.2.18", path = "../codingest-cli" }
|
|
57
57
|
# Source-building MCP composition. The graph server and generic MCP lifecycle
|
|
58
58
|
# remain owned by its existing kglite-mcp-server -> mcp-methods Rust dependency
|
|
59
59
|
# chain; linking this thin library into the extension gives pip users the same
|
|
60
60
|
# builder-aware server as the standalone `codingest-mcp` binary.
|
|
61
|
-
codingest-mcp = { version = "0.2.
|
|
61
|
+
codingest-mcp = { version = "0.2.18", path = "../codingest-mcp" }
|
|
@@ -74,7 +74,7 @@ fn load_via_kglite(py: Python<'_>, path: &Path) -> PyResult<Py<PyAny>> {
|
|
|
74
74
|
PyRuntimeError::new_err(format!(
|
|
75
75
|
"codingest.build() returns a kglite.KnowledgeGraph, but importing \
|
|
76
76
|
`kglite` failed ({e}). Install it: `pip install \
|
|
77
|
-
'kglite>=0.
|
|
77
|
+
'kglite>=0.17.3,<0.18'`."
|
|
78
78
|
))
|
|
79
79
|
})?;
|
|
80
80
|
let graph = kglite.call_method1("load", (path.to_string_lossy().as_ref(),))?;
|
|
@@ -42,9 +42,9 @@ dynamic = ["version"]
|
|
|
42
42
|
# minor releases (e.g. the v3->v4 break, which refuses old files outright), so
|
|
43
43
|
# pip must never be free to pair our writer with a reader from a different
|
|
44
44
|
# minor. This range therefore mirrors the Cargo semver range for the pin above
|
|
45
|
-
# (`version = "0.
|
|
45
|
+
# (`version = "0.17.3"` == `>=0.17.3,<0.18.0`) exactly — bump both together.
|
|
46
46
|
dependencies = [
|
|
47
|
-
"kglite>=0.
|
|
47
|
+
"kglite>=0.17.3,<0.18",
|
|
48
48
|
]
|
|
49
49
|
|
|
50
50
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/csharp_using_alias.sha256
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/docs_ext_collide.sha256
RENAMED
|
File without changes
|
|
File without changes
|
{codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/dup_minified_assets.sha256
RENAMED
|
File without changes
|
|
File without changes
|
{codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/html_js_lang_group.sha256
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codingest-0.2.16 → codingest-0.2.18}/crates/codingest/tests/goldens/ts_closure_scope.sha256
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codingest-0.2.16 → codingest-0.2.18}/crates/codingest-cli/skills/codingest-code-review/SKILL.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|