{"x402Version":2,"type":"bazaar-listing","service":{"name":"HALOWERK agentenwerk","url":"https://agent.halowerk.com","version":"1.0.0","icon":"https://agent.halowerk.com/favicon.svg"},"items":[{"id":"agentenwerk.webhook_inbox","name":"webhook_inbox","title":"Create a short-lived public receive URL, then poll it for the events that arrived, parsed and in order.","description":"Gives an agent without a reachable server a place to receive callbacks. create returns a public URL that accepts any POST, GET or PUT from a third party; poll returns the events that arrived since a cursor you carry forward, with headers, parsed body and arrival time. The inbox expires after at most seven days and holds at most 500 events, oldest dropped first. Reading requires the secret returned at creation. Do not point payment or authentication callbacks here: anyone who learns the URL can post to it, and stored bodies are readable with the secret alone.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/webhook-inbox","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["action"],"additionalProperties":false,"properties":{"action":{"type":"string","enum":["create","poll","delete"],"description":"create makes a new inbox, poll reads events, delete removes it."},"inbox_id":{"type":"string","minLength":8,"maxLength":64,"description":"Required for poll and delete."},"secret":{"type":"string","minLength":8,"maxLength":128,"description":"The secret returned by create. Required for poll and delete."},"cursor":{"type":"integer","minimum":0,"default":0,"description":"Only events with a higher sequence number are returned."},"limit":{"type":"integer","minimum":1,"maximum":200,"default":50,"description":"Maximum events per poll."},"ttl_seconds":{"type":"integer","minimum":60,"maximum":604800,"default":3600,"description":"Lifetime of a new inbox, at most seven days."},"max_events":{"type":"integer","minimum":1,"maximum":500,"default":100,"description":"How many events the inbox keeps before dropping the oldest."},"note":{"type":"string","maxLength":200,"description":"Free label carried through."}}},"outputSchema":{"type":"object"},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.state_store","name":"state_store","title":"Store, read, list and delete small pieces of agent state under a namespace, with a mandatory expiry so nothing is kept forever.","description":"Key-value state for agents that need to survive between calls. Every write carries a time-to-live; the maximum is 30 days and there is no way to store something permanently. Values are opaque JSON up to 64 KB, at most 1000 live keys per namespace. Actions: set, get, list, delete. A get on a missing or expired key answers found=false, it is not an error. The namespace is a plain string chosen by the caller and is not authenticated — anyone who knows it can read it, so do not put secrets in it. Expired rows are removed on access, not on a timer, so a list can lag a few seconds behind the exact expiry moment.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/state-store","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["action","namespace"],"additionalProperties":false,"properties":{"action":{"type":"string","enum":["set","get","list","delete"],"description":"What to do."},"namespace":{"type":"string","minLength":3,"maxLength":128,"description":"Namespace the key lives in. Not a secret and not authenticated."},"key":{"type":"string","minLength":1,"maxLength":256,"description":"Key. Required for set, get and delete."},"value":{"description":"Any JSON value. Required for set. Serialised size must stay under 64 KB."},"ttl_seconds":{"type":"integer","minimum":1,"maximum":2592000,"default":3600,"description":"Lifetime in seconds, at most 30 days."},"limit":{"type":"integer","minimum":1,"maximum":500,"default":100,"description":"Maximum keys returned by list."}}},"outputSchema":{"type":"object"},"price":{"amount":"2000","currency":"USDC","decimals":6,"human":"0.002 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.wakeup_schedule","name":"wakeup_schedule","title":"Schedule one HTTP callback to your own URL at a fixed time, then check or cancel it — for agents that are not running when the moment arrives.","description":"Books a single POST to a URL you own, at a time you name, with a payload you supply. Delivery is retried up to five times with growing gaps and every attempt is recorded with its status. Lead time is between 10 seconds and 30 days, and at most 200 pending wakeups per target URL. The target must be a public https address: private, loopback and link-local addresses are refused, so this cannot be pointed at an internal network. Delivery is at-least-once and the time is a floor, not a guarantee — the dispatcher checks every 15 seconds, so expect a few seconds of lag. Actions: schedule, status, cancel, list.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/wakeup","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["action"],"additionalProperties":false,"properties":{"action":{"type":"string","enum":["schedule","status","cancel","list"],"description":"What to do."},"target_url":{"type":"string","maxLength":2000,"description":"Public https URL that receives the POST. Required for schedule and list."},"due_at":{"type":"string","description":"Absolute time as ISO 8601, e.g. 2026-08-12T09:00:00Z. Either this or delay_seconds."},"delay_seconds":{"type":"integer","minimum":10,"maximum":2592000,"description":"Relative lead time in seconds. Either this or due_at."},"payload":{"description":"JSON body delivered with the callback. Up to 16 KB."},"header_name":{"type":"string","maxLength":64,"description":"Optional header name sent with the callback, e.g. X-Agent-Token."},"header_value":{"type":"string","maxLength":512,"description":"Value for that header. Stored as given."},"wakeup_id":{"type":"string","minLength":8,"maxLength":64,"description":"Required for status and cancel."},"note":{"type":"string","maxLength":200,"description":"Free label carried through."},"limit":{"type":"integer","minimum":1,"maximum":100,"default":25,"description":"Maximum entries returned by list."}}},"outputSchema":{"type":"object"},"price":{"amount":"2000","currency":"USDC","decimals":6,"human":"0.002 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.job_runner","name":"job_runner","title":"Hand over a list of up to 50 HTTP calls, get an immediate job id, and have the collected results posted to your callback when they are done.","description":"For work that outlives one HTTP response. You submit steps, each an HTTP request against a public address; the job is acknowledged at once and runs in the background, and the collected results are POSTed to your callback URL when finished. Every step reports its status, timing, response headers and body up to 256 KB, and a failing step never aborts the others. Price is 0.003 USDC per step, quoted before payment. Only http and https against public hosts are performed — private and loopback addresses are refused and no supplied code is ever executed. Steps run one after another with a 20 second cap each, so a 50-step job can take several minutes. Actions: submit, status, cancel.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/job-runner","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["action"],"additionalProperties":false,"properties":{"action":{"type":"string","enum":["submit","status","cancel"],"description":"What to do."},"steps":{"type":"array","minItems":1,"maxItems":50,"description":"The calls to make, in order. Required for submit.","items":{"type":"object","required":["url"],"additionalProperties":false,"properties":{"url":{"type":"string","maxLength":2000,"description":"Public http or https address."},"method":{"type":"string","enum":["GET","POST","PUT","HEAD"],"default":"GET","description":"HTTP method."},"headers":{"type":"object","description":"Extra request headers."},"body":{"description":"Request body. Objects are sent as JSON."},"label":{"type":"string","maxLength":100,"description":"Name for this step in the result."}}}},"callback_url":{"type":"string","maxLength":2000,"description":"Public https URL that receives the finished job. Required for submit."},"callback_header_name":{"type":"string","maxLength":64,"description":"Optional header sent with the callback."},"callback_header_value":{"type":"string","maxLength":512,"description":"Value for that header."},"job_id":{"type":"string","minLength":8,"maxLength":64,"description":"Required for status and cancel."},"token":{"type":"string","minLength":16,"maxLength":128,"description":"The token from submit. Required for status and cancel."},"include_results":{"type":"boolean","default":false,"description":"Return the collected results with status as well as via callback."},"note":{"type":"string","maxLength":200,"description":"Free label carried through."}}},"outputSchema":{"type":"object"},"price":{"amount":"3000","currency":"USDC","decimals":6,"human":"0.003 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"3000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.file_vault","name":"file_vault","title":"Park a file for a limited time and get back an unguessable download URL that anyone you send it to can fetch without a wallet.","description":"Takes a base64 file up to 25 MB and stores it for as long as you say, at most seven days. You get a download URL carrying a 32-byte token; whoever holds the link can fetch the file once or up to a limit you set, with no payment and no account. Price is 0.004 USDC per started megabyte, quoted before payment from the size you declare. Actions: store, status, delete. Anything expired is deleted with its contents, and a link is only as private as you keep it, so this is not a place for personal or secret material. Content is stored and served unchanged and is never inspected or scanned.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/file-vault","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["action"],"additionalProperties":false,"properties":{"action":{"type":"string","enum":["store","status","delete"],"description":"What to do."},"content_base64":{"type":"string","description":"File content, base64 encoded. Required for store."},"filename":{"type":"string","maxLength":255,"description":"Name suggested to the downloader."},"content_type":{"type":"string","maxLength":128,"default":"application/octet-stream","description":"MIME type served on download."},"ttl_seconds":{"type":"integer","minimum":60,"maximum":604800,"default":3600,"description":"Lifetime, at most seven days."},"max_downloads":{"type":"integer","minimum":1,"maximum":1000,"description":"Delete after this many downloads. Unlimited within the lifetime if omitted."},"size_bytes":{"type":"integer","minimum":1,"maximum":26214400,"description":"Declared size, used to quote the price before payment. Must match the real size."},"file_id":{"type":"string","minLength":8,"maxLength":64,"description":"Required for status and delete."},"token":{"type":"string","minLength":16,"maxLength":128,"description":"The token returned by store. Required for status and delete."},"note":{"type":"string","maxLength":200,"description":"Free label carried through."}}},"outputSchema":{"type":"object"},"price":{"amount":"4000","currency":"USDC","decimals":6,"human":"0.004 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"4000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.a2a_card_validate","name":"a2a_card_validate","title":"Check an A2A Agent Card for required fields, skill definitions, authentication declarations and transport hygiene, and get every deviation listed with its JSON path.","description":"Validates an Agent Card document against the A2A convention and returns findings by severity: error (the card is unusable as published), warning (works, but a consuming agent will guess), info (recommended field absent). Checked: the required fields name, description, url, version, capabilities and skills; that url is absolute and https; that every skill carries id, name, description and tags and that skill ids are unique; that declared securitySchemes use a known type and that every entry in security refers to a defined scheme; that input and output modes are declared; that streaming and pushNotifications are booleans. This endpoint does not fetch the card and never contacts the agent: it judges only the document handed to it, so a passing card is not proof that the endpoint is reachable or honest.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/a2a-card-validate","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["card"],"additionalProperties":false,"properties":{"card":{"type":"object","description":"The Agent Card document as JSON."},"strict":{"type":"boolean","default":false,"description":"If true, recommended-field findings count as warnings and lower the verdict."}}},"outputSchema":{"type":"object"},"price":{"amount":"2000","currency":"USDC","decimals":6,"human":"0.002 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.mcp_inspect","name":"mcp_inspect","title":"Look at a remote MCP server from the outside: whether it answers, which protocol it speaks, and the tools, resources and prompts it offers with their schemas.","description":"Performs the MCP handshake against a streamable-HTTP endpoint and then reads the catalogue: tools with their input schemas, resources with their URIs and mime types, and prompts with their arguments. Servers answering as an event stream are handled as well as plain JSON, and a session id is carried across calls. Only listing methods are sent — no tool of the inspected server is ever executed, nothing is written, and no resource contents are read. The target must be a public address; private and loopback addresses are refused. An unreachable or non-conforming server yields a reachable=false report with the reason, not an error.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/mcp-inspect","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["url"],"additionalProperties":false,"properties":{"url":{"type":"string","maxLength":2000,"description":"The MCP endpoint, e.g. https://example.com/mcp. Public https address."},"include":{"type":"array","default":["tools","resources","prompts"],"items":{"type":"string","enum":["tools","resources","prompts"]},"description":"Which catalogues to read."},"include_schemas":{"type":"boolean","default":true,"description":"Return the full input schema per tool. If false, only names and descriptions."}}},"outputSchema":{"type":"object"},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.mcp_normalize","name":"mcp_normalize","title":"Bring MCP tool definitions from different servers into one shape: uniform input schemas, a field list, a synthetic example call and a common set of error codes.","description":"Takes a list of MCP tool definitions, as returned by tools/list on any number of servers, and rewrites them into one common form. Servers disagree on where the schema lives — inputSchema, input_schema, parameters, schema or arguments are all in use — and a consumer reading only one of them loses the others silently; every spelling is accepted and the one found is reported. For each tool the result carries a flat field list with type, required flag and description, a synthetic example call built from the schema, and the tool name normalised to snake_case. Name collisions across servers are detected and reported with the servers involved. The example call shows the shape only: values like \"string\" and 0 are placeholders and must never be sent to a live server. No network access happens here — only the definitions handed in are read.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/mcp-normalize","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["tools"],"additionalProperties":false,"properties":{"tools":{"type":"array","minItems":1,"maxItems":200,"description":"The MCP tool definitions to normalise.","items":{"type":"object","required":["name"],"properties":{"name":{"type":"string","minLength":1,"description":"Tool name."},"server":{"type":"string","description":"Which server the tool came from. Used for collision reporting."}}}},"include_examples":{"type":"boolean","default":true,"description":"Build a synthetic example call per tool."},"naming":{"type":"string","enum":["snake_case","preserve"],"default":"snake_case","description":"How to normalise tool names."}}},"outputSchema":{"type":"object"},"price":{"amount":"2000","currency":"USDC","decimals":6,"human":"0.002 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.fallback_resolve","name":"fallback_resolve","title":"Find paid x402 endpoints that can stand in for one that stopped answering, ranked by how well they match the task and what they cost.","description":"Searches the public x402 discovery catalogue for services able to replace a broken dependency. Give the failed URL and, better still, a short description of what it did and the fields you need back; matches are scored on overlap between your task words and the candidate name, description and path, then ordered by score and price. Every hit carries the reason it matched, its price in USDC, its network and when the catalogue last saw it. The endpoint that failed is excluded from its own replacement list. This reads a public index and never calls a candidate: a listed service is not proof that it works today, and the input schema of a replacement will differ, so treat the result as a shortlist to test, not a drop-in.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/fallback-resolve","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["failed_url"],"additionalProperties":false,"properties":{"failed_url":{"type":"string","maxLength":2000,"description":"The endpoint that stopped working."},"task":{"type":"string","maxLength":500,"description":"What it did, in a few words. The single strongest signal for a good match."},"required_fields":{"type":"array","items":{"type":"string"},"default":[],"description":"Field names you need in the answer. Candidates mentioning them score higher."},"max_price_usdc":{"type":"number","minimum":0,"description":"Ignore candidates above this price per call."},"network":{"type":"string","maxLength":64,"description":"Only candidates on this network, e.g. eip155:8453."},"limit":{"type":"integer","minimum":1,"maximum":25,"default":10,"description":"How many candidates to return."}}},"outputSchema":{"type":"object"},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.task_quote_compare","name":"task_quote_compare","title":"Compare competing agent offers for one task on price, delivery time, required capabilities and output format, and get a ranked list with the reason for every position.","description":"Normalises offers that describe the same task in different shapes and ranks them. Each offer may carry a price, a delivery time, a list of capabilities and one or more delivery formats. You state which capabilities and formats the task requires; offers missing a required capability or format are marked ineligible and ranked last, never silently dropped. The ranking is a weighted score over price, speed and capability coverage, with weights you supply and which are echoed back. Every ranked entry carries the sub-scores it was built from, so the order can be recomputed by hand. Prices must already be in one currency: no conversion happens here, and a mixed-currency input is rejected rather than compared wrongly.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/task-quote-compare","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["offers"],"additionalProperties":false,"properties":{"offers":{"type":"array","minItems":1,"maxItems":25,"description":"The competing offers.","items":{"type":"object","required":["agent"],"additionalProperties":false,"properties":{"agent":{"type":"string","minLength":1,"maxLength":128,"description":"Name of the offering agent."},"price":{"type":"number","minimum":0,"description":"Price for the whole task."},"currency":{"type":"string","minLength":2,"maxLength":10,"default":"USDC","description":"Currency. Must be the same across all offers."},"delivery_seconds":{"type":"integer","minimum":0,"description":"Promised delivery time in seconds."},"capabilities":{"type":"array","items":{"type":"string"},"default":[],"description":"What the agent says it can do."},"formats":{"type":"array","items":{"type":"string"},"default":[],"description":"Delivery formats offered, e.g. json, pdf, markdown."},"note":{"type":"string","maxLength":500,"description":"Free text carried through unchanged."}}}},"required_capabilities":{"type":"array","items":{"type":"string"},"default":[],"description":"Capabilities the task cannot do without."},"required_formats":{"type":"array","items":{"type":"string"},"default":[],"description":"Acceptable delivery formats. An offer matching any one of them qualifies."},"max_price":{"type":"number","minimum":0,"description":"Offers above this are marked ineligible."},"max_delivery_seconds":{"type":"integer","minimum":0,"description":"Offers slower than this are marked ineligible."},"weights":{"type":"object","additionalProperties":false,"description":"Weighting of the three criteria. Normalised to sum 1.","properties":{"price":{"type":"number","minimum":0,"default":0.4},"speed":{"type":"number","minimum":0,"default":0.3},"capability":{"type":"number","minimum":0,"default":0.3}}}}},"outputSchema":{"type":"object"},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.result_consensus","name":"result_consensus","title":"Compare several agent answers to the same question, report where they agree, and list every field where they contradict each other with the competing values.","description":"Takes two to twelve answers and returns a field-by-field comparison. For JSON answers every leaf path is compared across responders: a path is agreed when all responders that supplied it carry the same value, conflicting when they differ, and partial when some omitted it. Numbers count as equal inside a relative tolerance you set. For plain-text answers the comparison is word-overlap similarity, which measures shared vocabulary and not meaning — two correct answers in different words will score low, and that is reported as low agreement, not as a contradiction. The result names a majority value per conflicting path together with how many responders backed it. This endpoint does not decide who is right: it has no ground truth and no model, it only shows where the answers part company.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/result-consensus","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["answers"],"additionalProperties":false,"properties":{"answers":{"type":"array","minItems":2,"maxItems":12,"description":"The answers to compare. Two to twelve entries.","items":{"type":"object","required":["responder","value"],"additionalProperties":false,"properties":{"responder":{"type":"string","minLength":1,"maxLength":128,"description":"Name of the answering agent."},"value":{"description":"The answer: a JSON document or a string."},"weight":{"type":"number","minimum":0,"maximum":100,"default":1,"description":"Optional weight for the majority count."}}}},"number_tolerance":{"type":"number","minimum":0,"maximum":1,"default":0.001,"description":"Relative tolerance below which two numbers count as equal."},"text_similarity_threshold":{"type":"number","minimum":0,"maximum":1,"default":0.6,"description":"Word-overlap ratio from which two texts count as agreeing."}}},"outputSchema":{"type":"object"},"price":{"amount":"2000","currency":"USDC","decimals":6,"human":"0.002 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.twin_diff","name":"twin_diff","title":"Compare a desired state document against an observed one field by field and get every deviation with its absolute and relative size, the tolerance that was applied and the declared unit.","description":"Takes two state documents — target (what the twin should look like) and observed (what was measured) — and returns a leaf-by-leaf comparison. Every leaf path carries one of five states: in_tolerance, out_of_tolerance, missing_in_observed, unexpected_in_observed or type_mismatch. Numeric leaves are judged against a tolerance you set per path, either absolute (tolerance_abs) or relative (tolerance_ratio); paths without an entry fall back to default_tolerance_ratio, which is 0, meaning exact equality. Strings, booleans and null are compared for equality only, with optional case folding for strings. Arrays are addressed by index, so a reordered list reads as a set of deviations and not as a match. Units are never inferred from field names: a unit appears in the result only where you declared one, otherwise unit is null and unit_source says not_declared. This endpoint is stateless — it stores no twin, tracks no history and performs no synchronisation; it reports the gap between the two documents handed to it at this moment and nothing else.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/twin-diff","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["target","observed"],"additionalProperties":false,"properties":{"target":{"type":"object","description":"The desired state document (the twin)."},"observed":{"type":"object","description":"The observed state document (the measurement)."},"tolerances":{"type":"array","maxItems":200,"description":"Per-path tolerances. Give tolerance_abs or tolerance_ratio, not both.","items":{"type":"object","required":["field"],"additionalProperties":false,"properties":{"field":{"type":"string","minLength":1,"maxLength":400,"description":"Leaf path as it appears in the result, e.g. /pump/pressure_bar. A trailing /* applies the entry to every leaf below that prefix."},"unit":{"type":"string","maxLength":32,"description":"Unit of this field, echoed into the result. Declared by you, never inferred."},"tolerance_abs":{"type":"number","minimum":0,"description":"Absolute tolerance in the unit of this field."},"tolerance_ratio":{"type":"number","minimum":0,"maximum":1,"description":"Relative tolerance as a ratio of the larger of the two values."}}}},"default_tolerance_ratio":{"type":"number","minimum":0,"maximum":1,"default":0,"description":"Relative tolerance for numeric paths without their own entry. 0 means exact equality."},"ignore_fields":{"type":"array","maxItems":200,"items":{"type":"string","minLength":1,"maxLength":400},"description":"Paths to leave out of the comparison. A trailing /* ignores everything below that prefix."},"case_insensitive_strings":{"type":"boolean","default":false,"description":"Compare string leaves without regard to case."},"max_fields":{"type":"integer","minimum":1,"maximum":2000,"default":2000,"description":"Reject the request if the two documents together hold more leaf paths than this."}}},"outputSchema":{"type":"object"},"price":{"amount":"3000","currency":"USDC","decimals":6,"human":"0.003 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"3000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.memory_compact","name":"memory_compact","title":"Compact a long agent conversation to a character budget in four declared stages and get back exactly which messages stayed verbatim, which were trimmed and which were dropped, with the loss quantified.","description":"Takes a message history and a character budget and returns a shortened history together with a full account of what it cost. Four stages run in fixed order: pin protects messages that must survive (roles listed in keep_roles, the last keep_last_n messages, and anything you marked pin), dedupe removes later near-duplicates of an earlier message of the same role using word-overlap similarity, trim shortens unprotected survivors to max_message_chars at the last sentence boundary, and drop removes the lowest-scoring unprotected messages until the budget is met. The score is disclosed in the response and is a fixed weighting of recency, role and overlap with the vocabulary of the whole history. This endpoint uses no language model and does not summarise, paraphrase or rewrite anything: every character in the output appears verbatim in the input, and nothing is appended, not even an ellipsis. Consequences follow from that and are reported rather than hidden — word overlap measures shared vocabulary and not meaning, so two differently worded messages about the same fact are not recognised as duplicates, and trimming cuts at a sentence boundary and can therefore remove the point of a long message. Protected messages are never dropped, so a budget smaller than the protected content cannot be met; the response then says budget_met false and reports the shortfall instead of discarding something it promised to keep.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/memory-compact","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["messages","budget_chars"],"additionalProperties":false,"properties":{"messages":{"type":"array","minItems":2,"maxItems":200,"description":"The conversation in order, oldest first.","items":{"type":"object","required":["role","content"],"additionalProperties":false,"properties":{"role":{"type":"string","enum":["system","user","assistant","tool"],"description":"Speaker role."},"content":{"type":"string","minLength":1,"maxLength":8000,"description":"Message text."},"id":{"type":"string","maxLength":128,"description":"Optional caller-side identifier, echoed unchanged."},"pin":{"type":"boolean","default":false,"description":"If true this message is protected: never trimmed, never dropped."}}}},"budget_chars":{"type":"integer","minimum":100,"maximum":400000,"description":"Character budget for the sum of all returned message contents."},"keep_last_n":{"type":"integer","minimum":0,"maximum":50,"default":5,"description":"How many of the most recent messages are protected."},"keep_roles":{"type":"array","maxItems":4,"default":["system"],"items":{"type":"string","enum":["system","user","assistant","tool"]},"description":"Roles whose messages are protected."},"duplicate_threshold":{"type":"number","minimum":0.5,"maximum":1,"default":0.9,"description":"Word-overlap ratio from which a later message of the same role counts as a near-duplicate of an earlier one."},"max_message_chars":{"type":"integer","minimum":80,"maximum":4000,"default":400,"description":"Length to which unprotected survivors are trimmed in the trim stage."}}},"outputSchema":{"type":"object"},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.state_machine_step","name":"state_machine_step","title":"Apply one event to a state machine definition and get back the next state, the actions it triggers, whether a deadline was breached and which events the machine will accept next.","description":"Takes a machine definition, the current state, one event and an optional context, and computes a single step. Transitions may carry a guard, which is a declared comparison — field, operator, value — and never an expression: the field is a dotted path into context or payload, so a machine handed in by a stranger cannot execute anything on this server. Supported operators are eq, ne, gt, gte, lt, lte, in, not_in, exists and not_exists; a guard whose field does not resolve evaluates to false and says so rather than passing silently. Deadlines are computed from elapsed_in_state_s, which you supply, so the result does not depend on this server clock and the same request always yields the same answer. When a state carries timeout_s and the elapsed time exceeds it, timeout_precedence decides whether the timeout transition or a matching event transition wins; the default is timeout. A breached deadline is reported even when the state defines no timeout_target, in which case the machine does not move on account of it. The definition is checked for referential integrity before the step runs: transitions pointing at states that do not exist, and an initial state that does not exist, are rejected as a bad machine rather than silently followed. This endpoint is stateless: it stores no machine, no state and no history, and it applies exactly one step per call — use /v1/state-store to keep the state between calls.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/state-machine-step","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["machine","current_state","event"],"additionalProperties":false,"properties":{"machine":{"type":"object","required":["initial","states"],"additionalProperties":false,"description":"The automaton definition.","properties":{"initial":{"type":"string","minLength":1,"maxLength":64,"description":"Name of the initial state. Must be one of the defined states."},"states":{"type":"array","minItems":1,"maxItems":200,"description":"The states of the machine.","items":{"type":"object","required":["name"],"additionalProperties":false,"properties":{"name":{"type":"string","minLength":1,"maxLength":64,"description":"State name, unique within the machine."},"final":{"type":"boolean","default":false,"description":"If true no event is accepted in this state."},"timeout_s":{"type":"number","minimum":0,"maximum":31536000,"description":"Deadline for this state in seconds."},"timeout_target":{"type":"string","minLength":1,"maxLength":64,"description":"State to move to when the deadline is exceeded. Without it a breach is only reported."},"timeout_actions":{"type":"array","maxItems":20,"items":{"type":"string","minLength":1,"maxLength":64},"description":"Actions triggered by the deadline transition."},"on":{"type":"array","maxItems":50,"description":"Event-driven transitions out of this state, evaluated in order.","items":{"type":"object","required":["event","target"],"additionalProperties":false,"properties":{"event":{"type":"string","minLength":1,"maxLength":64,"description":"Event name this transition reacts to."},"target":{"type":"string","minLength":1,"maxLength":64,"description":"State to move to."},"actions":{"type":"array","maxItems":20,"items":{"type":"string","minLength":1,"maxLength":64},"description":"Actions triggered by this transition."},"guard":{"type":"object","required":["field","op"],"additionalProperties":false,"description":"Condition that must hold for this transition to be taken.","properties":{"field":{"type":"string","minLength":1,"maxLength":200,"description":"Dotted path starting with context. or payload., e.g. context.attempts."},"op":{"type":"string","enum":["eq","ne","gt","gte","lt","lte","in","not_in","exists","not_exists"],"description":"Comparison operator."},"value":{"description":"Right-hand operand. Not used by exists and not_exists; an array for in and not_in."}}}}}}}}}}},"current_state":{"type":"string","minLength":1,"maxLength":64,"description":"The state the machine is in right now."},"event":{"type":"object","required":["name"],"additionalProperties":false,"description":"The event to apply.","properties":{"name":{"type":"string","minLength":1,"maxLength":64,"description":"Event name."},"payload":{"type":"object","description":"Event data, addressable in guards as payload.<field>."}}},"context":{"type":"object","description":"Machine context, addressable in guards as context.<field>. Never modified."},"elapsed_in_state_s":{"type":"number","minimum":0,"maximum":31536000,"default":0,"description":"Seconds already spent in current_state. Supplied by you, so the result does not depend on this server clock."},"timeout_precedence":{"type":"string","enum":["timeout","event"],"default":"timeout","description":"Which side wins when the deadline is breached and an event transition also matches."}}},"outputSchema":{"type":"object"},"price":{"amount":"2000","currency":"USDC","decimals":6,"human":"0.002 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.intent_clarify","name":"intent_clarify","title":"Given several candidate intents and what tells them apart, get the single follow-up question that narrows the set fastest, with the expected and worst-case number of candidates left after each possible answer.","description":"Takes a list of candidate intents, each described by attributes, plus whatever is already known, and returns the one attribute worth asking about next. Candidates contradicted by the known values are ruled out first and listed with the attribute that excluded them; a candidate that simply does not declare a known attribute is kept, because silence is not a contradiction. For every remaining attribute the endpoint builds the branches an answer would create and ranks them by the prior-weighted expected number of candidates left, then by the worst case, then by the number of options; a candidate that does not declare the attribute survives every branch, which is counted rather than ignored. Attributes on which all remaining candidates agree carry no information and are returned separately as unusable_attributes, so they are not asked by mistake. When an attribute has more distinct values than max_options, the largest options are shown and the omitted values are named explicitly — nothing is capped silently. The answer also carries a greedy worst-case estimate of how many further questions would be needed. This endpoint uses no language model and does not read natural language: it never invents a candidate, an attribute or a value, and the question wording is a fixed template over the attribute name unless you supply your own phrasing in attribute_prompts. It is stateless — it remembers no dialogue, so pass the accumulated answers back in known on the next call.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/intent-clarify","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["candidates"],"additionalProperties":false,"properties":{"candidates":{"type":"array","minItems":2,"maxItems":50,"description":"The competing intents, two to fifty.","items":{"type":"object","required":["id","attributes"],"additionalProperties":false,"properties":{"id":{"type":"string","minLength":1,"maxLength":128,"description":"Identifier, unique within the call."},"label":{"type":"string","maxLength":300,"description":"Optional human-readable name, echoed unchanged."},"attributes":{"type":"object","description":"What distinguishes this candidate. Values must be scalar.","additionalProperties":{"type":["string","number","boolean","null"]}},"prior":{"type":"number","minimum":0,"maximum":1000,"default":1,"description":"Relative likelihood of this candidate before asking. Used to weight the expected outcome."}}}},"known":{"type":"object","description":"Attribute values already established, for example from earlier answers.","additionalProperties":{"type":["string","number","boolean","null"]}},"ask_about":{"type":"array","maxItems":50,"items":{"type":"string","minLength":1,"maxLength":128},"description":"Restrict the question to these attributes. Empty or absent means all of them."},"max_options":{"type":"integer","minimum":2,"maximum":10,"default":5,"description":"How many answer options the question may offer. Excess values are named under omitted_values, never dropped silently."},"attribute_prompts":{"type":"object","description":"Your own question wording per attribute. Used verbatim where given.","additionalProperties":{"type":"string","maxLength":300}}}},"outputSchema":{"type":"object"},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.ephemeral_rag","name":"ephemeral_rag","title":"Create, update, query, inspect or delete an isolated micro vector store whose documents and embeddings are automatically erased after 24 hours.","description":"Stores at most 20 short documents in an isolated SQLite row, embeds them with the local nomic-embed-text model, and performs cosine-similarity retrieval. Each store has a random identifier and a fixed 24-hour lifetime that is never extended by reads or writes. An in-process sweeper deletes expired rows every minute and each request also purges expiry. Input text is not written to request logs. This is retrieval infrastructure, not a durable database or an answer-generating model.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/ephemeral-rag","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","required":["action"],"additionalProperties":false,"properties":{"action":{"type":"string","enum":["create","upsert","query","status","delete"]},"store_id":{"type":"string","minLength":30,"maxLength":80},"documents":{"type":"array","minItems":1,"maxItems":20,"items":{"type":"object","required":["id","text"],"additionalProperties":false,"properties":{"id":{"type":"string","minLength":1,"maxLength":100},"text":{"type":"string","minLength":1,"maxLength":5000},"metadata":{"type":"object","maxProperties":20,"additionalProperties":{"type":["string","number","boolean","null"]}}}}},"query":{"type":"string","minLength":1,"maxLength":5000},"top_k":{"type":"integer","minimum":1,"maximum":10,"default":5}}},"outputSchema":{"type":"object"},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_tofu_encrypted_state_roundtrip","name":"oss_tofu_encrypted_state_roundtrip","title":"Encrypt a state snapshot through the pinned OpenTofu mechanism and get proof that an authorized key recovers it exactly and a wrong key does not.","description":"Takes an OpenTofu state snapshot and a passphrase, encrypts the snapshot through the pinned OpenTofu state-encryption code, then proves the result three ways: the authorized key recovers the state with an identical semantic hash, a wrong key is rejected, and a tampered payload is rejected. What comes back is the encrypted artifact plus those proofs and the resource-instance count, never the plaintext. The point is to establish before you rely on it that a state backup is actually recoverable and actually protected, rather than merely encrypted. The work runs in a worker with no network, no elevated rights and a private artifact directory that is removed when the job ends. Your passphrase is not returned and not logged.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-tofu-encrypted-state-roundtrip","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","properties":{"state_json":{"type":"string","minLength":1,"maxLength":2097152},"passphrase":{"type":"string","minLength":32,"maxLength":1024}},"required":["state_json","passphrase"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"operation":{"const":"encrypted-state-roundtrip"},"result":{"type":"object","properties":{"encrypted_state":{"type":"object","properties":{"filename":{"const":"encrypted-state.json"},"media_type":{"const":"application/json"},"bytes":{"type":"integer","minimum":1,"maximum":16777216},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"result_reference":{"type":"string","pattern":"^urn:halowerk:job-artifact:[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}:encrypted-state[.]json$"}},"required":["filename","media_type","bytes","sha256","result_reference"],"additionalProperties":false},"plaintext_semantic_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"recovered_semantic_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"wrong_key_rejected":{"const":true},"tamper_rejected":{"const":true},"resource_instances":{"type":"integer","minimum":0,"maximum":256},"method":{"const":"OpenTofu AES-GCM with PBKDF2"},"key_returned":{"const":false},"warnings":{"type":"array","items":{"type":"string","minLength":1,"maxLength":1024},"minItems":0,"maxItems":32}},"required":["encrypted_state","plaintext_semantic_sha256","recovered_semantic_sha256","wrong_key_rejected","tamper_rejected","resource_instances","method","key_returned","warnings"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenTofu"},"version":{"const":"1.12.6"},"source_commit":{"const":"b4305e5a5dd2fb79a27897ae30784a181d3a26cb"},"binary_sha256":{"const":"64445c0e89fe1066cfd6155c01f3119ffbafd5631d61061e6dc8d759edd37cd0"},"provider_bundle_sha256":{"const":"4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945"},"components":{"const":["encryption","aesgcm","pbkdf2"]},"input_semantic_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"}},"required":["project","version","source_commit","binary_sha256","provider_bundle_sha256","components","input_semantic_sha256"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0,"maximum":90000}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"3500","currency":"USDC","decimals":6,"human":"0.0035 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"3500","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_openrewrite_java_package_relocation","name":"oss_openrewrite_java_package_relocation","title":"Move a Java package across a source set using OpenRewrite's type-attributed refactoring, with before-and-after compilation as evidence it still builds.","description":"Relocates a Java package across a bounded set of source files using OpenRewrite, which works on a type-attributed syntax tree rather than on text. That is the difference that matters: a textual search and replace hits strings, comments and same-named symbols from other packages, while this changes only what actually refers to the package. Both the before and after state are compiled and the result is reported, so a refactoring that breaks the build says so instead of being handed over as done. A unified diff and a per-file changed/unchanged list come back with it. The source set is what you supply — imports from files outside it cannot be updated and are not guessed at.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-openrewrite-java-package-relocation","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","properties":{"files":{"type":"array","items":{"type":"object","properties":{"path":{"type":"string","maxLength":256,"pattern":"^src/(?:[A-Za-z_][A-Za-z0-9_]*/)*(?:[A-Za-z_][A-Za-z0-9_]*|package-info)\\.java$"},"content":{"type":"string","minLength":1,"maxLength":16384}},"required":["path","content"],"additionalProperties":false},"minItems":1,"maxItems":32},"old_package":{"type":"string","maxLength":128,"pattern":"^[A-Za-z_][A-Za-z0-9_]*(\\.[A-Za-z_][A-Za-z0-9_]*)*$"},"new_package":{"type":"string","maxLength":128,"pattern":"^[A-Za-z_][A-Za-z0-9_]*(\\.[A-Za-z_][A-Za-z0-9_]*)*$"},"recursive":{"type":"boolean"}},"required":["files","old_package","new_package","recursive"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"operation":{"const":"java-package-relocation"},"result":{"type":"object","properties":{"status":{"enum":["changed","no_matches"]},"changed_file_count":{"type":"integer","minimum":0,"maximum":32},"files":{"type":"array","items":{"type":"object","properties":{"before_path":{"type":"string","maxLength":256,"pattern":"^src/(?:[A-Za-z_][A-Za-z0-9_]*/)*(?:[A-Za-z_][A-Za-z0-9_]*|package-info)\\.java$"},"after_path":{"type":"string","maxLength":256,"pattern":"^src/(?:[A-Za-z_][A-Za-z0-9_]*/)*(?:[A-Za-z_][A-Za-z0-9_]*|package-info)\\.java$"},"before_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"after_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"after_content":{"type":"string","minLength":1,"maxLength":32768}},"required":["before_path","after_path","before_sha256","after_sha256","after_content"],"additionalProperties":false},"minItems":0,"maxItems":32},"unchanged_files":{"type":"array","items":{"type":"object","properties":{"path":{"type":"string","maxLength":256,"pattern":"^src/(?:[A-Za-z_][A-Za-z0-9_]*/)*(?:[A-Za-z_][A-Za-z0-9_]*|package-info)\\.java$"},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"}},"required":["path","sha256"],"additionalProperties":false},"minItems":0,"maxItems":32},"unified_diff":{"type":"string","maxLength":1048576},"compilation":{"type":"object","properties":{"before_exit_code":{"const":0},"after_exit_code":{"const":0},"release":{"const":21},"annotation_processing":{"const":false},"user_program_executed":{"const":false},"compiler_bundle_sha256":{"const":"5ad8720a1793f2e6f8bf7b3d4c7d40a0c7c86922c46a08dafa2e8a9e63e891d0"},"before_class_count":{"type":"integer","minimum":0,"maximum":256},"after_class_count":{"type":"integer","minimum":0,"maximum":256}},"required":["before_exit_code","after_exit_code","release","annotation_processing","user_program_executed","compiler_bundle_sha256","before_class_count","after_class_count"],"additionalProperties":false},"native_validation":{"type":"object","properties":{"parse_errors":{"const":0},"missing_type_markers":{"const":0},"second_pass_changed_files":{"const":0},"recipe_runs":{"const":2}},"required":["parse_errors","missing_type_markers","second_pass_changed_files","recipe_runs"],"additionalProperties":false},"warnings":{"type":"array","items":{"type":"string","minLength":1,"maxLength":1024},"minItems":1,"maxItems":16}},"required":["status","changed_file_count","files","unchanged_files","unified_diff","compilation","native_validation","warnings"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenRewrite"},"version":{"const":"8.90.4"},"source_commit":{"const":"398a6349648ca802aa050bdb6fe45a99395dce47"},"runtime_bundle_sha256":{"const":"dd1543d7f77eb76c72a9fefa9136669c06e44f744067780fecc12b22ed4d2976"},"components":{"const":["recipe","run","result","source_set","java_parser","package_relocation","missing_types","package_tests"]},"canonical_request_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"}},"required":["project","version","source_commit","runtime_bundle_sha256","components","canonical_request_sha256"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0,"maximum":60000}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"4000","currency":"USDC","decimals":6,"human":"0.004 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"4000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_openrefine_table_collision_review_plan","name":"oss_openrefine_table_collision_review_plan","title":"Find duplicate keys in a table using native OpenRefine fingerprinting, and get a row-linked consolidation plan that separates safe merges from real conflicts.","description":"Clusters a key column with native OpenRefine fingerprinting and returns a consolidation plan tied to actual row ids. The plan distinguishes the two cases that matter: rows that repeat an identical value and can simply be merged, and rows that collide on the key but disagree in other fields — those are flagged as unresolved rather than silently collapsed, because merging them would destroy information. Excluded rows and singletons are reported too, so the plan accounts for every input row. Nothing is merged here: this produces the plan and the evidence for it, and the decision stays with the caller. The table is returned unchanged and the source hash proves it.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-openrefine-table-collision-review-plan","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","properties":{"table":{"type":"object","properties":{"columns":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":1,"maxItems":16},"rows":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"values":{"type":"array","items":{"anyOf":[{"type":"string","maxLength":4096},{"type":"null"}]},"minItems":1,"maxItems":16}},"required":["id","values"],"additionalProperties":false},"minItems":1,"maxItems":1000}},"required":["columns","rows"],"additionalProperties":false},"match_column":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"}},"required":["table","match_column"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"operation":{"const":"table-collision-review-plan"},"result":{"type":"object","properties":{"plan":{"type":"object","properties":{"artifact_id":{"type":"string","minLength":1,"maxLength":128},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"bytes":{"type":"integer","minimum":1,"maximum":8388608},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false},"source_table_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"native_projection_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"groups":{"type":"array","items":{"type":"object","properties":{"group_id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"row_ids":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":2,"maxItems":1000},"fingerprint":{"type":"string","minLength":1,"maxLength":4096},"preferred_value":{"type":"string","minLength":1,"maxLength":4096},"conflict_columns":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":0,"maxItems":15},"kind":{"enum":["native_fingerprint_collision","exact_value_repeat"]},"requires_review":{"const":true}},"required":["group_id","row_ids","fingerprint","preferred_value","conflict_columns","kind","requires_review"],"additionalProperties":false},"minItems":0,"maxItems":500},"excluded_rows":{"type":"array","items":{"type":"object","properties":{"row_id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"reason":{"enum":["null_match_value","empty_fingerprint"]}},"required":["row_id","reason"],"additionalProperties":false},"minItems":0,"maxItems":1000},"singleton_row_ids":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":0,"maxItems":1000},"native_distinct_value_cluster_count":{"type":"integer","minimum":0,"maximum":500},"source_rows":{"type":"integer","minimum":1,"maximum":1000},"source_unchanged":{"const":true},"automatic_merges_applied":{"const":0},"scope":{"const":"lexical_collision_candidates_not_confirmed_entity_identity"},"warnings":{"type":"array","items":{"type":"string","minLength":1,"maxLength":1024},"minItems":1,"maxItems":16}},"required":["plan","source_table_sha256","native_projection_sha256","groups","excluded_rows","singleton_row_ids","native_distinct_value_cluster_count","source_rows","source_unchanged","automatic_merges_applied","scope","warnings"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenRefine"},"version":{"const":"3.10-SNAPSHOT"},"source_commit":{"const":"1e6e28f4fc3724ff4bfd55de1bfe2ca1b6b41141"},"runtime_bundle_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"components":{"const":["FingerprintKeyer","BinningClusterer","Project","Engine"]},"canonical_request_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"java_locale":{"const":"ROOT"},"timezone":{"const":"UTC"}},"required":["project","version","source_commit","runtime_bundle_sha256","components","canonical_request_sha256","java_locale","timezone"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0,"maximum":180000}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"3500","currency":"USDC","decimals":6,"human":"0.0035 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"3500","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_openrefine_verified_table_recipe_replay","name":"oss_openrefine_verified_table_recipe_replay","title":"Run a table transformation recipe through native OpenRefine and get the result back with proof: the recipe is persisted, reopened and replayed from the original input.","description":"Executes a caller-directed sequence of table operations in native OpenRefine and returns the transformed table together with the exported recipe. What distinguishes it from simply transforming data is the evidence: the recipe is persisted, the project is reopened, and the whole thing is replayed from the original input, with hashes reported at each stage. If the replay does not reproduce the result, that is visible in the output instead of being discovered months later when someone tries to rerun the pipeline. This makes a transformation auditable and portable. Steps are taken as supplied and are not validated for business sense — the guarantee is reproducibility, not correctness of intent.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-openrefine-verified-table-recipe-replay","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","properties":{"table":{"type":"object","properties":{"columns":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":1,"maxItems":16},"rows":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"values":{"type":"array","items":{"anyOf":[{"type":"string","maxLength":4096},{"type":"null"}]},"minItems":1,"maxItems":16}},"required":["id","values"],"additionalProperties":false},"minItems":1,"maxItems":1000}},"required":["columns","rows"],"additionalProperties":false},"steps":{"type":"array","items":{"oneOf":[{"type":"object","properties":{"op":{"const":"normalize_text"},"column":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"trim":{"type":"boolean"},"case":{"enum":["preserve","lower","upper"]}},"required":["op","column","trim","case"],"additionalProperties":false},{"type":"object","properties":{"op":{"const":"replace_values"},"column":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"edits":{"type":"array","items":{"type":"object","properties":{"from":{"type":"array","items":{"type":"string","minLength":1,"maxLength":4096},"minItems":1,"maxItems":32},"to":{"type":"string","maxLength":4096}},"required":["from","to"],"additionalProperties":false},"minItems":1,"maxItems":32}},"required":["op","column","edits"],"additionalProperties":false},{"type":"object","properties":{"op":{"const":"add_text_column"},"name":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"columns":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":1,"maxItems":8},"separator":{"type":"string","maxLength":64},"null_policy":{"enum":["empty","propagate"]}},"required":["op","name","columns","separator","null_policy"],"additionalProperties":false},{"type":"object","properties":{"op":{"const":"rename_column"},"column":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"name":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"}},"required":["op","column","name"],"additionalProperties":false},{"type":"object","properties":{"op":{"const":"remove_column"},"column":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"}},"required":["op","column"],"additionalProperties":false},{"type":"object","properties":{"op":{"const":"reorder_columns"},"columns":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":1,"maxItems":16}},"required":["op","columns"],"additionalProperties":false}]},"minItems":1,"maxItems":16}},"required":["table","steps"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"operation":{"const":"verified-table-recipe-replay"},"result":{"type":"object","properties":{"table":{"type":"object","properties":{"artifact_id":{"type":"string","minLength":1,"maxLength":128},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"bytes":{"type":"integer","minimum":1,"maximum":8388608},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false},"native_recipe":{"type":"object","properties":{"artifact_id":{"type":"string","minLength":1,"maxLength":128},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"bytes":{"type":"integer","minimum":1,"maximum":8388608},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false},"provenance":{"type":"object","properties":{"artifact_id":{"type":"string","minLength":1,"maxLength":128},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"bytes":{"type":"integer","minimum":1,"maximum":8388608},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false},"source_table_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"result_table_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"reopened_table_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"replayed_table_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"output_columns":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":1,"maxItems":16},"row_ids":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":1,"maxItems":1000},"step_count":{"type":"integer","minimum":1,"maximum":16},"step_results":{"type":"array","items":{"type":"object","properties":{"index":{"type":"integer","minimum":0,"maximum":15},"operation":{"enum":["normalize_text","replace_values","add_text_column","rename_column","remove_column","reorder_columns"]},"before_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"after_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"changed_cell_count":{"type":"integer","minimum":0,"maximum":16000},"outcome":{"enum":["changed","no_change"]}},"required":["index","operation","before_sha256","after_sha256","changed_cell_count","outcome"],"additionalProperties":false},"minItems":1,"maxItems":16},"native_history_verified":{"const":true},"persistence_verified":{"const":true},"original_input_replay_verified":{"const":true},"scope":{"const":"declared_native_recipe_and_exact_input_replay_not_generated_program_synthesis"},"warnings":{"type":"array","items":{"type":"string","minLength":1,"maxLength":1024},"minItems":1,"maxItems":16}},"required":["table","native_recipe","provenance","source_table_sha256","result_table_sha256","reopened_table_sha256","replayed_table_sha256","output_columns","row_ids","step_count","step_results","native_history_verified","persistence_verified","original_input_replay_verified","scope","warnings"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenRefine"},"version":{"const":"3.10-SNAPSHOT"},"source_commit":{"const":"1e6e28f4fc3724ff4bfd55de1bfe2ca1b6b41141"},"runtime_bundle_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"components":{"const":["Recipe","TextTransformOperation","MassEditOperation","ColumnAdditionOperation","ColumnRenameOperation","ColumnRemovalOperation","ColumnReorderOperation","History","ProcessManager","Project"]},"canonical_request_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"java_locale":{"const":"ROOT"},"timezone":{"const":"UTC"}},"required":["project","version","source_commit","runtime_bundle_sha256","components","canonical_request_sha256","java_locale","timezone"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0,"maximum":300000}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"4500","currency":"USDC","decimals":6,"human":"0.0045 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"4500","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_openrefine_reference_catalog_reconciliation_review","name":"oss_openrefine_reference_catalog_reconciliation_review","title":"Match table entries against your own reference catalog with native OpenRefine reconciliation, keeping ambiguous cases ambiguous instead of picking a winner.","description":"Reconciles a column of names against a reference catalog that you supply — your catalog, not a public knowledge base — using native OpenRefine reconciliation with a caller-set edit distance and an optional required type. The result separates rows with a single candidate, rows with several, and rows with none, and it leaves the ambiguous ones ambiguous: an automatic pick would be the cheapest possible way to introduce a wrong identity into a reference dataset. Type-excluded references and excluded rows are reported so the count reconciles. Reconciliation metadata is persisted and reopened, and both hashes are returned as evidence. Nothing is matched automatically and the source table is returned unchanged.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-openrefine-reference-catalog-reconciliation-review","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","properties":{"table":{"type":"object","properties":{"columns":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":1,"maxItems":16},"rows":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"values":{"type":"array","items":{"anyOf":[{"type":"string","maxLength":4096},{"type":"null"}]},"minItems":1,"maxItems":16}},"required":["id","values"],"additionalProperties":false},"minItems":1,"maxItems":200}},"required":["columns","rows"],"additionalProperties":false},"query_column":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"catalog":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"name":{"type":"string","minLength":1,"maxLength":256},"type":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"}},"required":["id","name","type"],"additionalProperties":false},"minItems":1,"maxItems":100},"required_type":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"max_edit_distance":{"type":"integer","minimum":0,"maximum":8}},"required":["table","query_column","catalog","required_type","max_edit_distance"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"operation":{"const":"reference-catalog-reconciliation-review"},"result":{"type":"object","properties":{"review":{"type":"object","properties":{"artifact_id":{"type":"string","minLength":1,"maxLength":128},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"bytes":{"type":"integer","minimum":1,"maximum":8388608},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false},"source_table_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"catalog_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"native_reconciliation_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"reopened_reconciliation_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"rows":{"type":"array","items":{"type":"object","properties":{"row_id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"status":{"enum":["unique_candidate","ambiguous","no_candidate","excluded"]},"candidate_count":{"type":"integer","minimum":0,"maximum":100},"candidate_ids":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":0,"maxItems":100},"exclusion_reason":{"enum":[null,"null_query","empty_fingerprint"]}},"required":["row_id","status","candidate_count","candidate_ids","exclusion_reason"],"additionalProperties":false},"minItems":1,"maxItems":200},"unique_candidate_rows":{"type":"integer","minimum":0,"maximum":200},"ambiguous_rows":{"type":"integer","minimum":0,"maximum":200},"no_candidate_rows":{"type":"integer","minimum":0,"maximum":200},"excluded_rows":{"type":"integer","minimum":0,"maximum":200},"type_excluded_reference_ids":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_]{0,31}$"},"minItems":0,"maxItems":100},"source_unchanged":{"const":true},"native_auto_match_enabled":{"const":false},"identities_confirmed":{"const":0},"persistence_verified":{"const":true},"scope":{"const":"caller_catalog_lexical_candidates_require_review_not_confirmed_entity_identity"},"warnings":{"type":"array","items":{"type":"string","minLength":1,"maxLength":1024},"minItems":1,"maxItems":16}},"required":["review","source_table_sha256","catalog_sha256","native_reconciliation_sha256","reopened_reconciliation_sha256","rows","unique_candidate_rows","ambiguous_rows","no_candidate_rows","excluded_rows","type_excluded_reference_ids","source_unchanged","native_auto_match_enabled","identities_confirmed","persistence_verified","scope","warnings"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenRefine"},"version":{"const":"3.10-SNAPSHOT"},"source_commit":{"const":"1e6e28f4fc3724ff4bfd55de1bfe2ca1b6b41141"},"runtime_bundle_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"components":{"const":["FingerprintKeyer","ApacheLevenshteinDistance","StandardReconConfig","ReconOperation","Recon","ReconJob","Project","History"]},"canonical_request_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"java_locale":{"const":"ROOT"},"timezone":{"const":"UTC"}},"required":["project","version","source_commit","runtime_bundle_sha256","components","canonical_request_sha256","java_locale","timezone"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0,"maximum":240000}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"4000","currency":"USDC","decimals":6,"human":"0.004 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"4000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_opendocman_document_authority_regression_rehearsal","name":"oss_opendocman_document_authority_regression_rehearsal","title":"Rehearse a document-rights change against the pinned OpenDocMan code and get every user-document decision that flips, before and after, named individually.","description":"Takes a before and an after picture of your OpenDocMan rights setup and asks the pinned native code what each one actually grants. Every user-document pair is evaluated in both states, and what comes back is which decisions changed, which of your declared expectations were violated in each state, and whether the seeded state survived untouched. The point is to see the blast radius of a permissions change before you apply it, where the damage is usually not the rule you edited but the pair you never thought about. Rights are evaluated by the original implementation, not by a reimplementation of its rules. The work runs without elevated rights, without network and in a private database that is removed when the job ends.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-opendocman-document-authority-regression-rehearsal","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","properties":{"before":{"type":"object","properties":{"root_user_id":{"type":"integer","minimum":1,"maximum":2147483647},"departments":{"type":"array","items":{"type":"integer","minimum":1,"maximum":2147483647},"minItems":1,"maxItems":8},"categories":{"type":"array","items":{"type":"integer","minimum":1,"maximum":2147483647},"minItems":0,"maxItems":8},"users":{"type":"array","items":{"type":"object","properties":{"id":{"type":"integer","minimum":1,"maximum":2147483647},"department_id":{"type":"integer","minimum":1,"maximum":2147483647},"admin":{"type":"boolean"}},"required":["id","department_id","admin"],"additionalProperties":false},"minItems":1,"maxItems":16},"documents":{"type":"array","items":{"type":"object","properties":{"id":{"type":"integer","minimum":1,"maximum":2147483647},"owner_id":{"type":"integer","minimum":1,"maximum":2147483647},"department_id":{"type":"integer","minimum":1,"maximum":2147483647},"category_id":{"type":"integer","minimum":0,"maximum":2147483647},"locked":{"type":"boolean"}},"required":["id","owner_id","department_id","category_id","locked"],"additionalProperties":false},"minItems":1,"maxItems":32},"reviewers":{"type":"array","items":{"type":"object","properties":{"user_id":{"type":"integer","minimum":1,"maximum":2147483647},"department_id":{"type":"integer","minimum":1,"maximum":2147483647}},"required":["user_id","department_id"],"additionalProperties":false},"minItems":0,"maxItems":128},"user_rights":{"type":"array","items":{"type":"object","properties":{"user_id":{"type":"integer","minimum":1,"maximum":2147483647},"document_id":{"type":"integer","minimum":1,"maximum":2147483647},"rights":{"type":"integer","minimum":-1,"maximum":4}},"required":["user_id","document_id","rights"],"additionalProperties":false},"minItems":0,"maxItems":512},"department_rights":{"type":"array","items":{"type":"object","properties":{"department_id":{"type":"integer","minimum":1,"maximum":2147483647},"document_id":{"type":"integer","minimum":1,"maximum":2147483647},"rights":{"type":"integer","minimum":-1,"maximum":4}},"required":["department_id","document_id","rights"],"additionalProperties":false},"minItems":0,"maxItems":256},"category_user_rights":{"type":"array","items":{"type":"object","properties":{"category_id":{"type":"integer","minimum":1,"maximum":2147483647},"user_id":{"type":"integer","minimum":1,"maximum":2147483647},"rights":{"type":"integer","minimum":-1,"maximum":4}},"required":["category_id","user_id","rights"],"additionalProperties":false},"minItems":0,"maxItems":128},"category_department_rights":{"type":"array","items":{"type":"object","properties":{"category_id":{"type":"integer","minimum":1,"maximum":2147483647},"department_id":{"type":"integer","minimum":1,"maximum":2147483647},"rights":{"type":"integer","minimum":-1,"maximum":4}},"required":["category_id","department_id","rights"],"additionalProperties":false},"minItems":0,"maxItems":64}},"required":["root_user_id","departments","categories","users","documents","reviewers","user_rights","department_rights","category_user_rights","category_department_rights"],"additionalProperties":false},"after":{"type":"object","properties":{"root_user_id":{"type":"integer","minimum":1,"maximum":2147483647},"departments":{"type":"array","items":{"type":"integer","minimum":1,"maximum":2147483647},"minItems":1,"maxItems":8},"categories":{"type":"array","items":{"type":"integer","minimum":1,"maximum":2147483647},"minItems":0,"maxItems":8},"users":{"type":"array","items":{"type":"object","properties":{"id":{"type":"integer","minimum":1,"maximum":2147483647},"department_id":{"type":"integer","minimum":1,"maximum":2147483647},"admin":{"type":"boolean"}},"required":["id","department_id","admin"],"additionalProperties":false},"minItems":1,"maxItems":16},"documents":{"type":"array","items":{"type":"object","properties":{"id":{"type":"integer","minimum":1,"maximum":2147483647},"owner_id":{"type":"integer","minimum":1,"maximum":2147483647},"department_id":{"type":"integer","minimum":1,"maximum":2147483647},"category_id":{"type":"integer","minimum":0,"maximum":2147483647},"locked":{"type":"boolean"}},"required":["id","owner_id","department_id","category_id","locked"],"additionalProperties":false},"minItems":1,"maxItems":32},"reviewers":{"type":"array","items":{"type":"object","properties":{"user_id":{"type":"integer","minimum":1,"maximum":2147483647},"department_id":{"type":"integer","minimum":1,"maximum":2147483647}},"required":["user_id","department_id"],"additionalProperties":false},"minItems":0,"maxItems":128},"user_rights":{"type":"array","items":{"type":"object","properties":{"user_id":{"type":"integer","minimum":1,"maximum":2147483647},"document_id":{"type":"integer","minimum":1,"maximum":2147483647},"rights":{"type":"integer","minimum":-1,"maximum":4}},"required":["user_id","document_id","rights"],"additionalProperties":false},"minItems":0,"maxItems":512},"department_rights":{"type":"array","items":{"type":"object","properties":{"department_id":{"type":"integer","minimum":1,"maximum":2147483647},"document_id":{"type":"integer","minimum":1,"maximum":2147483647},"rights":{"type":"integer","minimum":-1,"maximum":4}},"required":["department_id","document_id","rights"],"additionalProperties":false},"minItems":0,"maxItems":256},"category_user_rights":{"type":"array","items":{"type":"object","properties":{"category_id":{"type":"integer","minimum":1,"maximum":2147483647},"user_id":{"type":"integer","minimum":1,"maximum":2147483647},"rights":{"type":"integer","minimum":-1,"maximum":4}},"required":["category_id","user_id","rights"],"additionalProperties":false},"minItems":0,"maxItems":128},"category_department_rights":{"type":"array","items":{"type":"object","properties":{"category_id":{"type":"integer","minimum":1,"maximum":2147483647},"department_id":{"type":"integer","minimum":1,"maximum":2147483647},"rights":{"type":"integer","minimum":-1,"maximum":4}},"required":["category_id","department_id","rights"],"additionalProperties":false},"minItems":0,"maxItems":64}},"required":["root_user_id","departments","categories","users","documents","reviewers","user_rights","department_rights","category_user_rights","category_department_rights"],"additionalProperties":false},"expected_before":{"type":"array","items":{"type":"object","properties":{"user_id":{"type":"integer","minimum":1,"maximum":2147483647},"document_id":{"type":"integer","minimum":1,"maximum":2147483647},"rights":{"type":"integer","minimum":-1,"maximum":4}},"required":["user_id","document_id","rights"],"additionalProperties":false},"minItems":1,"maxItems":512},"expected_after":{"type":"array","items":{"type":"object","properties":{"user_id":{"type":"integer","minimum":1,"maximum":2147483647},"document_id":{"type":"integer","minimum":1,"maximum":2147483647},"rights":{"type":"integer","minimum":-1,"maximum":4}},"required":["user_id","document_id","rights"],"additionalProperties":false},"minItems":1,"maxItems":512}},"required":["before","after","expected_before","expected_after"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"operation":{"const":"document-authority-regression-rehearsal"},"result":{"type":"object","properties":{"review":{"type":"object","properties":{"artifact_id":{"type":"string","minLength":1,"maxLength":128},"sha256":{"type":"string","pattern":"^[0-9a-f]{64}$"},"bytes":{"type":"integer","minimum":1,"maximum":2097152},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false},"before_state_sha256":{"type":"string","pattern":"^[0-9a-f]{64}$"},"after_state_sha256":{"type":"string","pattern":"^[0-9a-f]{64}$"},"users":{"type":"integer","minimum":1,"maximum":16},"documents":{"type":"integer","minimum":1,"maximum":32},"evaluated_pairs_per_state":{"type":"integer","minimum":1,"maximum":512},"changed_pairs":{"type":"integer","minimum":0,"maximum":512},"before_policy_violations":{"type":"integer","minimum":0,"maximum":512},"after_policy_violations":{"type":"integer","minimum":0,"maximum":512},"policy_expectations_met":{"type":"boolean"},"seed_state_unchanged":{"const":true},"native_authority_complete":{"const":true},"scope":{"const":"native_getAuthority_model_only_not_controller_or_download_access"},"warnings":{"type":"array","items":{"type":"string","minLength":1,"maxLength":1024},"minItems":1,"maxItems":16}},"required":["review","before_state_sha256","after_state_sha256","users","documents","evaluated_pairs_per_state","changed_pairs","before_policy_violations","after_policy_violations","policy_expectations_met","seed_state_unchanged","native_authority_complete","scope","warnings"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenDocMan"},"version":{"const":"2.10.0-release"},"source_commit":{"const":"641f0a6f8eeba902e309978ec04291c44d3cd1c5"},"runtime_bundle_sha256":{"type":"string","pattern":"^[0-9a-f]{64}$"},"schema_sha256":{"type":"string","pattern":"^[0-9a-f]{64}$"},"components":{"const":["UserPermission::getAuthority","User_Perms::getPermission","Dept_Perms::getPermission","CategoryPerms::getPermission","User::isAdmin","User::isReviewerForFile","FileData::loadData"]},"canonical_request_sha256":{"type":"string","pattern":"^[0-9a-f]{64}$"},"php_version":{"type":"string","minLength":1,"maxLength":64},"pdo_driver":{"const":"mysql"},"database_version":{"type":"string","minLength":1,"maxLength":128}},"required":["project","version","source_commit","runtime_bundle_sha256","schema_sha256","components","canonical_request_sha256","php_version","pdo_driver","database_version"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0,"maximum":120000}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"4000","currency":"USDC","decimals":6,"human":"0.004 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"4000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_opencart_checkout_rule_regression_review","name":"oss_opencart_checkout_rule_regression_review","title":"Replay supplied checkout scenarios through the pinned OpenCart code and report every total, coupon, shipping and tax result that misses its expectation.","description":"Runs your simple-product checkout cases against the pinned OpenCart source in a private, non-root database that exists only for the length of the request. For each case it reports the totals the native code actually produces, which expectations were missed, and where a cart path diverged, rather than a single pass or fail. The point is to see a pricing regression before customers do: a coupon that stacks where it should not, a shipping rule that survives a tax-class change, a discount tier that applies one order too early. Prior coupon uses and tax classes are seeded exactly as supplied. Nothing is written back and no order is placed; the database and workspace are removed on every terminal path, whether the review succeeds or fails.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-opencart-checkout-rule-regression-review","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","properties":{"products":{"type":"array","items":{"type":"object","properties":{"product_id":{"type":"integer","minimum":1,"maximum":2147483647},"price":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10},"stock":{"type":"integer","minimum":0,"maximum":100000},"minimum_quantity":{"type":"integer","minimum":1,"maximum":100},"enabled":{"type":"boolean"},"shipping":{"type":"boolean"},"tax_class_id":{"type":"integer","minimum":0,"maximum":8}},"required":["product_id","price","stock","minimum_quantity","enabled","shipping","tax_class_id"],"additionalProperties":false},"minItems":1,"maxItems":16},"discounts":{"type":"array","items":{"type":"object","properties":{"product_id":{"type":"integer","minimum":1,"maximum":2147483647},"customer_group_id":{"type":"integer","minimum":1,"maximum":16},"quantity":{"type":"integer","minimum":1,"maximum":100},"priority":{"type":"integer","minimum":0,"maximum":100},"type":{"enum":["F","P","S"]},"value":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10}},"required":["product_id","customer_group_id","quantity","priority","type","value"],"additionalProperties":false},"minItems":0,"maxItems":64},"tax_classes":{"type":"array","items":{"type":"object","properties":{"tax_class_id":{"type":"integer","minimum":1,"maximum":8},"percentage_rate":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10},"fixed_amount":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10}},"required":["tax_class_id","percentage_rate","fixed_amount"],"additionalProperties":false},"minItems":0,"maxItems":8},"flat_shipping":{"type":"object","properties":{"cost":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10},"tax_class_id":{"type":"integer","minimum":0,"maximum":8}},"required":["cost","tax_class_id"],"additionalProperties":false},"cases":{"type":"array","items":{"type":"object","properties":{"case_id":{"type":"string","pattern":"^[a-zA-Z0-9_-]{1,32}$","maxLength":32},"customer_id":{"type":"integer","minimum":0,"maximum":2147483647},"customer_group_id":{"type":"integer","minimum":1,"maximum":16},"lines":{"type":"array","items":{"type":"object","properties":{"product_id":{"type":"integer","minimum":1,"maximum":2147483647},"quantity":{"type":"integer","minimum":1,"maximum":100}},"required":["product_id","quantity"],"additionalProperties":false},"minItems":1,"maxItems":16},"coupon":{"type":"object","properties":{"enabled":{"type":"boolean"},"type":{"enum":["F","P"]},"value":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10},"product_ids":{"type":"array","items":{"type":"integer","minimum":1,"maximum":2147483647},"minItems":0,"maxItems":16},"free_shipping":{"type":"boolean"},"requires_login":{"type":"boolean"},"minimum_subtotal":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10},"total_use_limit":{"type":"integer","minimum":0,"maximum":10000},"customer_use_limit":{"type":"integer","minimum":0,"maximum":10000},"prior_total_uses":{"type":"integer","minimum":0,"maximum":64},"prior_customer_uses":{"type":"integer","minimum":0,"maximum":64}},"required":["enabled","type","value","product_ids","free_shipping","requires_login","minimum_subtotal","total_use_limit","customer_use_limit","prior_total_uses","prior_customer_uses"],"additionalProperties":false},"expected":{"type":"object","properties":{"total":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,8})(?:\\.[0-9]{1,8})?$","maxLength":18},"coupon_eligible":{"type":"boolean"},"cart_paths_equivalent":{"type":"boolean"}},"required":["total","coupon_eligible","cart_paths_equivalent"],"additionalProperties":false}},"required":["case_id","customer_id","customer_group_id","lines","coupon","expected"],"additionalProperties":false},"minItems":1,"maxItems":16}},"required":["products","discounts","tax_classes","flat_shipping","cases"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"operation":{"const":"checkout-rule-regression-review"},"result":{"type":"object","properties":{"review":{"type":"object","properties":{"artifact_id":{"type":"string","minLength":1,"maxLength":128},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"bytes":{"type":"integer","minimum":1,"maximum":4194304},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false},"cases":{"type":"integer","minimum":1,"maximum":16},"product_evaluations":{"type":"integer","minimum":0,"maximum":256},"violated_expectations":{"type":"integer","minimum":0,"maximum":48},"cart_path_discrepancies":{"type":"integer","minimum":0,"maximum":16},"policy_expectations_met":{"type":"boolean"},"seed_state_unchanged":{"const":true},"native_checkout_complete":{"const":true},"scope":{"const":"pinned_simple_product_checkout_rules_not_live_store_or_tax_law"},"warnings":{"type":"array","items":{"type":"string","minLength":1,"maxLength":1024},"minItems":1,"maxItems":16}},"required":["review","cases","product_evaluations","violated_expectations","cart_path_discrepancies","policy_expectations_met","seed_state_unchanged","native_checkout_complete","scope","warnings"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenCart"},"version":{"const":"5.0.0.0 Alpha"},"source_commit":{"const":"8cc9431ad4d7403bbd12171ea34b29ae99bc682a"},"runtime_bundle_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"schema_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"components":{"const":["Cart::getProducts","Cart::getTaxes","Cart::getTotal","Tax::getRates","Marketing\\Coupon::getCoupon","Shipping\\Flat::getQuote","Checkout\\Cart::getTotals"]},"canonical_request_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"php_version":{"const":"8.4.25"},"pdo_driver":{"const":"mysql"},"database_version":{"type":"string","minLength":1,"maxLength":128}},"required":["project","version","source_commit","runtime_bundle_sha256","schema_sha256","components","canonical_request_sha256","php_version","pdo_driver","database_version"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0,"maximum":120000}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_opencart_catalog_import_rehearsal","name":"oss_opencart_catalog_import_rehearsal","title":"Rehearse a staged product-catalog import against the pinned OpenCart code and get variant, option and localized-cart integrity reported stage by stage.","description":"Walks a staged product-catalog import through the pinned OpenCart source in a private, non-root database and reports what the native code makes of it at each stage: how many masters and variants survive, whether option values stay attached to the right products, and how the resulting catalog behaves in a localized cart. The point is to find the damage before the import touches a live shop, where a broken option mapping shows up as a customer ordering a variant that does not exist. Locales, taxonomy and stages are taken as supplied and evaluated in the given order. Nothing is written to a real shop; the private database and workspace are removed on every terminal path, whether the rehearsal succeeds or fails.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-opencart-catalog-import-rehearsal","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","properties":{"locales":{"type":"array","items":{"type":"string","pattern":"^[a-z]{2}-[a-z]{2}$","minLength":5,"maxLength":5},"minItems":1,"maxItems":4},"taxonomy":{"type":"array","items":{"type":"object","properties":{"ref":{"type":"string","pattern":"^[a-z][a-z0-9_-]{0,31}$","minLength":1,"maxLength":32},"type":{"enum":["select","radio"]},"names":{"type":"array","items":{"type":"object","properties":{"locale":{"type":"string","pattern":"^[a-z]{2}-[a-z]{2}$","minLength":5,"maxLength":5},"name":{"type":"string","minLength":1,"maxLength":128,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"}},"required":["locale","name"],"additionalProperties":false},"minItems":1,"maxItems":4},"values":{"type":"array","items":{"type":"object","properties":{"ref":{"type":"string","pattern":"^[a-z][a-z0-9_-]{0,31}$","minLength":1,"maxLength":32},"names":{"type":"array","items":{"type":"object","properties":{"locale":{"type":"string","pattern":"^[a-z]{2}-[a-z]{2}$","minLength":5,"maxLength":5},"name":{"type":"string","minLength":1,"maxLength":128,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"}},"required":["locale","name"],"additionalProperties":false},"minItems":1,"maxItems":4}},"required":["ref","names"],"additionalProperties":false},"minItems":1,"maxItems":8}},"required":["ref","type","names","values"],"additionalProperties":false},"minItems":0,"maxItems":8},"stages":{"type":"array","items":{"type":"object","properties":{"ref":{"type":"string","pattern":"^[a-z][a-z0-9_-]{0,31}$","minLength":1,"maxLength":32},"masters":{"type":"array","items":{"type":"object","properties":{"ref":{"type":"string","pattern":"^[a-z][a-z0-9_-]{0,31}$","minLength":1,"maxLength":32},"sku":{"type":"string","minLength":1,"maxLength":64,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"quantity":{"type":"integer","minimum":0,"maximum":100000},"price":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10},"weight":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10},"points":{"type":"integer","minimum":0,"maximum":1000},"minimum":{"type":"integer","minimum":1,"maximum":100},"subtract":{"type":"boolean"},"shipping":{"type":"boolean"},"enabled":{"type":"boolean"},"descriptions":{"type":"array","items":{"type":"object","properties":{"locale":{"type":"string","pattern":"^[a-z]{2}-[a-z]{2}$","minLength":5,"maxLength":5},"name":{"type":"string","minLength":1,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"description":{"type":"string","minLength":0,"maxLength":2048,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"meta_title":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"meta_description":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"meta_keyword":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"}},"required":["locale","name","description","meta_title","meta_description","meta_keyword"],"additionalProperties":false},"minItems":1,"maxItems":4},"options":{"type":"array","items":{"type":"object","properties":{"ref":{"type":"string","pattern":"^[a-z][a-z0-9_-]{0,31}$","minLength":1,"maxLength":32},"required":{"type":"boolean"},"values":{"type":"array","items":{"type":"object","properties":{"ref":{"type":"string","pattern":"^[a-z][a-z0-9_-]{0,31}$","minLength":1,"maxLength":32},"quantity":{"type":"integer","minimum":0,"maximum":100000},"subtract":{"type":"boolean"},"price":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10},"points":{"type":"integer","minimum":0,"maximum":1000},"weight":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10}},"required":["ref","quantity","subtract","price","points","weight"],"additionalProperties":false},"minItems":1,"maxItems":8}},"required":["ref","required","values"],"additionalProperties":false},"minItems":0,"maxItems":4}},"required":["ref","sku","quantity","price","weight","points","minimum","subtract","shipping","enabled","descriptions","options"],"additionalProperties":false},"minItems":0,"maxItems":8},"variants":{"type":"array","items":{"type":"object","properties":{"ref":{"type":"string","pattern":"^[a-z][a-z0-9_-]{0,31}$","minLength":1,"maxLength":32},"master":{"type":"string","pattern":"^[a-z][a-z0-9_-]{0,31}$","minLength":1,"maxLength":32},"sku":{"type":"string","minLength":1,"maxLength":64,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"quantity":{"type":"integer","minimum":0,"maximum":100000},"selection":{"type":"array","items":{"type":"object","properties":{"option":{"type":"string","pattern":"^[a-z][a-z0-9_-]{0,31}$","minLength":1,"maxLength":32},"value":{"type":"string","pattern":"^[a-z][a-z0-9_-]{0,31}$","minLength":1,"maxLength":32}},"required":["option","value"],"additionalProperties":false},"minItems":1,"maxItems":4},"overrides":{"type":"object","properties":{"price":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10},"weight":{"type":"string","pattern":"^(?:0|[1-9][0-9]{0,4})(?:\\.[0-9]{1,4})?$","maxLength":10},"points":{"type":"integer","minimum":0,"maximum":1000},"minimum":{"type":"integer","minimum":1,"maximum":100},"subtract":{"type":"boolean"},"shipping":{"type":"boolean"},"enabled":{"type":"boolean"},"descriptions":{"type":"array","items":{"type":"object","properties":{"locale":{"type":"string","pattern":"^[a-z]{2}-[a-z]{2}$","minLength":5,"maxLength":5},"name":{"type":"string","minLength":1,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"description":{"type":"string","minLength":0,"maxLength":2048,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"meta_title":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"meta_description":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"meta_keyword":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"}},"required":["locale"],"additionalProperties":false},"minItems":0,"maxItems":4}},"required":[],"additionalProperties":false}},"required":["ref","master","sku","quantity","selection","overrides"],"additionalProperties":false},"minItems":0,"maxItems":16}},"required":["ref","masters","variants"],"additionalProperties":false},"minItems":1,"maxItems":4}},"required":["locales","taxonomy","stages"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"operation":{"const":"catalog-import-rehearsal"},"result":{"type":"object","properties":{"review":{"type":"object","properties":{"artifact_id":{"type":"string","minLength":1,"maxLength":128},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"bytes":{"type":"integer","minimum":1,"maximum":12582912},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false},"stages":{"type":"integer","minimum":1,"maximum":4},"final_products":{"type":"integer","minimum":0,"maximum":24},"final_variants":{"type":"integer","minimum":0,"maximum":16},"localized_cart_evaluations":{"type":"integer","minimum":0,"maximum":384},"catalog_integrity_verified":{"const":true},"native_import_complete":{"const":true},"scope":{"const":"isolated_typed_catalog_import_with_declared_language_id_patch"},"warnings":{"type":"array","items":{"type":"string","minLength":1,"maxLength":1024},"minItems":1,"maxItems":16}},"required":["review","stages","final_products","final_variants","localized_cart_evaluations","catalog_integrity_verified","native_import_complete","scope","warnings"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenCart"},"version":{"const":"5.0.0.0 Alpha"},"source_commit":{"const":"8cc9431ad4d7403bbd12171ea34b29ae99bc682a"},"runtime_bundle_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"schema_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"components":{"const":["Admin\\Product::addProduct","Admin\\Product::editProduct","Admin\\Product::deleteProduct","Admin\\Product::addVariant (language-ID patch)","Admin\\Product::editVariant","Admin\\Product::editVariants","Admin\\Option::addOption","Admin\\Option::addValue","Catalog\\Cart::getProducts"]},"canonical_request_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"php_version":{"const":"8.4.25"},"pdo_driver":{"const":"mysql"},"database_version":{"type":"string","minLength":1,"maxLength":128},"patched_product_sha256":{"const":"99febcf9d6af1742b1d27a53d085f9170b925ffd9e13562578ad0f7738900c02"}},"required":["project","version","source_commit","runtime_bundle_sha256","schema_sha256","components","canonical_request_sha256","php_version","pdo_driver","database_version","patched_product_sha256"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0,"maximum":120000}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_opencart_order_export_reconciliation","name":"oss_opencart_order_export_reconciliation","title":"Reconcile a supplied order export against a native OpenCart ledger and get every mismatched row, currency and arithmetic violation named individually.","description":"Rebuilds the orders you supply inside a private, non-root OpenCart database and checks your export against what the native code computes. Each export row is matched to a ledger order, and every difference is named: a total that does not add up under the stated arithmetic policy, a currency conversion applied at the wrong point, a localized status that maps to nothing. The point is to catch an export that looks consistent with itself but disagrees with the shop it claims to describe, before it reaches an accounting system. Currencies, languages, statuses and policies are taken as supplied. The ledger is built for this request only; the database and workspace are removed on every terminal path.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-opencart-order-export-reconciliation","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","properties":{"currencies":{"type":"array","items":{"type":"object","properties":{"currency_id":{"type":"integer","minimum":1,"maximum":2147483647},"code":{"type":"string","minLength":3,"maxLength":3,"pattern":"^[A-Z]{3}$"},"decimal_place":{"type":"integer","minimum":0,"maximum":3}},"required":["currency_id","code","decimal_place"],"additionalProperties":false},"minItems":1,"maxItems":8},"languages":{"type":"array","items":{"type":"object","properties":{"language_id":{"type":"integer","minimum":1,"maximum":2147483647},"code":{"type":"string","minLength":5,"maxLength":5,"pattern":"^[a-z]{2}-[a-z]{2}$"}},"required":["language_id","code"],"additionalProperties":false},"minItems":1,"maxItems":4},"statuses":{"type":"array","items":{"type":"object","properties":{"order_status_id":{"type":"integer","minimum":1,"maximum":2147483647},"language_id":{"type":"integer","minimum":1,"maximum":2147483647},"name":{"type":"string","minLength":1,"maxLength":32,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"}},"required":["order_status_id","language_id","name"],"additionalProperties":false},"minItems":0,"maxItems":64},"ledger":{"type":"object","properties":{"orders":{"type":"array","items":{"type":"object","properties":{"order_id":{"type":"integer","minimum":1,"maximum":2147483647},"store_id":{"type":"integer","minimum":0,"maximum":2147483647},"customer_id":{"type":"integer","minimum":0,"maximum":2147483647},"customer_group_id":{"type":"integer","minimum":0,"maximum":2147483647},"language_id":{"type":"integer","minimum":1,"maximum":2147483647},"language_code":{"type":"string","minLength":5,"maxLength":5,"pattern":"^[a-z]{2}-[a-z]{2}$"},"currency_id":{"type":"integer","minimum":1,"maximum":2147483647},"currency_code":{"type":"string","minLength":3,"maxLength":3,"pattern":"^[A-Z]{3}$"},"currency_value":{"type":"string","minLength":1,"maxLength":20,"pattern":"^(?:0|[1-9][0-9]{0,3})(?:\\.[0-9]{1,8})?$"},"total":{"type":"string","minLength":1,"maxLength":24,"pattern":"^-?(?:0|[1-9][0-9]{0,6})(?:\\.[0-9]{1,4})?$"},"order_status_id":{"type":"integer","minimum":0,"maximum":2147483647},"transaction_id":{"type":"string","minLength":0,"maxLength":100,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"comment":{"type":"string","minLength":0,"maxLength":2048,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"}},"required":["order_id","store_id","customer_id","customer_group_id","language_id","language_code","currency_id","currency_code","currency_value","total","order_status_id","transaction_id","comment"],"additionalProperties":false},"minItems":0,"maxItems":16},"products":{"type":"array","items":{"type":"object","properties":{"order_product_id":{"type":"integer","minimum":1,"maximum":2147483647},"order_id":{"type":"integer","minimum":1,"maximum":2147483647},"product_id":{"type":"integer","minimum":0,"maximum":2147483647},"master_id":{"type":"integer","minimum":0,"maximum":2147483647},"name":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"model":{"type":"string","minLength":0,"maxLength":64,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"quantity":{"type":"integer","minimum":0,"maximum":10000},"price":{"type":"string","minLength":1,"maxLength":24,"pattern":"^-?(?:0|[1-9][0-9]{0,6})(?:\\.[0-9]{1,4})?$"},"total":{"type":"string","minLength":1,"maxLength":24,"pattern":"^-?(?:0|[1-9][0-9]{0,6})(?:\\.[0-9]{1,4})?$"},"tax":{"type":"string","minLength":1,"maxLength":24,"pattern":"^-?(?:0|[1-9][0-9]{0,6})(?:\\.[0-9]{1,4})?$"},"reward":{"type":"integer","minimum":0,"maximum":1000000}},"required":["order_product_id","order_id","product_id","master_id","name","model","quantity","price","total","tax","reward"],"additionalProperties":false},"minItems":0,"maxItems":128},"options":{"type":"array","items":{"type":"object","properties":{"order_option_id":{"type":"integer","minimum":1,"maximum":2147483647},"order_id":{"type":"integer","minimum":1,"maximum":2147483647},"order_product_id":{"type":"integer","minimum":1,"maximum":2147483647},"product_option_id":{"type":"integer","minimum":0,"maximum":2147483647},"product_option_value_id":{"type":"integer","minimum":0,"maximum":2147483647},"name":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"value":{"type":"string","minLength":0,"maxLength":2048,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"type":{"type":"string","minLength":1,"maxLength":32,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"}},"required":["order_option_id","order_id","order_product_id","product_option_id","product_option_value_id","name","value","type"],"additionalProperties":false},"minItems":0,"maxItems":256},"totals":{"type":"array","items":{"type":"object","properties":{"order_total_id":{"type":"integer","minimum":1,"maximum":2147483647},"order_id":{"type":"integer","minimum":1,"maximum":2147483647},"extension":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"code":{"type":"string","minLength":1,"maxLength":32,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"title":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"value":{"type":"string","minLength":1,"maxLength":24,"pattern":"^-?(?:0|[1-9][0-9]{0,6})(?:\\.[0-9]{1,4})?$"},"sort_order":{"type":"integer","minimum":-1000,"maximum":1000}},"required":["order_total_id","order_id","extension","code","title","value","sort_order"],"additionalProperties":false},"minItems":0,"maxItems":256}},"required":["orders","products","options","totals"],"additionalProperties":false},"export":{"type":"object","properties":{"orders":{"type":"array","items":{"type":"object","properties":{"order_id":{"type":"integer","minimum":1,"maximum":2147483647},"store_id":{"type":"integer","minimum":0,"maximum":2147483647},"customer_id":{"type":"integer","minimum":0,"maximum":2147483647},"customer_group_id":{"type":"integer","minimum":0,"maximum":2147483647},"language_id":{"type":"integer","minimum":1,"maximum":2147483647},"language_code":{"type":"string","minLength":5,"maxLength":5,"pattern":"^[a-z]{2}-[a-z]{2}$"},"currency_id":{"type":"integer","minimum":1,"maximum":2147483647},"currency_code":{"type":"string","minLength":3,"maxLength":3,"pattern":"^[A-Z]{3}$"},"currency_value":{"type":"string","minLength":1,"maxLength":20,"pattern":"^(?:0|[1-9][0-9]{0,3})(?:\\.[0-9]{1,8})?$"},"total":{"type":"string","minLength":1,"maxLength":28,"pattern":"^-?(?:0|[1-9][0-9]{0,12})(?:\\.[0-9]{1,4})?$"},"order_status_id":{"type":"integer","minimum":0,"maximum":2147483647},"transaction_id":{"type":"string","minLength":0,"maxLength":100,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"comment":{"type":"string","minLength":0,"maxLength":2048,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"order_status":{"anyOf":[{"type":"string","minLength":0,"maxLength":32,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},{"type":"null"}]}},"required":["order_id","store_id","customer_id","customer_group_id","language_id","language_code","currency_id","currency_code","currency_value","total","order_status_id","transaction_id","comment","order_status"],"additionalProperties":false},"minItems":0,"maxItems":32},"products":{"type":"array","items":{"type":"object","properties":{"order_product_id":{"type":"integer","minimum":1,"maximum":2147483647},"order_id":{"type":"integer","minimum":1,"maximum":2147483647},"product_id":{"type":"integer","minimum":0,"maximum":2147483647},"master_id":{"type":"integer","minimum":0,"maximum":2147483647},"name":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"model":{"type":"string","minLength":0,"maxLength":64,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"quantity":{"type":"integer","minimum":0,"maximum":10000},"price":{"type":"string","minLength":1,"maxLength":28,"pattern":"^-?(?:0|[1-9][0-9]{0,12})(?:\\.[0-9]{1,4})?$"},"total":{"type":"string","minLength":1,"maxLength":28,"pattern":"^-?(?:0|[1-9][0-9]{0,12})(?:\\.[0-9]{1,4})?$"},"tax":{"type":"string","minLength":1,"maxLength":28,"pattern":"^-?(?:0|[1-9][0-9]{0,12})(?:\\.[0-9]{1,4})?$"},"reward":{"type":"integer","minimum":0,"maximum":1000000}},"required":["order_product_id","order_id","product_id","master_id","name","model","quantity","price","total","tax","reward"],"additionalProperties":false},"minItems":0,"maxItems":256},"options":{"type":"array","items":{"type":"object","properties":{"order_option_id":{"type":"integer","minimum":1,"maximum":2147483647},"order_id":{"type":"integer","minimum":1,"maximum":2147483647},"order_product_id":{"type":"integer","minimum":1,"maximum":2147483647},"product_option_id":{"type":"integer","minimum":0,"maximum":2147483647},"product_option_value_id":{"type":"integer","minimum":0,"maximum":2147483647},"name":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"value":{"type":"string","minLength":0,"maxLength":2048,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"type":{"type":"string","minLength":1,"maxLength":32,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"}},"required":["order_option_id","order_id","order_product_id","product_option_id","product_option_value_id","name","value","type"],"additionalProperties":false},"minItems":0,"maxItems":512},"totals":{"type":"array","items":{"type":"object","properties":{"order_total_id":{"type":"integer","minimum":1,"maximum":2147483647},"order_id":{"type":"integer","minimum":1,"maximum":2147483647},"extension":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"code":{"type":"string","minLength":1,"maxLength":32,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"title":{"type":"string","minLength":0,"maxLength":255,"pattern":"^[^\\x00-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f\\ud800-\\udfff]*$"},"value":{"type":"string","minLength":1,"maxLength":28,"pattern":"^-?(?:0|[1-9][0-9]{0,12})(?:\\.[0-9]{1,4})?$"},"sort_order":{"type":"integer","minimum":-1000,"maximum":1000}},"required":["order_total_id","order_id","extension","code","title","value","sort_order"],"additionalProperties":false},"minItems":0,"maxItems":512}},"required":["orders","products","options","totals"],"additionalProperties":false},"amount_mode":{"enum":["stored_decimal","native_formatted"]},"policies":{"type":"array","items":{"type":"object","properties":{"order_id":{"type":"integer","minimum":1,"maximum":2147483647},"require_line_arithmetic":{"type":"boolean"},"subtotal_id":{"anyOf":[{"type":"integer","minimum":1,"maximum":2147483647},{"type":"null"}]},"grand_total_id":{"anyOf":[{"type":"integer","minimum":1,"maximum":2147483647},{"type":"null"}]},"component_ids":{"type":"array","items":{"type":"integer","minimum":1,"maximum":2147483647},"minItems":0,"maxItems":256}},"required":["order_id","require_line_arithmetic","subtotal_id","grand_total_id","component_ids"],"additionalProperties":false},"minItems":0,"maxItems":16}},"required":["currencies","languages","statuses","ledger","export","amount_mode","policies"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"operation":{"const":"order-export-reconciliation"},"result":{"type":"object","properties":{"review":{"type":"object","properties":{"artifact_id":{"type":"string","minLength":1,"maxLength":128},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"bytes":{"type":"integer","minimum":1,"maximum":12582912},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false},"orders":{"type":"integer","minimum":0,"maximum":16},"export_matches":{"type":"boolean"},"arithmetic_expectations_met":{"type":"boolean"},"discrepancy_count":{"type":"integer","minimum":0,"maximum":32768},"arithmetic_violation_count":{"type":"integer","minimum":0,"maximum":256},"native_ledger_verified":{"const":true},"scope":{"const":"isolated_native_financial_order_export_reconciliation"},"warnings":{"type":"array","items":{"type":"string","minLength":1,"maxLength":1024},"minItems":1,"maxItems":16}},"required":["review","orders","export_matches","arithmetic_expectations_met","discrepancy_count","arithmetic_violation_count","native_ledger_verified","scope","warnings"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenCart"},"version":{"const":"5.0.0.0 Alpha"},"source_commit":{"const":"8cc9431ad4d7403bbd12171ea34b29ae99bc682a"},"runtime_bundle_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"schema_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"components":{"const":["Catalog\\Order::addOrder","Catalog\\Order::addProduct","Catalog\\Order::addOption","Catalog\\Order::addTotal","Catalog\\Order::editOrderStatusId","Catalog\\Order::editTransactionId","Catalog\\Order::getOrder","Catalog\\Order::getOptions","Cart\\Currency::format"]},"canonical_request_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"php_version":{"const":"8.4.25"},"pdo_driver":{"const":"mysql"},"database_version":{"type":"string","minLength":1,"maxLength":128}},"required":["project","version","source_commit","runtime_bundle_sha256","schema_sha256","components","canonical_request_sha256","php_version","pdo_driver","database_version"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0,"maximum":120000}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_openolat_grading_discrepancy_review","name":"oss_openolat_grading_discrepancy_review","title":"Check recorded assessment results against the grading scale that was supposed to produce them, and get every mismatch named with the score, the band and both grades.","description":"Replays a grading scale through the native OpenOLAT implementation and compares, for each assessment, the grade that was recorded against the grade the scale actually yields. Every discrepancy comes back with the score, the band it falls into, the expected value and the recorded one, so a wrong entry can be corrected at the row instead of being argued about in the aggregate. Boundary cases are where this earns its keep: the score that sits exactly on a band edge is the one a spreadsheet reimplementation gets wrong, and the native rules decide it here. The scale and results are taken as supplied and nothing is written back — this diagnoses, it does not grade and does not correct.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-openolat-grading-discrepancy-review","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","properties":{"scale_id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_-]{0,31}$"},"minimum_score":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"},"maximum_score":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"},"native_scale":{"oneOf":[{"type":"object","properties":{"type":{"const":"numeric"},"lowest_grade":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"},"best_grade":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"},"resolution":{"enum":["whole","half","quarter","tenth"]},"rounding":{"enum":["nearest","up","down"]},"cut_value":{"anyOf":[{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"},{"type":"null"}]},"breakpoints":{"type":"array","items":{"type":"object","properties":{"grade":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"},"score":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"}},"required":["grade","score"],"additionalProperties":false},"minItems":0,"maxItems":8}},"required":["type","lowest_grade","best_grade","resolution","rounding","cut_value","breakpoints"],"additionalProperties":false},{"type":"object","properties":{"type":{"const":"text"},"has_passed":{"type":"boolean"},"classes":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_-]{0,31}$"},"label":{"type":"string","minLength":1,"maxLength":128},"lower_score":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"},"passed":{"type":"boolean"}},"required":["id","label","lower_score","passed"],"additionalProperties":false},"minItems":2,"maxItems":64}},"required":["type","has_passed","classes"],"additionalProperties":false}]},"rubric":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_-]{0,31}$"},"lower":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"},"upper":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"},"lower_inclusive":{"type":"boolean"},"upper_inclusive":{"type":"boolean"},"grade":{"type":"string","minLength":1,"maxLength":128},"passed":{"type":["boolean","null"]}},"required":["id","lower","upper","lower_inclusive","upper_inclusive","grade","passed"],"additionalProperties":false},"minItems":1,"maxItems":64},"assessments":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_-]{0,31}$"},"score":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"},"recorded_grade":{"anyOf":[{"type":"string","minLength":1,"maxLength":128},{"type":"null"}]},"recorded_passed":{"type":["boolean","null"]}},"required":["id","score","recorded_grade","recorded_passed"],"additionalProperties":false},"minItems":1,"maxItems":1000}},"required":["scale_id","minimum_score","maximum_score","native_scale","rubric","assessments"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"operation":{"const":"grading-discrepancy-review"},"result":{"type":"object","properties":{"ranges":{"type":"array","items":{"type":"object","properties":{"position":{"type":"integer","minimum":1,"maximum":64},"grade":{"type":"string","minLength":1,"maxLength":128},"class_id":{"anyOf":[{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_-]{0,31}$"},{"type":"null"}]},"lower":{"type":"string","pattern":"^-?[0-9]+(\\.[0-9]+)?$","maxLength":128},"upper":{"type":"string","pattern":"^-?[0-9]+(\\.[0-9]+)?$","maxLength":128},"lower_inclusive":{"type":"boolean"},"upper_inclusive":{"type":"boolean"},"representative_score":{"type":"string","pattern":"^-?[0-9]+(\\.[0-9]+)?$","maxLength":128},"passed":{"type":["boolean","null"]}},"required":["position","grade","class_id","lower","upper","lower_inclusive","upper_inclusive","representative_score","passed"],"additionalProperties":false},"minItems":2,"maxItems":64},"assessments":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_-]{0,31}$"},"supplied_score":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,6})?$"},"native_float32_exact":{"type":"string","pattern":"^-?[0-9]+(\\.[0-9]+)?$","maxLength":128},"float32_changed_score":{"type":"boolean"},"outside_scale":{"type":"boolean"},"native_position":{"type":"integer","minimum":1,"maximum":64},"native_grade":{"type":"string","minLength":1,"maxLength":128},"native_passed":{"type":["boolean","null"]},"rubric_band_id":{"anyOf":[{"type":"string","pattern":"^[A-Za-z][A-Za-z0-9_-]{0,31}$"},{"type":"null"}]},"rubric_grade":{"anyOf":[{"type":"string","minLength":1,"maxLength":128},{"type":"null"}]},"rubric_passed":{"type":["boolean","null"]},"recorded_grade":{"anyOf":[{"type":"string","minLength":1,"maxLength":128},{"type":"null"}]},"recorded_passed":{"type":["boolean","null"]},"findings":{"type":"array","items":{"enum":["outside_scale","float32_precision_change","rubric_unmatched","rubric_grade_mismatch","rubric_pass_mismatch","recorded_grade_mismatch","recorded_pass_mismatch"]},"minItems":0,"maxItems":7}},"required":["id","supplied_score","native_float32_exact","float32_changed_score","outside_scale","native_position","native_grade","native_passed","rubric_band_id","rubric_grade","rubric_passed","recorded_grade","recorded_passed","findings"],"additionalProperties":false},"minItems":1,"maxItems":1000},"mismatch_count":{"type":"integer","minimum":0,"maximum":1000},"all_rubric_and_recorded_values_match":{"type":"boolean"},"source_unchanged":{"const":true},"scope":{"const":"supplied_scores_and_rubric_not_exam_scoring_or_live_learner_verification"},"artifact":{"type":"object","properties":{"artifact_id":{"type":"string","minLength":1,"maxLength":128},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"bytes":{"type":"integer","minimum":1,"maximum":4194304},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false}},"required":["ranges","assessments","mismatch_count","all_rubric_and_recorded_values_match","source_unchanged","scope","artifact"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenOlat"},"version":{"const":"21.1-SNAPSHOT"},"source_commit":{"const":"8842b7ce370737b5431c595f0be98322680c308b"},"runtime_bundle_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"canonical_request_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"locale":{"const":"en"},"timezone":{"const":"UTC"}},"required":["project","version","source_commit","runtime_bundle_sha256","canonical_request_sha256","locale","timezone"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0,"maximum":90000}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"4500","currency":"USDC","decimals":6,"human":"0.0045 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"4500","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_openolat_question_bank_answer_fixture_review","name":"oss_openolat_question_bank_answer_fixture_review","title":"Run a QTI question bank against known answer fixtures in the native OpenOLAT engine, and get every item whose actual score differs from what was expected.","description":"Executes a question-bank assessment against answer fixtures you supply — an answer plus the score it should produce — using the native OpenOLAT QTI engine rather than a reimplementation of the scoring rules. Each fixture comes back with expected and actual score, and the discrepancy count says at a glance whether the bank behaves as its author believed. This is the regression test for a question bank before it goes in front of learners, where a mis-scoring item is expensive and hard to undo. Items and fixtures are taken as supplied, nothing is stored, and no bank is modified. It verifies scoring against your fixtures; it does not judge whether the questions are good ones.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-openolat-question-bank-answer-fixture-review","method":"POST","mimeType":"application/json","inputSchema":{"type":"object","properties":{"bank_id":{"type":"string","pattern":"^[A-Za-z_][A-Za-z0-9_.-]{0,63}$"},"maximum_score":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,9})?$"},"cut_value":{"anyOf":[{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,9})?$"},{"type":"null"}]},"score_tolerance":{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,9})?$"},"items":{"type":"array","items":{"type":"object","properties":{"item_id":{"type":"string","pattern":"^[A-Za-z_][A-Za-z0-9_.-]{0,63}$"},"xml":{"type":"string","minLength":1,"maxLength":131072}},"required":["item_id","xml"],"additionalProperties":false},"minItems":1,"maxItems":16},"assets":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","pattern":"^[A-Za-z0-9][A-Za-z0-9_./-]{0,127}$"},"media_type":{"enum":["image/png","image/jpeg","image/gif","image/webp"]},"content_base64":{"type":"string","minLength":4,"maxLength":174764}},"required":["name","media_type","content_base64"],"additionalProperties":false},"minItems":0,"maxItems":32},"fixtures":{"type":"array","items":{"type":"object","properties":{"fixture_id":{"type":"string","pattern":"^[A-Za-z_][A-Za-z0-9_.-]{0,63}$"},"events":{"type":"array","items":{"type":"object","properties":{"item_id":{"type":"string","pattern":"^[A-Za-z_][A-Za-z0-9_.-]{0,63}$"},"responses":{"type":"array","items":{"type":"object","properties":{"response_id":{"type":"string","pattern":"^[A-Za-z_][A-Za-z0-9_.-]{0,63}$"},"values":{"type":"array","items":{"type":"string","minLength":0,"maxLength":4096},"minItems":0,"maxItems":64}},"required":["response_id","values"],"additionalProperties":false},"minItems":0,"maxItems":32},"persist_and_reopen":{"type":"boolean"}},"required":["item_id","responses","persist_and_reopen"],"additionalProperties":false},"minItems":0,"maxItems":64},"expected":{"type":"object","properties":{"test_score":{"anyOf":[{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,9})?$"},{"type":"null"}]},"passed":{"type":["boolean","null"]},"items":{"type":"array","items":{"type":"object","properties":{"item_id":{"type":"string","pattern":"^[A-Za-z_][A-Za-z0-9_.-]{0,63}$"},"score":{"anyOf":[{"type":"string","pattern":"^-?(0|[1-9][0-9]{0,6})(\\.[0-9]{1,9})?$"},{"type":"null"}]},"attempts":{"type":"integer","minimum":0,"maximum":64},"response_valid":{"type":"boolean"},"unbound_response_ids":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z_][A-Za-z0-9_.-]{0,63}$"},"minItems":0,"maxItems":32,"uniqueItems":true},"invalid_response_ids":{"type":"array","items":{"type":"string","pattern":"^[A-Za-z_][A-Za-z0-9_.-]{0,63}$"},"minItems":0,"maxItems":32,"uniqueItems":true}},"required":["item_id","score","attempts","response_valid","unbound_response_ids","invalid_response_ids"],"additionalProperties":false},"minItems":1,"maxItems":16}},"required":["test_score","passed","items"],"additionalProperties":false}},"required":["fixture_id","events","expected"],"additionalProperties":false},"minItems":1,"maxItems":16}},"required":["bank_id","maximum_score","cut_value","score_tolerance","items","assets","fixtures"],"additionalProperties":false},"outputSchema":{"type":"object","properties":{"operation":{"const":"question-bank-answer-fixture-review"},"result":{"type":"object","properties":{"review":{"type":"object","properties":{"artifact_id":{"type":"string","minLength":1,"maxLength":128},"sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"bytes":{"type":"integer","minimum":1,"maximum":33554432},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false},"fixtures":{"type":"array","items":{"type":"object","properties":{"fixture_id":{"type":"string","pattern":"^[A-Za-z_][A-Za-z0-9_.-]{0,63}$"},"all_expectations_match":{"type":"boolean"},"discrepancy_count":{"type":"integer","minimum":0,"maximum":82},"item_count":{"type":"integer","minimum":1,"maximum":16},"response_events":{"type":"integer","minimum":0,"maximum":64},"persisted_reopenings":{"type":"integer","minimum":0,"maximum":64}},"required":["fixture_id","all_expectations_match","discrepancy_count","item_count","response_events","persisted_reopenings"],"additionalProperties":false},"minItems":1,"maxItems":16},"all_expectations_match":{"type":"boolean"},"discrepancy_count":{"type":"integer","minimum":0,"maximum":1312},"native_execution_verified":{"const":true},"source_unchanged":{"const":true},"scope":{"const":"supplied_qti_bank_and_answer_fixtures_not_live_learner_or_question_bank_administration"}},"required":["review","fixtures","all_expectations_match","discrepancy_count","native_execution_verified","source_unchanged","scope"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenOlat"},"version":{"const":"21.1-SNAPSHOT"},"source_commit":{"const":"8842b7ce370737b5431c595f0be98322680c308b"},"qtiworks_version":{"const":"1.0.37"},"runtime_bundle_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"canonical_request_sha256":{"type":"string","pattern":"^[a-f0-9]{64}$"},"locale":{"const":"en"},"timezone":{"const":"UTC"}},"required":["project","version","source_commit","qtiworks_version","runtime_bundle_sha256","canonical_request_sha256","locale","timezone"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0,"maximum":180000}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]},{"id":"agentenwerk.oss_openolat_learning_path_prerequisite_rehearsal","name":"oss_openolat_learning_path_prerequisite_rehearsal","title":"Rehearse a learning-path prerequisite policy against the pinned OpenOlat code and get each learner's real sequence decisions against your expectations.","description":"Runs a course structure and a set of learners through the pinned OpenOlat learning-path implementation and reports, per learner, which nodes the original code actually unlocks and in what order. Your declared expectations are checked against that run, and every discrepancy is named rather than summarised into a pass or fail. The point is to find a prerequisite rule that behaves differently than intended before a cohort is sitting in front of it, where the symptom is a learner blocked on a node that should have opened. The course, the expectations and the learners are taken as supplied. The run happens in a worker without elevated rights, in its own network namespace, against a database built for this request and removed when it ends.","category":"agentenwerk","keywords":[],"resource":"https://agent.halowerk.com/v1/oss-openolat-learning-path-prerequisite-rehearsal","method":"POST","mimeType":"application/json","inputSchema":{"$schema":"https://json-schema.org/draft/2020-12/schema","$defs":{"page":{"type":"object","properties":{"key":{"type":"string","pattern":"^[a-z][a-z0-9_]{0,31}$"},"kind":{"const":"page"},"title":{"type":"string","minLength":1,"maxLength":120},"obligation":{"enum":["mandatory","optional","excluded"]},"trigger":{"enum":["visit","confirm"]},"start_offset_minutes":{"type":"integer","minimum":-525600,"maximum":525600,"not":{"minimum":-59,"maximum":59}},"end_offset_minutes":{"type":"integer","minimum":-525600,"maximum":525600,"not":{"minimum":-59,"maximum":59}}},"required":["key","kind","title"],"additionalProperties":false},"section":{"type":"object","properties":{"key":{"type":"string","pattern":"^[a-z][a-z0-9_]{0,31}$"},"kind":{"const":"section"},"title":{"type":"string","minLength":1,"maxLength":120},"sequence":{"enum":["sequential","free"]},"children":{"type":"array","minItems":1,"maxItems":32,"items":{"$ref":"#/$defs/node"}}},"required":["key","kind","title","sequence","children"],"additionalProperties":false},"node":{"oneOf":[{"$ref":"#/$defs/page"},{"$ref":"#/$defs/section"}]}},"type":"object","properties":{"course":{"type":"object","properties":{"title":{"type":"string","minLength":1,"maxLength":120},"sequence":{"enum":["sequential","free"]},"children":{"type":"array","minItems":1,"maxItems":32,"items":{"$ref":"#/$defs/node"}}},"required":["title","sequence","children"],"additionalProperties":false},"learners":{"type":"array","minItems":1,"maxItems":8,"items":{"type":"object","properties":{"key":{"type":"string","pattern":"^[a-z][a-z0-9_]{0,31}$"},"membership":{"enum":["participant","coach","owner","none"]},"actions":{"type":"array","maxItems":64,"items":{"type":"object","properties":{"node":{"type":"string","pattern":"^[a-z][a-z0-9_]{0,31}$"},"action":{"enum":["visit","confirm"]}},"required":["node","action"],"additionalProperties":false}}},"required":["key","membership","actions"],"additionalProperties":false}},"expectations":{"type":"object","properties":{"learners":{"type":"object","minProperties":1,"maxProperties":8,"propertyNames":{"type":"string","pattern":"^[a-z][a-z0-9_]{0,31}$"},"additionalProperties":{"type":"object","properties":{"course_access":{"enum":["granted","denied"]},"security":{"type":"object","properties":{"can_launch":{"type":"boolean"},"participant":{"type":"boolean"},"coach":{"type":"boolean"},"owner":{"type":"boolean"},"entry_admin":{"type":"boolean"},"read_only":{"type":"boolean"}},"required":[],"additionalProperties":false,"minProperties":1},"initial":{"type":"object","minProperties":1,"maxProperties":65,"propertyNames":{"type":"string","pattern":"^[a-z][a-z0-9_]{0,31}$"},"additionalProperties":{"type":"object","properties":{"status":{"anyOf":[{"enum":["notReady","notStarted","inProgress","inReview","done"]},{"type":"null"}]},"fully_assessed":{"anyOf":[{"enum":["true","false"]},{"type":"null"}]},"obligation":{"anyOf":[{"enum":["mandatory","optional","excluded"]},{"type":"null"}]},"visible":{"type":"boolean"},"accessible":{"type":"boolean"}},"required":[],"additionalProperties":false,"minProperties":1}},"steps":{"type":"array","maxItems":64,"items":{"type":"object","properties":{"applied":{"type":"boolean"},"reason":{"type":"string","maxLength":64},"visible_before":{"type":"boolean"},"accessible_before":{"type":"boolean"},"after":{"type":"object","minProperties":1,"maxProperties":65,"propertyNames":{"type":"string","pattern":"^[a-z][a-z0-9_]{0,31}$"},"additionalProperties":{"type":"object","properties":{"status":{"anyOf":[{"enum":["notReady","notStarted","inProgress","inReview","done"]},{"type":"null"}]},"fully_assessed":{"anyOf":[{"enum":["true","false"]},{"type":"null"}]},"obligation":{"anyOf":[{"enum":["mandatory","optional","excluded"]},{"type":"null"}]},"visible":{"type":"boolean"},"accessible":{"type":"boolean"}},"required":[],"additionalProperties":false,"minProperties":1}}},"required":[],"additionalProperties":false}}},"required":[],"additionalProperties":false}}},"required":["learners"],"additionalProperties":false}},"required":["course","learners"],"additionalProperties":false},"outputSchema":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"operation":{"const":"learning-path-prerequisite-rehearsal"},"result":{"type":"object","properties":{"rehearsal":{"type":"object","properties":{"artifact_id":{"type":"string","pattern":"^olat-lp-[0-9a-f]{64}\\.json$"},"sha256":{"type":"string","pattern":"^[0-9a-f]{64}$"},"bytes":{"type":"integer","minimum":1},"media_type":{"const":"application/json"}},"required":["artifact_id","sha256","bytes","media_type"],"additionalProperties":false},"learners":{"type":"array","minItems":1,"maxItems":8,"items":{"type":"object","properties":{"key":{"type":"string","pattern":"^[a-z][a-z0-9_]{0,31}$"},"course_access":{"enum":["granted","denied"]},"actions":{"type":"integer","minimum":0},"applied_actions":{"type":"integer","minimum":0},"final":{"type":"object","propertyNames":{"type":"string","pattern":"^[a-z][a-z0-9_]{0,31}$"},"additionalProperties":{"type":"object","properties":{"status":{"anyOf":[{"enum":["notReady","notStarted","inProgress","inReview","done"]},{"type":"null"}]},"accessible":{"type":"boolean"}},"required":["status","accessible"],"additionalProperties":false}}},"required":["key","course_access","actions","applied_actions"],"additionalProperties":false}},"expectation_checks":{"type":"integer","minimum":0},"discrepancy_count":{"type":"integer","minimum":0},"all_expectations_match":{"type":"boolean"},"native_execution_verified":{"const":true},"source_unchanged":{"const":true},"reference_time":{"type":"string","format":"date-time"},"scope":{"const":"Caller course policy saved and published through the original OpenOlat course editor, real repository memberships, native node visits/confirmations and AssessmentAccounting.evaluateAll(true) in a disposable private MariaDB; wall-clock dates are relative to the evaluation reference time."}},"required":["rehearsal","learners","expectation_checks","discrepancy_count","all_expectations_match","native_execution_verified","source_unchanged","reference_time","scope"],"additionalProperties":false},"upstream":{"type":"object","properties":{"project":{"const":"OpenOlat"},"version":{"const":"21.1-SNAPSHOT"},"source_commit":{"const":"8842b7ce370737b5431c595f0be98322680c308b"},"database":{"type":"string"},"runtime_bundle_sha256":{"type":"string","pattern":"^[0-9a-f]{64}$"},"canonical_request_sha256":{"type":"string","pattern":"^[0-9a-f]{64}$"},"locale":{"const":"en"},"timezone":{"const":"UTC"}},"required":["project","version","source_commit","database","runtime_bundle_sha256","canonical_request_sha256","locale","timezone"],"additionalProperties":false},"runtime_ms":{"type":"number","minimum":0}},"required":["operation","result","upstream","runtime_ms"],"additionalProperties":false},"price":{"amount":"5000","currency":"USDC","decimals":6,"human":"0.005 USDC"},"accepts":[{"scheme":"exact","network":"eip155:8453","payTo":"0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E","price":{"amount":"5000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"asset":"USDC","network_name":"Base Mainnet","name":"USD Coin","version":"2","assetTransferMethod":"eip3009","eip712Domain":{"name":"USD Coin","version":"2","chainId":8453,"verifyingContract":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}}},"maxTimeoutSeconds":300}]}],"capability_request":{"url":"https://bedarf.halowerk.com/capabilities/request","method":"POST","cost":"free","description":"Missing a capability, or does the scope not fit? Report the need here - no payment required. Similar reports are bundled; the response returns an id you can check back on.","body_example":{"requested_capability":"short label","description":"what exactly is needed","max_price":0.01}},"updated_at":"2026-09-26T17:26:44.964Z"}