specsmith 0.2.5.dev590__py3-none-any.whl → 0.2.6.dev591__py3-none-any.whl
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.
- specsmith/__init__.py +1 -1
- {specsmith-0.2.5.dev590.dist-info → specsmith-0.2.6.dev591.dist-info}/METADATA +3 -3
- {specsmith-0.2.5.dev590.dist-info → specsmith-0.2.6.dev591.dist-info}/RECORD +7 -7
- {specsmith-0.2.5.dev590.dist-info → specsmith-0.2.6.dev591.dist-info}/WHEEL +0 -0
- {specsmith-0.2.5.dev590.dist-info → specsmith-0.2.6.dev591.dist-info}/entry_points.txt +0 -0
- {specsmith-0.2.5.dev590.dist-info → specsmith-0.2.6.dev591.dist-info}/licenses/LICENSE +0 -0
- {specsmith-0.2.5.dev590.dist-info → specsmith-0.2.6.dev591.dist-info}/top_level.txt +0 -0
specsmith/__init__.py
CHANGED
|
@@ -8,4 +8,4 @@ from importlib.metadata import version as _pkg_version
|
|
|
8
8
|
try:
|
|
9
9
|
__version__: str = _pkg_version("specsmith")
|
|
10
10
|
except PackageNotFoundError: # running from source without install
|
|
11
|
-
__version__ = "0.2.
|
|
11
|
+
__version__ = "0.2.6" # fallback: keep in sync with pyproject.toml
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: specsmith
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.6.dev591
|
|
4
4
|
Summary: AEE governance toolkit for AI-assisted development — session preflight gates, multi-agent dispatch, requirements↔test traceability, ESDB persistence, MCP server, and skills for Warp, Cursor, Claude Code, Copilot, Windsurf, and Aider.
|
|
5
5
|
Author: Layer1Labs Silicon, Inc.
|
|
6
6
|
License-Expression: MIT
|
|
@@ -40,7 +40,7 @@ Requires-Dist: pre-commit>=3.0; extra == "dev"
|
|
|
40
40
|
Requires-Dist: types-pyyaml>=6.0; extra == "dev"
|
|
41
41
|
Requires-Dist: cryptography>=42.0; extra == "dev"
|
|
42
42
|
Provides-Extra: esdb
|
|
43
|
-
Requires-Dist: chronomemory>=0.
|
|
43
|
+
Requires-Dist: chronomemory>=0.2.0; extra == "esdb"
|
|
44
44
|
Requires-Dist: cryptography>=42.0; extra == "esdb"
|
|
45
45
|
Provides-Extra: docs
|
|
46
46
|
Requires-Dist: mkdocs>=1.6; extra == "docs"
|
|
@@ -275,7 +275,7 @@ If you hold a chronomemory ESDB license, activate the commercial backend:
|
|
|
275
275
|
# Step 1 — install the chronomemory package
|
|
276
276
|
pip install "specsmith[esdb]" # installs chronomemory from PyPI
|
|
277
277
|
# or if using pipx:
|
|
278
|
-
pipx inject specsmith "chronomemory>=0.
|
|
278
|
+
pipx inject specsmith "chronomemory>=0.2.0" # inject into the specsmith pipx venv
|
|
279
279
|
|
|
280
280
|
# Step 2 — activate your license key
|
|
281
281
|
specsmith esdb enable --key-file /path/to/your.esdb.key
|
|
@@ -7,7 +7,7 @@ epistemic/recovery.py,sha256=Bx4CSM5hIY337VztDK_zFgIgWSim5P4uyqDsesfbkQY,8491
|
|
|
7
7
|
epistemic/session.py,sha256=dUAzrKFOy2X6LO5duKCuQNtoe8OcAZBfw6rSVvv8VlY,15750
|
|
8
8
|
epistemic/stress_tester.py,sha256=rHBsAAF24R8kakKTFtwafbPuwKH_77d8HJGjg9ZBIRU,13252
|
|
9
9
|
epistemic/trace.py,sha256=HhQldv-FUk8AN8S5hgWdKkEHaMbv536WZb3mRV4ZFiA,7179
|
|
10
|
-
specsmith/__init__.py,sha256=
|
|
10
|
+
specsmith/__init__.py,sha256=yREfPXQKdjzLHTCR6tG42mKsE50y2l_Gd7MLnXTPQsg,455
|
|
11
11
|
specsmith/__main__.py,sha256=ep96DW1NQJwYedxz6uFYku74Y4_v0h4WMnHGs43CMpw,196
|
|
12
12
|
specsmith/approvals.py,sha256=aYGFZht7qP4wTjyMqrOu1I4OEAatlbTj97ySk1-5J8g,3525
|
|
13
13
|
specsmith/architect.py,sha256=w7as8wzjfk85TEeqz9pK0qTPeXIoO5kHKF7zTVFnDd0,5446
|
|
@@ -247,9 +247,9 @@ specsmith/vcs/base.py,sha256=k9ItuxqzZAtrotjKy0VitTnFlB6ECCULXYgP7tLlVq8,4105
|
|
|
247
247
|
specsmith/vcs/bitbucket.py,sha256=SbB5FzgzQImcXj3_PDH5Ku9Bgi28aXHl1Fa8GOGesp0,5021
|
|
248
248
|
specsmith/vcs/github.py,sha256=RM85mAXK6llb_zdSZznJ86vGbVMcvyMY3R3IUVxiDV4,12002
|
|
249
249
|
specsmith/vcs/gitlab.py,sha256=krO-coJwY0-aaXPl-wm6k0i54GKnJcLGDI5T1X57RyI,5143
|
|
250
|
-
specsmith-0.2.
|
|
251
|
-
specsmith-0.2.
|
|
252
|
-
specsmith-0.2.
|
|
253
|
-
specsmith-0.2.
|
|
254
|
-
specsmith-0.2.
|
|
255
|
-
specsmith-0.2.
|
|
250
|
+
specsmith-0.2.6.dev591.dist-info/licenses/LICENSE,sha256=958a6ze3JC3I-XdAAz7xmzkrXjLvLsfxbQCG_nOpUfo,1081
|
|
251
|
+
specsmith-0.2.6.dev591.dist-info/METADATA,sha256=xAEGYRrHsXl9J9yBalWFxMfJBzMSJ8fWpeEjed-1Lls,53874
|
|
252
|
+
specsmith-0.2.6.dev591.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
253
|
+
specsmith-0.2.6.dev591.dist-info/entry_points.txt,sha256=X_zb8_KvBONFGgkQYKIbW1UtWd3Ck7E11l3SyHO7omA,49
|
|
254
|
+
specsmith-0.2.6.dev591.dist-info/top_level.txt,sha256=wu2UpLt3wnh0TwSBmoox7kOMoGfzD6mUs22ihAcEx4E,20
|
|
255
|
+
specsmith-0.2.6.dev591.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|