dekko 0.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.
- dekko-0.7.0/.claude-plugin/marketplace.json +18 -0
- dekko-0.7.0/.claude-plugin/plugin.json +8 -0
- dekko-0.7.0/.dekko/MAP.md +3079 -0
- dekko-0.7.0/.dekko/map.json +17380 -0
- dekko-0.7.0/.github/workflows/release.yml +33 -0
- dekko-0.7.0/.gitignore +9 -0
- dekko-0.7.0/.mcp.json +9 -0
- dekko-0.7.0/CHANGELOG.md +201 -0
- dekko-0.7.0/PKG-INFO +238 -0
- dekko-0.7.0/README.md +214 -0
- dekko-0.7.0/commands/map.md +29 -0
- dekko-0.7.0/install.sh +28 -0
- dekko-0.7.0/pyproject.toml +73 -0
- dekko-0.7.0/src/dekko/__init__.py +1 -0
- dekko-0.7.0/src/dekko/cache.py +167 -0
- dekko-0.7.0/src/dekko/cli.py +1086 -0
- dekko-0.7.0/src/dekko/contextpack.py +283 -0
- dekko-0.7.0/src/dekko/diff.py +253 -0
- dekko-0.7.0/src/dekko/export.py +134 -0
- dekko-0.7.0/src/dekko/extractor.py +798 -0
- dekko-0.7.0/src/dekko/extractor_generic.py +239 -0
- dekko-0.7.0/src/dekko/languages.py +526 -0
- dekko-0.7.0/src/dekko/mapfile.py +216 -0
- dekko-0.7.0/src/dekko/model.py +127 -0
- dekko-0.7.0/src/dekko/query.py +222 -0
- dekko-0.7.0/src/dekko/render_json.py +55 -0
- dekko-0.7.0/src/dekko/render_md.py +207 -0
- dekko-0.7.0/src/dekko/resolver.py +227 -0
- dekko-0.7.0/src/dekko/server.py +496 -0
- dekko-0.7.0/src/dekko/stats.py +117 -0
- dekko-0.7.0/src/dekko/trace.py +197 -0
- dekko-0.7.0/src/dekko/unused.py +172 -0
- dekko-0.7.0/src/dekko/walker.py +194 -0
- dekko-0.7.0/tests/conftest.py +29 -0
- dekko-0.7.0/tests/fixtures/c/main.c +6 -0
- dekko-0.7.0/tests/fixtures/c/math.c +9 -0
- dekko-0.7.0/tests/fixtures/cpp/shapes.cpp +24 -0
- dekko-0.7.0/tests/fixtures/go/srv.go +24 -0
- dekko-0.7.0/tests/fixtures/java/App.java +20 -0
- dekko-0.7.0/tests/fixtures/js/app.js +9 -0
- dekko-0.7.0/tests/fixtures/js/lib.js +13 -0
- dekko-0.7.0/tests/fixtures/python/main.py +11 -0
- dekko-0.7.0/tests/fixtures/python/util.py +10 -0
- dekko-0.7.0/tests/fixtures/ruby/store.rb +20 -0
- dekko-0.7.0/tests/fixtures/rust/lib.rs +18 -0
- dekko-0.7.0/tests/fixtures/rust/main.rs +9 -0
- dekko-0.7.0/tests/fixtures/ts/svc.ts +21 -0
- dekko-0.7.0/tests/test_cache.py +148 -0
- dekko-0.7.0/tests/test_cli.py +158 -0
- dekko-0.7.0/tests/test_contextpack.py +103 -0
- dekko-0.7.0/tests/test_diff.py +118 -0
- dekko-0.7.0/tests/test_export.py +71 -0
- dekko-0.7.0/tests/test_extractor.py +123 -0
- dekko-0.7.0/tests/test_generic.py +37 -0
- dekko-0.7.0/tests/test_languages.py +112 -0
- dekko-0.7.0/tests/test_mapfile.py +84 -0
- dekko-0.7.0/tests/test_python_floor.py +53 -0
- dekko-0.7.0/tests/test_query.py +94 -0
- dekko-0.7.0/tests/test_resolver.py +132 -0
- dekko-0.7.0/tests/test_server.py +225 -0
- dekko-0.7.0/tests/test_stats.py +76 -0
- dekko-0.7.0/tests/test_status.py +79 -0
- dekko-0.7.0/tests/test_trace.py +125 -0
- dekko-0.7.0/tests/test_unused.py +143 -0
- dekko-0.7.0/tests/test_version.py +51 -0
- dekko-0.7.0/tests/test_walker.py +39 -0
- dekko-0.7.0/uv.lock +264 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dekko",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "Austin Ahlijian",
|
|
5
|
+
"email": "aahlijia@gmail.com"
|
|
6
|
+
},
|
|
7
|
+
"metadata": {
|
|
8
|
+
"description": "dekko — static code map generator for Claude Code",
|
|
9
|
+
"version": "0.7.0"
|
|
10
|
+
},
|
|
11
|
+
"plugins": [
|
|
12
|
+
{
|
|
13
|
+
"name": "dekko",
|
|
14
|
+
"description": "Adds /map: maps every file, function, type, and call edge without spending model tokens on parsing.",
|
|
15
|
+
"source": "./"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dekko",
|
|
3
|
+
"description": "Adds a /map command that programmatically scans the repository: every code file, function, parameter, type, return type, and the call relationships between functions. Writes MAP.md and map.json without spending model tokens on parsing.",
|
|
4
|
+
"version": "0.7.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Austin Ahlijian"
|
|
7
|
+
}
|
|
8
|
+
}
|