Evidence Package Generator
Creates a deterministic evidence package from a tool invocation.
Run tool
Form input
Direct JSON or Markdown
Submit JSON directly or Markdown that can be converted into JSON.
Work steps
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
tool_id | text | Yes | Tool id |
input | object | Yes | Input |
output | object | Yes | Output |
timestamp | text | Yes | Timestamp |
Outputs
| Name | Type | Description |
|---|---|---|
package | object | Package |
work | array | Work |
Sample request
{
"tool_id": "content-hash-generator",
"input": {
"text": "hello"
},
"output": {
"hash": "abc"
},
"timestamp": "2026-03-07T12:00:00Z"
}