holoscript-holorepo 0.2.0__tar.gz → 0.3.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: holoscript-holorepo
3
- Version: 0.2.0
3
+ Version: 0.3.1
4
4
  Summary: Python companion for HoloRepo: plug-and-play sovereign DB + HoloScript KS for agent frameworks.
5
5
  Author: HoloScript ecosystem
6
6
  License-Expression: MIT
@@ -61,6 +61,18 @@ hits = query_ks("sovereign backbone", limit=5)["rows"]
61
61
  Reads refuse mutations. Writes are staged by the npm client as
62
62
  `holorepo.storage-proof.v1` and admitted by the configured operator route.
63
63
 
64
+ Native delivery planning, manifest generation, installer templates, and
65
+ admission proofs live in the npm CLI:
66
+
67
+ ```bash
68
+ holorepo delivery plan --class native-service --rail oci --rail compose
69
+ holorepo delivery manifest --class native-app --rail web-bundle --rail holoqr
70
+ holorepo delivery readback --rail pypi --name holoscript-holorepo --version 0.3.1
71
+ ```
72
+
73
+ Python frameworks can consume the emitted manifest JSON while the package keeps
74
+ DB/KS reads dependency-free.
75
+
64
76
  ## Release Boundary
65
77
 
66
78
  `holoscript-holorepo` is distributed under the MIT license. The compatibility
@@ -41,6 +41,18 @@ hits = query_ks("sovereign backbone", limit=5)["rows"]
41
41
  Reads refuse mutations. Writes are staged by the npm client as
42
42
  `holorepo.storage-proof.v1` and admitted by the configured operator route.
43
43
 
44
+ Native delivery planning, manifest generation, installer templates, and
45
+ admission proofs live in the npm CLI:
46
+
47
+ ```bash
48
+ holorepo delivery plan --class native-service --rail oci --rail compose
49
+ holorepo delivery manifest --class native-app --rail web-bundle --rail holoqr
50
+ holorepo delivery readback --rail pypi --name holoscript-holorepo --version 0.3.1
51
+ ```
52
+
53
+ Python frameworks can consume the emitted manifest JSON while the package keeps
54
+ DB/KS reads dependency-free.
55
+
44
56
  ## Release Boundary
45
57
 
46
58
  `holoscript-holorepo` is distributed under the MIT license. The compatibility
@@ -14,7 +14,7 @@ import subprocess
14
14
  from pathlib import Path
15
15
  from urllib.parse import urlsplit, urlunsplit
16
16
 
17
- __version__ = "0.2.0"
17
+ __version__ = "0.3.1"
18
18
  RELEASE_LANE = "v0-preview"
19
19
  CONFIG_SCHEMA = "holorepo.config.v1"
20
20
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: holoscript-holorepo
3
- Version: 0.2.0
3
+ Version: 0.3.1
4
4
  Summary: Python companion for HoloRepo: plug-and-play sovereign DB + HoloScript KS for agent frameworks.
5
5
  Author: HoloScript ecosystem
6
6
  License-Expression: MIT
@@ -61,6 +61,18 @@ hits = query_ks("sovereign backbone", limit=5)["rows"]
61
61
  Reads refuse mutations. Writes are staged by the npm client as
62
62
  `holorepo.storage-proof.v1` and admitted by the configured operator route.
63
63
 
64
+ Native delivery planning, manifest generation, installer templates, and
65
+ admission proofs live in the npm CLI:
66
+
67
+ ```bash
68
+ holorepo delivery plan --class native-service --rail oci --rail compose
69
+ holorepo delivery manifest --class native-app --rail web-bundle --rail holoqr
70
+ holorepo delivery readback --rail pypi --name holoscript-holorepo --version 0.3.1
71
+ ```
72
+
73
+ Python frameworks can consume the emitted manifest JSON while the package keeps
74
+ DB/KS reads dependency-free.
75
+
64
76
  ## Release Boundary
65
77
 
66
78
  `holoscript-holorepo` is distributed under the MIT license. The compatibility
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "holoscript-holorepo"
7
- version = "0.2.0"
7
+ version = "0.3.1"
8
8
  description = "Python companion for HoloRepo: plug-and-play sovereign DB + HoloScript KS for agent frameworks."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"