devcouncil 0.4.0 → 0.4.1
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/README.md +49 -6
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/src/devcouncil/cli/commands/watch.py +7 -10
- package/src/devcouncil/indexing/viz.py +11 -7
- package/src/devcouncil/integrations/mcp/handlers/cli_gate.py +1 -1
- package/src/devcouncil/integrations/mcp/handlers/git.py +199 -17
- package/src/devcouncil/integrations/mcp/handlers/graph.py +6 -8
- package/src/devcouncil/integrations/mcp/handlers/knowledge.py +6 -8
- package/src/devcouncil/integrations/mcp/handlers/provenance.py +25 -39
- package/src/devcouncil/integrations/mcp/handlers/read.py +30 -1
- package/src/devcouncil/integrations/mcp/handlers/runs.py +3 -18
- package/src/devcouncil/integrations/mcp/handlers/status.py +117 -32
- package/src/devcouncil/integrations/mcp/handlers/task.py +5 -17
- package/src/devcouncil/integrations/mcp/handlers/tool_specs.py +28 -10
- package/src/devcouncil/integrations/mcp/handlers/wiki.py +4 -11
- package/src/devcouncil/integrations/mcp/server.py +1 -1
- package/src/devcouncil/integrations/mcp/util.py +27 -5
- package/src/devcouncil/live/summary.py +21 -3
- package/uv.lock +26 -26
package/uv.lock
CHANGED
|
@@ -290,7 +290,7 @@ name = "cuda-bindings"
|
|
|
290
290
|
version = "13.3.1"
|
|
291
291
|
source = { registry = "https://pypi.org/simple" }
|
|
292
292
|
dependencies = [
|
|
293
|
-
{ name = "cuda-pathfinder" },
|
|
293
|
+
{ name = "cuda-pathfinder", marker = "python_full_version < '3.15' and sys_platform != 'win32'" },
|
|
294
294
|
]
|
|
295
295
|
wheels = [
|
|
296
296
|
{ url = "https://files.pythonhosted.org/packages/ce/67/5e7dba1ba576dd73da5dee894ca076ca5e959450dfff66d6d510a255d1f7/cuda_bindings-13.3.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c7855c4868aabc0cfae28abbe83d56734bdfbd08f08fc234ac1912a12858bf49", size = 6025351, upload-time = "2026-05-29T23:11:49.685Z" },
|
|
@@ -321,43 +321,43 @@ wheels = [
|
|
|
321
321
|
|
|
322
322
|
[package.optional-dependencies]
|
|
323
323
|
cublas = [
|
|
324
|
-
{ name = "nvidia-cublas", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
325
|
-
{ name = "nvidia-cuda-nvrtc", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
324
|
+
{ name = "nvidia-cublas", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
325
|
+
{ name = "nvidia-cuda-nvrtc", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
326
326
|
]
|
|
327
327
|
cudart = [
|
|
328
|
-
{ name = "nvidia-cuda-runtime", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
328
|
+
{ name = "nvidia-cuda-runtime", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
329
329
|
]
|
|
330
330
|
cufft = [
|
|
331
|
-
{ name = "nvidia-cufft", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
332
|
-
{ name = "nvidia-nvjitlink", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
331
|
+
{ name = "nvidia-cufft", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
332
|
+
{ name = "nvidia-nvjitlink", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
333
333
|
]
|
|
334
334
|
cufile = [
|
|
335
|
-
{ name = "nvidia-cufile", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
335
|
+
{ name = "nvidia-cufile", marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
336
336
|
]
|
|
337
337
|
cupti = [
|
|
338
|
-
{ name = "nvidia-cuda-cupti", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
338
|
+
{ name = "nvidia-cuda-cupti", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
339
339
|
]
|
|
340
340
|
curand = [
|
|
341
|
-
{ name = "nvidia-curand", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
341
|
+
{ name = "nvidia-curand", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
342
342
|
]
|
|
343
343
|
cusolver = [
|
|
344
|
-
{ name = "nvidia-cublas", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
345
|
-
{ name = "nvidia-cusolver", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
346
|
-
{ name = "nvidia-cusparse", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
347
|
-
{ name = "nvidia-nvjitlink", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
344
|
+
{ name = "nvidia-cublas", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
345
|
+
{ name = "nvidia-cusolver", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
346
|
+
{ name = "nvidia-cusparse", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
347
|
+
{ name = "nvidia-nvjitlink", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
348
348
|
]
|
|
349
349
|
cusparse = [
|
|
350
|
-
{ name = "nvidia-cusparse", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
351
|
-
{ name = "nvidia-nvjitlink", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
350
|
+
{ name = "nvidia-cusparse", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
351
|
+
{ name = "nvidia-nvjitlink", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
352
352
|
]
|
|
353
353
|
nvjitlink = [
|
|
354
|
-
{ name = "nvidia-nvjitlink", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
354
|
+
{ name = "nvidia-nvjitlink", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
355
355
|
]
|
|
356
356
|
nvrtc = [
|
|
357
|
-
{ name = "nvidia-cuda-nvrtc", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
357
|
+
{ name = "nvidia-cuda-nvrtc", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
358
358
|
]
|
|
359
359
|
nvtx = [
|
|
360
|
-
{ name = "nvidia-nvtx", marker = "platform_machine == 'aarch64' or platform_machine == 'x86_64'" },
|
|
360
|
+
{ name = "nvidia-nvtx", marker = "(python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" },
|
|
361
361
|
]
|
|
362
362
|
|
|
363
363
|
[[package]]
|
|
@@ -383,7 +383,7 @@ wheels = [
|
|
|
383
383
|
|
|
384
384
|
[[package]]
|
|
385
385
|
name = "devcouncil"
|
|
386
|
-
version = "0.4.
|
|
386
|
+
version = "0.4.1"
|
|
387
387
|
source = { editable = "." }
|
|
388
388
|
dependencies = [
|
|
389
389
|
{ name = "gepa" },
|
|
@@ -1052,7 +1052,7 @@ name = "nvidia-cublas"
|
|
|
1052
1052
|
version = "13.1.1.3"
|
|
1053
1053
|
source = { registry = "https://pypi.org/simple" }
|
|
1054
1054
|
dependencies = [
|
|
1055
|
-
{ name = "nvidia-cuda-nvrtc" },
|
|
1055
|
+
{ name = "nvidia-cuda-nvrtc", marker = "python_full_version >= '3.15' or sys_platform != 'win32'" },
|
|
1056
1056
|
]
|
|
1057
1057
|
wheels = [
|
|
1058
1058
|
{ url = "https://files.pythonhosted.org/packages/a7/a1/0bd24ee8c8d03adac032fd2909426a00c88f8c57961b1277ded97f91119f/nvidia_cublas-13.1.1.3-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:b7a210458267ac818974c53038fbec2e969d5c99f305ab15c72522fa9f001dd5", size = 542848918, upload-time = "2026-04-08T18:46:22.985Z" },
|
|
@@ -1091,7 +1091,7 @@ name = "nvidia-cudnn-cu13"
|
|
|
1091
1091
|
version = "9.20.0.48"
|
|
1092
1092
|
source = { registry = "https://pypi.org/simple" }
|
|
1093
1093
|
dependencies = [
|
|
1094
|
-
{ name = "nvidia-cublas" },
|
|
1094
|
+
{ name = "nvidia-cublas", marker = "python_full_version >= '3.15' or sys_platform != 'win32'" },
|
|
1095
1095
|
]
|
|
1096
1096
|
wheels = [
|
|
1097
1097
|
{ url = "https://files.pythonhosted.org/packages/56/c5/83384d846b2fd17c44bd499b36c75a45ed4f095fbbb2252294e89cea5c5c/nvidia_cudnn_cu13-9.20.0.48-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:e31454ae00094b0c55319d9d15b6fa2fc50a9e1c0f5c8c80fb75258234e731e1", size = 444574296, upload-time = "2026-03-09T19:28:27.751Z" },
|
|
@@ -1103,7 +1103,7 @@ name = "nvidia-cufft"
|
|
|
1103
1103
|
version = "12.0.0.61"
|
|
1104
1104
|
source = { registry = "https://pypi.org/simple" }
|
|
1105
1105
|
dependencies = [
|
|
1106
|
-
{ name = "nvidia-nvjitlink" },
|
|
1106
|
+
{ name = "nvidia-nvjitlink", marker = "python_full_version >= '3.15' or sys_platform != 'win32'" },
|
|
1107
1107
|
]
|
|
1108
1108
|
wheels = [
|
|
1109
1109
|
{ url = "https://files.pythonhosted.org/packages/8b/ae/f417a75c0259e85c1d2f83ca4e960289a5f814ed0cea74d18c353d3e989d/nvidia_cufft-12.0.0.61-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2708c852ef8cd89d1d2068bdbece0aa188813a0c934db3779b9b1faa8442e5f5", size = 214053554, upload-time = "2025-09-04T08:31:38.196Z" },
|
|
@@ -1133,9 +1133,9 @@ name = "nvidia-cusolver"
|
|
|
1133
1133
|
version = "12.0.4.66"
|
|
1134
1134
|
source = { registry = "https://pypi.org/simple" }
|
|
1135
1135
|
dependencies = [
|
|
1136
|
-
{ name = "nvidia-cublas" },
|
|
1137
|
-
{ name = "nvidia-cusparse" },
|
|
1138
|
-
{ name = "nvidia-nvjitlink" },
|
|
1136
|
+
{ name = "nvidia-cublas", marker = "python_full_version >= '3.15' or sys_platform != 'win32'" },
|
|
1137
|
+
{ name = "nvidia-cusparse", marker = "python_full_version >= '3.15' or sys_platform != 'win32'" },
|
|
1138
|
+
{ name = "nvidia-nvjitlink", marker = "python_full_version >= '3.15' or sys_platform != 'win32'" },
|
|
1139
1139
|
]
|
|
1140
1140
|
wheels = [
|
|
1141
1141
|
{ url = "https://files.pythonhosted.org/packages/c8/c3/b30c9e935fc01e3da443ec0116ed1b2a009bb867f5324d3f2d7e533e776b/nvidia_cusolver-12.0.4.66-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:02c2457eaa9e39de20f880f4bd8820e6a1cfb9f9a34f820eb12a155aa5bc92d2", size = 223467760, upload-time = "2025-09-04T08:33:04.222Z" },
|
|
@@ -1147,7 +1147,7 @@ name = "nvidia-cusparse"
|
|
|
1147
1147
|
version = "12.6.3.3"
|
|
1148
1148
|
source = { registry = "https://pypi.org/simple" }
|
|
1149
1149
|
dependencies = [
|
|
1150
|
-
{ name = "nvidia-nvjitlink" },
|
|
1150
|
+
{ name = "nvidia-nvjitlink", marker = "python_full_version >= '3.15' or sys_platform != 'win32'" },
|
|
1151
1151
|
]
|
|
1152
1152
|
wheels = [
|
|
1153
1153
|
{ url = "https://files.pythonhosted.org/packages/f8/94/5c26f33738ae35276672f12615a64bd008ed5be6d1ebcb23579285d960a9/nvidia_cusparse-12.6.3.3-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:80bcc4662f23f1054ee334a15c72b8940402975e0eab63178fc7e670aa59472c", size = 162155568, upload-time = "2025-09-04T08:33:42.864Z" },
|