@research-engineering/agentic-proofkit 0.10.0 → 0.11.0
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/ADOPTION.md +36 -14
- package/dist/platform/darwin-arm64/agentic-proofkit +0 -0
- package/dist/platform/darwin-x64/agentic-proofkit +0 -0
- package/dist/platform/linux-arm64/agentic-proofkit +0 -0
- package/dist/platform/linux-x64/agentic-proofkit +0 -0
- package/docs/proofkit-contract-map.md +4 -2
- package/docs/specs/proofkit-agent-workflow/overview.md +9 -3
- package/docs/specs/proofkit-agent-workflow/requirements.v1.json +18 -1
- package/docs/specs/proofkit-spec-proof-core/requirements.v1.json +1 -1
- package/package.json +1 -1
- package/proofkit/cli-contract.v2.json +556 -21
- package/proofkit/command-families.v1.json +4 -1
- package/proofkit/requirement-bindings.json +361 -0
|
@@ -30,9 +30,12 @@
|
|
|
30
30
|
{
|
|
31
31
|
"familyId": "agent-integrations",
|
|
32
32
|
"label": "Agent integrations",
|
|
33
|
-
"purpose": "Generate portable bootstrap source
|
|
33
|
+
"purpose": "Generate and check portable bootstrap source, then explicitly plan, apply or recover its managed file lifecycle without claiming native host activation.",
|
|
34
34
|
"commands": [
|
|
35
|
+
"integration-apply",
|
|
35
36
|
"integration-check",
|
|
37
|
+
"integration-plan",
|
|
38
|
+
"integration-recover",
|
|
36
39
|
"integration-source"
|
|
37
40
|
]
|
|
38
41
|
},
|
|
@@ -943,6 +943,18 @@
|
|
|
943
943
|
"Cancellation after the final pre-emission checkpoint cannot retract accepted output, and a caller-provided writer that accepts a prefix before failure is not an atomic sink.",
|
|
944
944
|
"Phase5A is generation/check only, not managed installation, update, removal, host activation, permission grant, semantic full proof, merge approval, or production readiness."
|
|
945
945
|
]
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"requirementId": "REQ-PROOFKIT-WORKFLOW-019",
|
|
949
|
+
"ownerId": "proofkit.agent-workflow",
|
|
950
|
+
"specPath": "docs/specs/proofkit-agent-workflow/requirements.v1.json",
|
|
951
|
+
"claimLevel": "blocking",
|
|
952
|
+
"proofState": "witness_backed",
|
|
953
|
+
"nonClaims": [
|
|
954
|
+
"A completed file lifecycle does not prove host discovery, instruction loading, approved-launcher invocation, permission grants, native verification, or production readiness.",
|
|
955
|
+
"Recovery reports a historical transaction, not current installed/removed state or post-return stability; cancellation after the final effect cannot retract a committed operation.",
|
|
956
|
+
"The baseline is cooperative bookkeeping, not authenticated origin, owner approval, or protection from coordinated same-user edits or rollback."
|
|
957
|
+
]
|
|
946
958
|
}
|
|
947
959
|
],
|
|
948
960
|
"bindings": [
|
|
@@ -6091,6 +6103,37 @@
|
|
|
6091
6103
|
"commandIds": ["proofkit.go-test"],
|
|
6092
6104
|
"environmentClasses": ["local-go"]
|
|
6093
6105
|
},
|
|
6106
|
+
{
|
|
6107
|
+
"requirementId": "REQ-PROOFKIT-SPEC-033",
|
|
6108
|
+
"scenarioId": "proofkit.spec-proof-core.repository-transaction-native-construction",
|
|
6109
|
+
"witnessId": "proofkit.repository-transaction.native-construction-falsifier",
|
|
6110
|
+
"witnessKind": "contract",
|
|
6111
|
+
"witnessPath": "internal/kernel/repositorytransaction/construction_test.go",
|
|
6112
|
+
"witnessSelectors": [
|
|
6113
|
+
{
|
|
6114
|
+
"selector": "TestPlanConstructionRejectsPublicFieldTransplant",
|
|
6115
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestPlanConstructionRejectsPublicFieldTransplant$'"
|
|
6116
|
+
},
|
|
6117
|
+
{
|
|
6118
|
+
"selector": "TestPlanConstructionRetainsIndependentExecutionChecks",
|
|
6119
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestPlanConstructionRetainsIndependentExecutionChecks$'"
|
|
6120
|
+
},
|
|
6121
|
+
{
|
|
6122
|
+
"selector": "TestPlanConstructionSurvivesOnlyNativeCopies",
|
|
6123
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestPlanConstructionSurvivesOnlyNativeCopies$'"
|
|
6124
|
+
},
|
|
6125
|
+
{
|
|
6126
|
+
"selector": "TestRecoveryDoesNotRequirePublicPlanConstruction",
|
|
6127
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestRecoveryDoesNotRequirePublicPlanConstruction$'"
|
|
6128
|
+
}
|
|
6129
|
+
],
|
|
6130
|
+
"commandIds": [
|
|
6131
|
+
"proofkit.go-test"
|
|
6132
|
+
],
|
|
6133
|
+
"environmentClasses": [
|
|
6134
|
+
"local-go"
|
|
6135
|
+
]
|
|
6136
|
+
},
|
|
6094
6137
|
{
|
|
6095
6138
|
"requirementId": "REQ-PROOFKIT-SPEC-033",
|
|
6096
6139
|
"scenarioId": "proofkit.spec-proof-core.repository-transaction-terminal-state",
|
|
@@ -7082,6 +7125,324 @@
|
|
|
7082
7125
|
"environmentClasses": [
|
|
7083
7126
|
"local-go"
|
|
7084
7127
|
]
|
|
7128
|
+
},
|
|
7129
|
+
{
|
|
7130
|
+
"requirementId": "REQ-PROOFKIT-WORKFLOW-019",
|
|
7131
|
+
"scenarioId": "proofkit.agent-workflow.integration-lifecycle-pair-recognition",
|
|
7132
|
+
"witnessId": "proofkit.agent-integration.integration-lifecycle-pair-recognition-falsifier",
|
|
7133
|
+
"witnessKind": "contract",
|
|
7134
|
+
"witnessPath": "internal/command/agentintegration/lifecycle_test.go",
|
|
7135
|
+
"witnessSelectors": [
|
|
7136
|
+
{
|
|
7137
|
+
"selector": "TestLifecycleBaselineCanonicalAdmission",
|
|
7138
|
+
"command": "go test ./internal/command/agentintegration -run '^TestLifecycleBaselineCanonicalAdmission$'"
|
|
7139
|
+
},
|
|
7140
|
+
{
|
|
7141
|
+
"selector": "TestLifecyclePairRecognition",
|
|
7142
|
+
"command": "go test ./internal/command/agentintegration -run '^TestLifecyclePairRecognition$'"
|
|
7143
|
+
}
|
|
7144
|
+
],
|
|
7145
|
+
"commandIds": [
|
|
7146
|
+
"proofkit.go-test"
|
|
7147
|
+
],
|
|
7148
|
+
"environmentClasses": [
|
|
7149
|
+
"local-go"
|
|
7150
|
+
]
|
|
7151
|
+
},
|
|
7152
|
+
{
|
|
7153
|
+
"requirementId": "REQ-PROOFKIT-WORKFLOW-019",
|
|
7154
|
+
"scenarioId": "proofkit.agent-workflow.integration-lifecycle-whole-operation",
|
|
7155
|
+
"witnessId": "proofkit.agent-integration.integration-lifecycle-whole-operation-falsifier",
|
|
7156
|
+
"witnessKind": "contract",
|
|
7157
|
+
"witnessPath": "internal/command/agentintegration/lifecycle_test.go",
|
|
7158
|
+
"witnessSelectors": [
|
|
7159
|
+
{
|
|
7160
|
+
"selector": "TestLifecycleAppliesReplaysAndPreservesNeighbors",
|
|
7161
|
+
"command": "go test ./internal/command/agentintegration -run '^TestLifecycleAppliesReplaysAndPreservesNeighbors$'"
|
|
7162
|
+
},
|
|
7163
|
+
{
|
|
7164
|
+
"selector": "TestLifecycleRejectsChangedIdentityAndLocalEdits",
|
|
7165
|
+
"command": "go test ./internal/command/agentintegration -run '^TestLifecycleRejectsChangedIdentityAndLocalEdits$'"
|
|
7166
|
+
}
|
|
7167
|
+
],
|
|
7168
|
+
"commandIds": [
|
|
7169
|
+
"proofkit.go-test"
|
|
7170
|
+
],
|
|
7171
|
+
"environmentClasses": [
|
|
7172
|
+
"local-go"
|
|
7173
|
+
]
|
|
7174
|
+
},
|
|
7175
|
+
{
|
|
7176
|
+
"requirementId": "REQ-PROOFKIT-WORKFLOW-019",
|
|
7177
|
+
"scenarioId": "proofkit.agent-workflow.integration-lifecycle-cli",
|
|
7178
|
+
"witnessId": "proofkit.agent-integration.integration-lifecycle-cli-falsifier",
|
|
7179
|
+
"witnessKind": "contract",
|
|
7180
|
+
"witnessPath": "internal/app/agent_integration_lifecycle_command_test.go",
|
|
7181
|
+
"witnessSelectors": [
|
|
7182
|
+
{
|
|
7183
|
+
"selector": "TestIntegrationApplyCLI",
|
|
7184
|
+
"command": "go test ./internal/app -run '^TestIntegrationApplyCLI$'"
|
|
7185
|
+
},
|
|
7186
|
+
{
|
|
7187
|
+
"selector": "TestIntegrationLifecycleInvocationAndPresentation",
|
|
7188
|
+
"command": "go test ./internal/app -run '^TestIntegrationLifecycleInvocationAndPresentation$'"
|
|
7189
|
+
},
|
|
7190
|
+
{
|
|
7191
|
+
"selector": "TestIntegrationPlanCLI",
|
|
7192
|
+
"command": "go test ./internal/app -run '^TestIntegrationPlanCLI$'"
|
|
7193
|
+
},
|
|
7194
|
+
{
|
|
7195
|
+
"selector": "TestIntegrationRecoverCLI",
|
|
7196
|
+
"command": "go test ./internal/app -run '^TestIntegrationRecoverCLI$'"
|
|
7197
|
+
}
|
|
7198
|
+
],
|
|
7199
|
+
"commandIds": [
|
|
7200
|
+
"proofkit.go-test"
|
|
7201
|
+
],
|
|
7202
|
+
"environmentClasses": [
|
|
7203
|
+
"local-go"
|
|
7204
|
+
]
|
|
7205
|
+
},
|
|
7206
|
+
{
|
|
7207
|
+
"requirementId": "REQ-PROOFKIT-WORKFLOW-019",
|
|
7208
|
+
"scenarioId": "proofkit.agent-workflow.integration-lifecycle-version-edge",
|
|
7209
|
+
"witnessId": "proofkit.agent-integration.integration-lifecycle-version-edge-falsifier",
|
|
7210
|
+
"witnessKind": "contract",
|
|
7211
|
+
"witnessPath": "internal/app/integration_version_edge_test.go",
|
|
7212
|
+
"witnessSelectors": [
|
|
7213
|
+
{
|
|
7214
|
+
"selector": "TestManagedIntegrationVersionEdgeClosesDeclaredPublicABIDelta",
|
|
7215
|
+
"command": "go test ./internal/app -run '^TestManagedIntegrationVersionEdgeClosesDeclaredPublicABIDelta$'"
|
|
7216
|
+
}
|
|
7217
|
+
],
|
|
7218
|
+
"commandIds": [
|
|
7219
|
+
"proofkit.go-test"
|
|
7220
|
+
],
|
|
7221
|
+
"environmentClasses": [
|
|
7222
|
+
"local-go"
|
|
7223
|
+
]
|
|
7224
|
+
},
|
|
7225
|
+
{
|
|
7226
|
+
"requirementId": "REQ-PROOFKIT-WORKFLOW-019",
|
|
7227
|
+
"scenarioId": "proofkit.agent-workflow.integration-lifecycle-version-edge-mutants",
|
|
7228
|
+
"witnessId": "proofkit.agent-integration.integration-lifecycle-version-edge-mutants-falsifier",
|
|
7229
|
+
"witnessKind": "contract",
|
|
7230
|
+
"witnessPath": "internal/app/public_abi_mutation_test.go",
|
|
7231
|
+
"witnessSelectors": [
|
|
7232
|
+
{
|
|
7233
|
+
"selector": "TestManagedIntegrationVersionEdgeRejectsUndeclaredPublicABIDrift",
|
|
7234
|
+
"command": "go test ./internal/app -run '^TestManagedIntegrationVersionEdgeRejectsUndeclaredPublicABIDrift$'"
|
|
7235
|
+
}
|
|
7236
|
+
],
|
|
7237
|
+
"commandIds": [
|
|
7238
|
+
"proofkit.go-test"
|
|
7239
|
+
],
|
|
7240
|
+
"environmentClasses": [
|
|
7241
|
+
"local-go"
|
|
7242
|
+
]
|
|
7243
|
+
},
|
|
7244
|
+
{
|
|
7245
|
+
"requirementId": "REQ-PROOFKIT-WORKFLOW-019",
|
|
7246
|
+
"scenarioId": "proofkit.agent-workflow.integration-lifecycle-npm-carrier",
|
|
7247
|
+
"witnessId": "proofkit.agent-integration.integration-lifecycle-npm-carrier-falsifier",
|
|
7248
|
+
"witnessKind": "contract",
|
|
7249
|
+
"witnessPath": "internal/tools/packageverify/workflow_carrier_test.go",
|
|
7250
|
+
"witnessSelectors": [
|
|
7251
|
+
{
|
|
7252
|
+
"selector": "TestInstalledNPMWorkflowCarrierClosure",
|
|
7253
|
+
"command": "go test ./internal/tools/packageverify -run '^TestInstalledNPMWorkflowCarrierClosure$'"
|
|
7254
|
+
}
|
|
7255
|
+
],
|
|
7256
|
+
"commandIds": [
|
|
7257
|
+
"proofkit.go-test"
|
|
7258
|
+
],
|
|
7259
|
+
"environmentClasses": [
|
|
7260
|
+
"local-go"
|
|
7261
|
+
]
|
|
7262
|
+
},
|
|
7263
|
+
{
|
|
7264
|
+
"requirementId": "REQ-PROOFKIT-WORKFLOW-019",
|
|
7265
|
+
"scenarioId": "proofkit.agent-workflow.integration-lifecycle-wheel-carrier",
|
|
7266
|
+
"witnessId": "proofkit.agent-integration.integration-lifecycle-wheel-carrier-falsifier",
|
|
7267
|
+
"witnessKind": "contract",
|
|
7268
|
+
"witnessPath": "internal/tools/pythonpackage/workflow_carrier_test.go",
|
|
7269
|
+
"witnessSelectors": [
|
|
7270
|
+
{
|
|
7271
|
+
"selector": "TestInstalledPythonWorkflowCarrierClosure",
|
|
7272
|
+
"command": "go test ./internal/tools/pythonpackage -run '^TestInstalledPythonWorkflowCarrierClosure$'"
|
|
7273
|
+
}
|
|
7274
|
+
],
|
|
7275
|
+
"commandIds": [
|
|
7276
|
+
"proofkit.go-test"
|
|
7277
|
+
],
|
|
7278
|
+
"environmentClasses": [
|
|
7279
|
+
"local-go"
|
|
7280
|
+
]
|
|
7281
|
+
},
|
|
7282
|
+
{
|
|
7283
|
+
"requirementId": "REQ-PROOFKIT-SPEC-033",
|
|
7284
|
+
"scenarioId": "proofkit.repository-transaction.desired-absence-action-and-admission",
|
|
7285
|
+
"witnessId": "proofkit.repository-transaction.desired-absence-action-and-admission-falsifier",
|
|
7286
|
+
"witnessKind": "contract",
|
|
7287
|
+
"witnessPath": "internal/kernel/repositorytransaction/delete_test.go",
|
|
7288
|
+
"witnessSelectors": [
|
|
7289
|
+
{
|
|
7290
|
+
"selector": "TestAbsentTargetRejectsPayloadAndNoncanonicalVersionWithoutMutation",
|
|
7291
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestAbsentTargetRejectsPayloadAndNoncanonicalVersionWithoutMutation$'"
|
|
7292
|
+
},
|
|
7293
|
+
{
|
|
7294
|
+
"selector": "TestAbsentTargetsDistinguishDeletionEmptyAndUnchanged",
|
|
7295
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestAbsentTargetsDistinguishDeletionEmptyAndUnchanged$'"
|
|
7296
|
+
},
|
|
7297
|
+
{
|
|
7298
|
+
"selector": "TestDeleteChecksLastBeforeImageAndPreservesForeignRecreation",
|
|
7299
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestDeleteChecksLastBeforeImageAndPreservesForeignRecreation$'"
|
|
7300
|
+
},
|
|
7301
|
+
{
|
|
7302
|
+
"selector": "TestMixedAbsentTargetDoesNotRequireOrCreateItsParents",
|
|
7303
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestMixedAbsentTargetDoesNotRequireOrCreateItsParents$'"
|
|
7304
|
+
}
|
|
7305
|
+
],
|
|
7306
|
+
"commandIds": [
|
|
7307
|
+
"proofkit.go-test"
|
|
7308
|
+
],
|
|
7309
|
+
"environmentClasses": [
|
|
7310
|
+
"local-go"
|
|
7311
|
+
]
|
|
7312
|
+
},
|
|
7313
|
+
{
|
|
7314
|
+
"requirementId": "REQ-PROOFKIT-SPEC-033",
|
|
7315
|
+
"scenarioId": "proofkit.repository-transaction.desired-absence-recovery-and-interruption",
|
|
7316
|
+
"witnessId": "proofkit.repository-transaction.desired-absence-recovery-and-interruption-falsifier",
|
|
7317
|
+
"witnessKind": "contract",
|
|
7318
|
+
"witnessPath": "internal/kernel/repositorytransaction/delete_recovery_test.go",
|
|
7319
|
+
"witnessSelectors": [
|
|
7320
|
+
{
|
|
7321
|
+
"selector": "TestDeletionProcessInterruptionAtMutationBoundaries",
|
|
7322
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestDeletionProcessInterruptionAtMutationBoundaries$'"
|
|
7323
|
+
},
|
|
7324
|
+
{
|
|
7325
|
+
"selector": "TestDeletionRecoversEveryMixedPrefixAndHistoricalResult",
|
|
7326
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestDeletionRecoversEveryMixedPrefixAndHistoricalResult$'"
|
|
7327
|
+
},
|
|
7328
|
+
{
|
|
7329
|
+
"selector": "TestDeletionRejectsMissingCorruptAndUnexpectedStagedObjects",
|
|
7330
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestDeletionRejectsMissingCorruptAndUnexpectedStagedObjects$'"
|
|
7331
|
+
}
|
|
7332
|
+
],
|
|
7333
|
+
"commandIds": [
|
|
7334
|
+
"proofkit.go-test"
|
|
7335
|
+
],
|
|
7336
|
+
"environmentClasses": [
|
|
7337
|
+
"local-go"
|
|
7338
|
+
]
|
|
7339
|
+
},
|
|
7340
|
+
{
|
|
7341
|
+
"requirementId": "REQ-PROOFKIT-SPEC-033",
|
|
7342
|
+
"scenarioId": "proofkit.repository-transaction.current-state-locked-replay",
|
|
7343
|
+
"witnessId": "proofkit.repository-transaction.current-state-locked-replay-falsifier",
|
|
7344
|
+
"witnessKind": "contract",
|
|
7345
|
+
"witnessPath": "internal/kernel/repositorytransaction/replay_test.go",
|
|
7346
|
+
"witnessSelectors": [
|
|
7347
|
+
{
|
|
7348
|
+
"selector": "TestReplayAppliedRequiresCurrentNativePlanAndExactRetainedResult",
|
|
7349
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestReplayAppliedRequiresCurrentNativePlanAndExactRetainedResult$'"
|
|
7350
|
+
}
|
|
7351
|
+
],
|
|
7352
|
+
"commandIds": [
|
|
7353
|
+
"proofkit.go-test"
|
|
7354
|
+
],
|
|
7355
|
+
"environmentClasses": [
|
|
7356
|
+
"local-go"
|
|
7357
|
+
]
|
|
7358
|
+
},
|
|
7359
|
+
{
|
|
7360
|
+
"requirementId": "REQ-PROOFKIT-SPEC-033",
|
|
7361
|
+
"scenarioId": "proofkit.repository-transaction.predecessor-v1-compatibility",
|
|
7362
|
+
"witnessId": "proofkit.repository-transaction.predecessor-v1-compatibility-falsifier",
|
|
7363
|
+
"witnessKind": "contract",
|
|
7364
|
+
"witnessPath": "internal/kernel/repositorytransaction/v1_compatibility_test.go",
|
|
7365
|
+
"witnessSelectors": [
|
|
7366
|
+
{
|
|
7367
|
+
"selector": "TestPresentOnlyPlansPreserveIndependentPredecessorBytes",
|
|
7368
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestPresentOnlyPlansPreserveIndependentPredecessorBytes$'"
|
|
7369
|
+
},
|
|
7370
|
+
{
|
|
7371
|
+
"selector": "TestRecoverIndependentPredecessorJournalAndStagedBytes",
|
|
7372
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestRecoverIndependentPredecessorJournalAndStagedBytes$'"
|
|
7373
|
+
}
|
|
7374
|
+
],
|
|
7375
|
+
"commandIds": [
|
|
7376
|
+
"proofkit.go-test"
|
|
7377
|
+
],
|
|
7378
|
+
"environmentClasses": [
|
|
7379
|
+
"local-go"
|
|
7380
|
+
]
|
|
7381
|
+
},
|
|
7382
|
+
{
|
|
7383
|
+
"requirementId": "REQ-PROOFKIT-SPEC-033",
|
|
7384
|
+
"scenarioId": "proofkit.repository-transaction.bound-terminal-identity",
|
|
7385
|
+
"witnessId": "proofkit.repository-transaction.bound-terminal-identity-falsifier",
|
|
7386
|
+
"witnessKind": "contract",
|
|
7387
|
+
"witnessPath": "internal/kernel/repositorytransaction/terminal_identity_test.go",
|
|
7388
|
+
"witnessSelectors": [
|
|
7389
|
+
{
|
|
7390
|
+
"selector": "TestBoundTerminalRecoveryCompletesInterruptedArchive",
|
|
7391
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestBoundTerminalRecoveryCompletesInterruptedArchive$'"
|
|
7392
|
+
},
|
|
7393
|
+
{
|
|
7394
|
+
"selector": "TestLegacyTerminalRecoveryPreservesHistoricalIdentity",
|
|
7395
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestLegacyTerminalRecoveryPreservesHistoricalIdentity$'"
|
|
7396
|
+
},
|
|
7397
|
+
{
|
|
7398
|
+
"selector": "TestTerminalReceiptDesiredIdentityAdmission",
|
|
7399
|
+
"command": "go test ./internal/kernel/repositorytransaction -run '^TestTerminalReceiptDesiredIdentityAdmission$'"
|
|
7400
|
+
}
|
|
7401
|
+
],
|
|
7402
|
+
"commandIds": [
|
|
7403
|
+
"proofkit.go-test"
|
|
7404
|
+
],
|
|
7405
|
+
"environmentClasses": [
|
|
7406
|
+
"local-go"
|
|
7407
|
+
]
|
|
7408
|
+
},
|
|
7409
|
+
{
|
|
7410
|
+
"requirementId": "REQ-PROOFKIT-WORKFLOW-019",
|
|
7411
|
+
"scenarioId": "proofkit.agent-workflow.integration-recover-busy-stream",
|
|
7412
|
+
"witnessId": "proofkit.agent-workflow.integration-recover-busy-stream-falsifier",
|
|
7413
|
+
"witnessKind": "contract",
|
|
7414
|
+
"witnessPath": "internal/app/agent_integration_lifecycle_unix_test.go",
|
|
7415
|
+
"witnessSelectors": [
|
|
7416
|
+
{
|
|
7417
|
+
"selector": "TestIntegrationRecoverBusyCLIIsClassified",
|
|
7418
|
+
"command": "go test ./internal/app -run '^TestIntegrationRecoverBusyCLIIsClassified$'"
|
|
7419
|
+
}
|
|
7420
|
+
],
|
|
7421
|
+
"commandIds": [
|
|
7422
|
+
"proofkit.go-test"
|
|
7423
|
+
],
|
|
7424
|
+
"environmentClasses": [
|
|
7425
|
+
"local-go"
|
|
7426
|
+
]
|
|
7427
|
+
},
|
|
7428
|
+
{
|
|
7429
|
+
"requirementId": "REQ-PROOFKIT-WORKFLOW-019",
|
|
7430
|
+
"scenarioId": "proofkit.agent-workflow.integration-update-effect-oracle",
|
|
7431
|
+
"witnessId": "proofkit.agent-workflow.integration-update-effect-oracle-falsifier",
|
|
7432
|
+
"witnessKind": "contract",
|
|
7433
|
+
"witnessPath": "internal/tools/workflowsmoke/integration_lifecycle_mutation_test.go",
|
|
7434
|
+
"witnessSelectors": [
|
|
7435
|
+
{
|
|
7436
|
+
"selector": "TestInstalledLifecycleWitnessRejectsUpdateWithoutEffects",
|
|
7437
|
+
"command": "go test ./internal/tools/workflowsmoke -run '^TestInstalledLifecycleWitnessRejectsUpdateWithoutEffects$'"
|
|
7438
|
+
}
|
|
7439
|
+
],
|
|
7440
|
+
"commandIds": [
|
|
7441
|
+
"proofkit.go-test"
|
|
7442
|
+
],
|
|
7443
|
+
"environmentClasses": [
|
|
7444
|
+
"local-go"
|
|
7445
|
+
]
|
|
7085
7446
|
}
|
|
7086
7447
|
],
|
|
7087
7448
|
"witnessCommands": [
|