claude-smart 0.2.26 → 0.2.28
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 +1 -1
- package/bin/claude-smart.js +250 -2
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/hooks/codex-hooks.json +7 -7
- package/plugin/pyproject.toml +2 -1
- package/plugin/scripts/_codex_env.sh +1 -0
- package/plugin/scripts/backend-service.sh +50 -7
- package/plugin/scripts/codex-claude-compat.py +144 -0
- package/plugin/scripts/codex-hook.js +386 -0
- package/plugin/scripts/ensure-plugin-root.sh +3 -2
- package/plugin/scripts/smart-install.sh +0 -1
- package/plugin/src/claude_smart/cli.py +6 -1
- package/plugin/src/claude_smart/events/stop.py +16 -1
- package/plugin/src/claude_smart/internal_call.py +30 -0
- package/plugin/src/claude_smart/optimizer_assistant.py +86 -6
- package/plugin/uv.lock +12 -1
package/plugin/uv.lock
CHANGED
|
@@ -419,10 +419,11 @@ wheels = [
|
|
|
419
419
|
|
|
420
420
|
[[package]]
|
|
421
421
|
name = "claude-smart"
|
|
422
|
-
version = "0.2.
|
|
422
|
+
version = "0.2.28"
|
|
423
423
|
source = { editable = "." }
|
|
424
424
|
dependencies = [
|
|
425
425
|
{ name = "chromadb" },
|
|
426
|
+
{ name = "einops" },
|
|
426
427
|
{ name = "reflexio-ai" },
|
|
427
428
|
]
|
|
428
429
|
|
|
@@ -434,6 +435,7 @@ dev = [
|
|
|
434
435
|
[package.metadata]
|
|
435
436
|
requires-dist = [
|
|
436
437
|
{ name = "chromadb", specifier = ">=0.5" },
|
|
438
|
+
{ name = "einops", specifier = ">=0.8.0" },
|
|
437
439
|
{ name = "reflexio-ai", specifier = ">=0.2.22" },
|
|
438
440
|
]
|
|
439
441
|
|
|
@@ -616,6 +618,15 @@ wheels = [
|
|
|
616
618
|
{ url = "https://files.pythonhosted.org/packages/51/79/119091c98e2bf49e24ed9f3ae69f816d715d2904aefa6a2baa039a2ba0b0/ecdsa-0.19.2-py2.py3-none-any.whl", hash = "sha256:840f5dc5e375c68f36c1a7a5b9caad28f95daa65185c9253c0c08dd952bb7399", size = 150818, upload-time = "2026-03-26T09:58:15.808Z" },
|
|
617
619
|
]
|
|
618
620
|
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "einops"
|
|
623
|
+
version = "0.8.2"
|
|
624
|
+
source = { registry = "https://pypi.org/simple" }
|
|
625
|
+
sdist = { url = "https://files.pythonhosted.org/packages/2c/77/850bef8d72ffb9219f0b1aac23fbc1bf7d038ee6ea666f331fa273031aa2/einops-0.8.2.tar.gz", hash = "sha256:609da665570e5e265e27283aab09e7f279ade90c4f01bcfca111f3d3e13f2827", size = 56261, upload-time = "2026-01-26T04:13:17.638Z" }
|
|
626
|
+
wheels = [
|
|
627
|
+
{ url = "https://files.pythonhosted.org/packages/2a/09/f8d8f8f31e4483c10a906437b4ce31bdf3d6d417b73fe33f1a8b59e34228/einops-0.8.2-py3-none-any.whl", hash = "sha256:54058201ac7087911181bfec4af6091bb59380360f069276601256a76af08193", size = 65638, upload-time = "2026-01-26T04:13:18.546Z" },
|
|
628
|
+
]
|
|
629
|
+
|
|
619
630
|
[[package]]
|
|
620
631
|
name = "email-validator"
|
|
621
632
|
version = "2.3.0"
|