scafld 2.4.2__tar.gz → 2.4.4__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.
scafld-2.4.4/PKG-INFO ADDED
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.4
2
+ Name: scafld
3
+ Version: 2.4.4
4
+ Summary: Deterministic protocol for multi-phase agent work.
5
+ Author: 0state
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://0state.com/scafld
8
+ Project-URL: Documentation, https://0state.com/scafld/docs
9
+ Project-URL: Repository, https://github.com/nilstate/scafld
10
+ Project-URL: Issues, https://github.com/nilstate/scafld/issues
11
+ Keywords: cli,go,markdown,agents,workflow
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: Console
14
+ Classifier: Operating System :: MacOS
15
+ Classifier: Operating System :: POSIX :: Linux
16
+ Classifier: Operating System :: Microsoft :: Windows
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Topic :: Software Development :: Build Tools
19
+ Requires-Python: >=3.9
20
+ Description-Content-Type: text/markdown
21
+
22
+ # scafld
23
+
24
+ **A deterministic protocol for multi-phase agent work.**
25
+ The agent passes through. The protocol stays.
26
+
27
+ Plans outlive agents. Sessions hold the receipts. Reviews take nothing on faith.
28
+
29
+ Given the same spec and session ledger, scafld derives the same state, next
30
+ command, and review gate.
31
+
32
+ scafld is spec-driven orchestration for AI coding agents. The work starts from
33
+ an explicit spec, gets hardened before real effort, executes phase-bounded, and
34
+ ships only through adversarial review. The differentiator is simple: **the agent
35
+ does not get to grade its own homework**.
36
+
37
+ ## Install
38
+
39
+ ```bash
40
+ pipx install scafld
41
+ scafld --version
42
+ ```
43
+
44
+ This PyPI package installs a `scafld` console script that downloads and runs the
45
+ native Go binary from the matching GitHub release.
46
+
47
+ ## Quick Start
48
+
49
+ ```bash
50
+ scafld init
51
+ scafld plan add-cache --command "go test ./..."
52
+ scafld harden add-cache
53
+ scafld harden add-cache --mark-passed
54
+ scafld approve add-cache
55
+ scafld build add-cache
56
+ scafld review add-cache
57
+ scafld complete add-cache
58
+ ```
59
+
60
+ The lifecycle is deliberately small:
61
+
62
+ ```text
63
+ draft -> harden -> approved -> active -> review -> completed
64
+ ```
65
+
66
+ `complete` only closes reviewed work. If adversarial review finds a blocking
67
+ issue, scafld sends the task to repair instead of letting the implementation
68
+ agent wave itself through.
69
+
70
+ ## Distribution Shim
71
+
72
+ The Go binary is the product. This PyPI package is a distribution shim that
73
+ fetches the matching native binary from GitHub releases.
74
+
75
+ Environment overrides:
76
+
77
+ - `SCAFLD_BINARY=/path/to/scafld` runs a local binary instead of downloading.
78
+ - `SCAFLD_INSTALL_DIR=/custom/cache` controls where downloaded binaries are cached.
79
+ - `SCAFLD_INSTALL_BASE_URL=https://host/assets` downloads release assets from a mirror.
80
+
81
+ ## Links
82
+
83
+ - Docs: <https://0state.com/scafld/docs>
84
+ - Source: <https://github.com/nilstate/scafld>
85
+ - Releases: <https://github.com/nilstate/scafld/releases>
scafld-2.4.4/README.md ADDED
@@ -0,0 +1,64 @@
1
+ # scafld
2
+
3
+ **A deterministic protocol for multi-phase agent work.**
4
+ The agent passes through. The protocol stays.
5
+
6
+ Plans outlive agents. Sessions hold the receipts. Reviews take nothing on faith.
7
+
8
+ Given the same spec and session ledger, scafld derives the same state, next
9
+ command, and review gate.
10
+
11
+ scafld is spec-driven orchestration for AI coding agents. The work starts from
12
+ an explicit spec, gets hardened before real effort, executes phase-bounded, and
13
+ ships only through adversarial review. The differentiator is simple: **the agent
14
+ does not get to grade its own homework**.
15
+
16
+ ## Install
17
+
18
+ ```bash
19
+ pipx install scafld
20
+ scafld --version
21
+ ```
22
+
23
+ This PyPI package installs a `scafld` console script that downloads and runs the
24
+ native Go binary from the matching GitHub release.
25
+
26
+ ## Quick Start
27
+
28
+ ```bash
29
+ scafld init
30
+ scafld plan add-cache --command "go test ./..."
31
+ scafld harden add-cache
32
+ scafld harden add-cache --mark-passed
33
+ scafld approve add-cache
34
+ scafld build add-cache
35
+ scafld review add-cache
36
+ scafld complete add-cache
37
+ ```
38
+
39
+ The lifecycle is deliberately small:
40
+
41
+ ```text
42
+ draft -> harden -> approved -> active -> review -> completed
43
+ ```
44
+
45
+ `complete` only closes reviewed work. If adversarial review finds a blocking
46
+ issue, scafld sends the task to repair instead of letting the implementation
47
+ agent wave itself through.
48
+
49
+ ## Distribution Shim
50
+
51
+ The Go binary is the product. This PyPI package is a distribution shim that
52
+ fetches the matching native binary from GitHub releases.
53
+
54
+ Environment overrides:
55
+
56
+ - `SCAFLD_BINARY=/path/to/scafld` runs a local binary instead of downloading.
57
+ - `SCAFLD_INSTALL_DIR=/custom/cache` controls where downloaded binaries are cached.
58
+ - `SCAFLD_INSTALL_BASE_URL=https://host/assets` downloads release assets from a mirror.
59
+
60
+ ## Links
61
+
62
+ - Docs: <https://0state.com/scafld/docs>
63
+ - Source: <https://github.com/nilstate/scafld>
64
+ - Releases: <https://github.com/nilstate/scafld/releases>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "scafld"
7
- version = "2.4.2"
7
+ version = "2.4.4"
8
8
  description = "Deterministic protocol for multi-phase agent work."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.4
2
+ Name: scafld
3
+ Version: 2.4.4
4
+ Summary: Deterministic protocol for multi-phase agent work.
5
+ Author: 0state
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://0state.com/scafld
8
+ Project-URL: Documentation, https://0state.com/scafld/docs
9
+ Project-URL: Repository, https://github.com/nilstate/scafld
10
+ Project-URL: Issues, https://github.com/nilstate/scafld/issues
11
+ Keywords: cli,go,markdown,agents,workflow
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: Console
14
+ Classifier: Operating System :: MacOS
15
+ Classifier: Operating System :: POSIX :: Linux
16
+ Classifier: Operating System :: Microsoft :: Windows
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Topic :: Software Development :: Build Tools
19
+ Requires-Python: >=3.9
20
+ Description-Content-Type: text/markdown
21
+
22
+ # scafld
23
+
24
+ **A deterministic protocol for multi-phase agent work.**
25
+ The agent passes through. The protocol stays.
26
+
27
+ Plans outlive agents. Sessions hold the receipts. Reviews take nothing on faith.
28
+
29
+ Given the same spec and session ledger, scafld derives the same state, next
30
+ command, and review gate.
31
+
32
+ scafld is spec-driven orchestration for AI coding agents. The work starts from
33
+ an explicit spec, gets hardened before real effort, executes phase-bounded, and
34
+ ships only through adversarial review. The differentiator is simple: **the agent
35
+ does not get to grade its own homework**.
36
+
37
+ ## Install
38
+
39
+ ```bash
40
+ pipx install scafld
41
+ scafld --version
42
+ ```
43
+
44
+ This PyPI package installs a `scafld` console script that downloads and runs the
45
+ native Go binary from the matching GitHub release.
46
+
47
+ ## Quick Start
48
+
49
+ ```bash
50
+ scafld init
51
+ scafld plan add-cache --command "go test ./..."
52
+ scafld harden add-cache
53
+ scafld harden add-cache --mark-passed
54
+ scafld approve add-cache
55
+ scafld build add-cache
56
+ scafld review add-cache
57
+ scafld complete add-cache
58
+ ```
59
+
60
+ The lifecycle is deliberately small:
61
+
62
+ ```text
63
+ draft -> harden -> approved -> active -> review -> completed
64
+ ```
65
+
66
+ `complete` only closes reviewed work. If adversarial review finds a blocking
67
+ issue, scafld sends the task to repair instead of letting the implementation
68
+ agent wave itself through.
69
+
70
+ ## Distribution Shim
71
+
72
+ The Go binary is the product. This PyPI package is a distribution shim that
73
+ fetches the matching native binary from GitHub releases.
74
+
75
+ Environment overrides:
76
+
77
+ - `SCAFLD_BINARY=/path/to/scafld` runs a local binary instead of downloading.
78
+ - `SCAFLD_INSTALL_DIR=/custom/cache` controls where downloaded binaries are cached.
79
+ - `SCAFLD_INSTALL_BASE_URL=https://host/assets` downloads release assets from a mirror.
80
+
81
+ ## Links
82
+
83
+ - Docs: <https://0state.com/scafld/docs>
84
+ - Source: <https://github.com/nilstate/scafld>
85
+ - Releases: <https://github.com/nilstate/scafld/releases>
@@ -5,4 +5,4 @@ from importlib.metadata import PackageNotFoundError, version
5
5
  try:
6
6
  __version__ = version("scafld")
7
7
  except PackageNotFoundError: # pragma: no cover - editable source tree
8
- __version__ = "2.4.2"
8
+ __version__ = "2.4.4"
scafld-2.4.2/PKG-INFO DELETED
@@ -1,41 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: scafld
3
- Version: 2.4.2
4
- Summary: Deterministic protocol for multi-phase agent work.
5
- Author: 0state
6
- License-Expression: MIT
7
- Project-URL: Homepage, https://0state.com/scafld
8
- Project-URL: Documentation, https://0state.com/scafld/docs
9
- Project-URL: Repository, https://github.com/nilstate/scafld
10
- Project-URL: Issues, https://github.com/nilstate/scafld/issues
11
- Keywords: cli,go,markdown,agents,workflow
12
- Classifier: Development Status :: 4 - Beta
13
- Classifier: Environment :: Console
14
- Classifier: Operating System :: MacOS
15
- Classifier: Operating System :: POSIX :: Linux
16
- Classifier: Operating System :: Microsoft :: Windows
17
- Classifier: Programming Language :: Python :: 3
18
- Classifier: Topic :: Software Development :: Build Tools
19
- Requires-Python: >=3.9
20
- Description-Content-Type: text/markdown
21
-
22
- # scafld
23
-
24
- **A deterministic protocol for multi-phase agent work.**
25
- The agent passes through. The protocol stays.
26
-
27
- Plans outlive agents. Sessions hold the receipts. Reviews take nothing on faith.
28
-
29
- ```bash
30
- pipx install scafld
31
- scafld --version
32
- ```
33
-
34
- The Go binary is the product. This PyPI package is only a distribution shim
35
- that fetches the matching native binary from GitHub releases.
36
-
37
- Environment overrides:
38
-
39
- - `SCAFLD_BINARY=/path/to/scafld` runs a local binary instead of downloading.
40
- - `SCAFLD_INSTALL_DIR=/custom/cache` controls where downloaded binaries are cached.
41
- - `SCAFLD_INSTALL_BASE_URL=https://host/assets` downloads release assets from a mirror.
scafld-2.4.2/README.md DELETED
@@ -1,20 +0,0 @@
1
- # scafld
2
-
3
- **A deterministic protocol for multi-phase agent work.**
4
- The agent passes through. The protocol stays.
5
-
6
- Plans outlive agents. Sessions hold the receipts. Reviews take nothing on faith.
7
-
8
- ```bash
9
- pipx install scafld
10
- scafld --version
11
- ```
12
-
13
- The Go binary is the product. This PyPI package is only a distribution shim
14
- that fetches the matching native binary from GitHub releases.
15
-
16
- Environment overrides:
17
-
18
- - `SCAFLD_BINARY=/path/to/scafld` runs a local binary instead of downloading.
19
- - `SCAFLD_INSTALL_DIR=/custom/cache` controls where downloaded binaries are cached.
20
- - `SCAFLD_INSTALL_BASE_URL=https://host/assets` downloads release assets from a mirror.
@@ -1,41 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: scafld
3
- Version: 2.4.2
4
- Summary: Deterministic protocol for multi-phase agent work.
5
- Author: 0state
6
- License-Expression: MIT
7
- Project-URL: Homepage, https://0state.com/scafld
8
- Project-URL: Documentation, https://0state.com/scafld/docs
9
- Project-URL: Repository, https://github.com/nilstate/scafld
10
- Project-URL: Issues, https://github.com/nilstate/scafld/issues
11
- Keywords: cli,go,markdown,agents,workflow
12
- Classifier: Development Status :: 4 - Beta
13
- Classifier: Environment :: Console
14
- Classifier: Operating System :: MacOS
15
- Classifier: Operating System :: POSIX :: Linux
16
- Classifier: Operating System :: Microsoft :: Windows
17
- Classifier: Programming Language :: Python :: 3
18
- Classifier: Topic :: Software Development :: Build Tools
19
- Requires-Python: >=3.9
20
- Description-Content-Type: text/markdown
21
-
22
- # scafld
23
-
24
- **A deterministic protocol for multi-phase agent work.**
25
- The agent passes through. The protocol stays.
26
-
27
- Plans outlive agents. Sessions hold the receipts. Reviews take nothing on faith.
28
-
29
- ```bash
30
- pipx install scafld
31
- scafld --version
32
- ```
33
-
34
- The Go binary is the product. This PyPI package is only a distribution shim
35
- that fetches the matching native binary from GitHub releases.
36
-
37
- Environment overrides:
38
-
39
- - `SCAFLD_BINARY=/path/to/scafld` runs a local binary instead of downloading.
40
- - `SCAFLD_INSTALL_DIR=/custom/cache` controls where downloaded binaries are cached.
41
- - `SCAFLD_INSTALL_BASE_URL=https://host/assets` downloads release assets from a mirror.
File without changes