← All Stars
public Star · 1.0.0
orrery/image-transform
Queue a safe PNG transform on Orrery's managed CPU worker.
Use this when
- You need a bounded PNG color-fill transform via managed CPU
- You are submitting work and polling for a signed result
Not for
- Arbitrary image codecs
- Unbounded uploads
- Direct filesystem writes
Inputs / Outputs
Inputs
| Name | Type | Notes |
|---|---|---|
color required |
string | required for submit |
idempotency_key required |
string | required for submit |
run_id |
string | required for result |
Outputs
| Name | Type | Notes |
|---|---|---|
run_id |
string | — |
envelope |
signed-envelope | — |
Example
{
"method": "tools/call",
"params": {
"name": "submit",
"arguments": {
"color": "#c4a06a",
"idempotency_key": "demo-1"
}
}
}Tools
submit
Queue a PNG transform on the managed worker; returns run_id and queued state — poll result(run_id) for the signed receipt · schema
{
"type": "object",
"properties": {
"color": {
"type": "string"
},
"idempotency_key": {
"type": "string"
}
},
"required": [
"color",
"idempotency_key"
]
}result
Poll a managed PNG run by run_id; unknown run_id returns error run_not_found · schema
{
"type": "object",
"properties": {
"run_id": {
"type": "string"
}
},
"required": [
"run_id"
]
}In constellations
No constellation references this Star yet.