loopgen 0.7.0 → 0.7.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/dist/cli.js +2 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -169,7 +169,8 @@ program
|
|
|
169
169
|
.option("--openai-compatible-model <model>", "driven mode: OpenAI-compatible model name")
|
|
170
170
|
.option("--openai-compatible-base-url <url>", "driven mode: OpenAI-compatible base URL")
|
|
171
171
|
.option("--openai-compatible-api-key-env <name>", "driven mode: env var name for the API key")
|
|
172
|
-
.option("--
|
|
172
|
+
.option("--attest", "sign the audit entry against Sigstore/Rekor (default: automatic in CI with an OIDC identity)")
|
|
173
|
+
.option("--no-attest", "skip signing the audit entry, even in CI")
|
|
173
174
|
.description("Run a loop's verification against the working tree; leaves tamper-evident evidence locally, or a verifiable signed attestation in CI.")
|
|
174
175
|
.action(async (loop, project, options) => {
|
|
175
176
|
const result = await runLoop({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "loopgen",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "The vendor-neutral verification & provenance gate for AI-generated code — bring your own agent. Local runs leave tamper-evident evidence; CI runs produce a verifiable, signed attestation (Sigstore/SLSA) you can gate merges on.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|