curl --request POST \
--url https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'checkfu-version: <checkfu-version>' \
--header 'idempotency-key: <idempotency-key>' \
--data '
{
"source": {
"type": "inline_files",
"files": [
{
"path": "<string>",
"content": "<string>"
}
]
}
}
'import requests
url = "https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications"
payload = { "source": {
"type": "inline_files",
"files": [
{
"path": "<string>",
"content": "<string>"
}
]
} }
headers = {
"checkfu-version": "<checkfu-version>",
"idempotency-key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'checkfu-version': '<checkfu-version>',
'idempotency-key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
source: {type: 'inline_files', files: [{path: '<string>', content: '<string>'}]}
})
};
fetch('https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'source' => [
'type' => 'inline_files',
'files' => [
[
'path' => '<string>',
'content' => '<string>'
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"checkfu-version: <checkfu-version>",
"idempotency-key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications"
payload := strings.NewReader("{\n \"source\": {\n \"type\": \"inline_files\",\n \"files\": [\n {\n \"path\": \"<string>\",\n \"content\": \"<string>\"\n }\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("checkfu-version", "<checkfu-version>")
req.Header.Add("idempotency-key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications")
.header("checkfu-version", "<checkfu-version>")
.header("idempotency-key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"source\": {\n \"type\": \"inline_files\",\n \"files\": [\n {\n \"path\": \"<string>\",\n \"content\": \"<string>\"\n }\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["idempotency-key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"source\": {\n \"type\": \"inline_files\",\n \"files\": [\n {\n \"path\": \"<string>\",\n \"content\": \"<string>\"\n }\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"organization_id": "<string>",
"agent_blueprint_release": {
"id": "<string>",
"blueprint_name": "<string>",
"release_number": 1,
"content_sha256": "<string>",
"required_wire_version": "<string>"
},
"control_plane_actor": {
"type": "organization_membership",
"id": "<string>"
},
"channel": "rest",
"created_at": "<string>",
"source_type": "inline_files",
"source_sha256": "<string>",
"compiler_version": "<string>",
"authoring_epoch": "checkfu.dev/v1alpha1",
"source_repository_id": null,
"source_revision": null,
"source_root": null,
"source_map_sha256": "<string>"
}{
"error": {
"type": "validation.malformed",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-malformed"
}
}{
"error": {
"type": "auth.invalid_key",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-invalid-key"
}
}{
"error": {
"type": "auth.disabled_tenancy",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-disabled-tenancy"
}
}{
"error": {
"type": "validation.not_found",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-not-found"
}
}{
"error": {
"type": "validation.conflict",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-conflict"
}
}{
"error": {
"type": "validation.payload_too_large",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-payload-too-large"
}
}{
"error": {
"type": "budget.exceeded",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#budget-exceeded"
}
}{
"error": {
"type": "runtime.internal",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-internal"
}
}Publish Agent configuration source
Compiles one bounded inline Agent configuration project against the final Agent schema, assembles the complete Blueprint package, and publishes it as a deduplicated immutable Release with an immutable publication receipt. The request envelope is measured against the inline transport budget before compilation. Requires an Idempotency-Key; an exact retry returns the same receipt. Governed source_revision fetching is not served yet; resubmit the project as inline_files. Source text is never echoed (§6.4).
Checkfu support posture: alpha; hosted. Required evidence journey: blueprint-authority. Deployment-specific readiness and the latest proven release are available from GET /v1/support/capabilities.
curl --request POST \
--url https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'checkfu-version: <checkfu-version>' \
--header 'idempotency-key: <idempotency-key>' \
--data '
{
"source": {
"type": "inline_files",
"files": [
{
"path": "<string>",
"content": "<string>"
}
]
}
}
'import requests
url = "https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications"
payload = { "source": {
"type": "inline_files",
"files": [
{
"path": "<string>",
"content": "<string>"
}
]
} }
headers = {
"checkfu-version": "<checkfu-version>",
"idempotency-key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'checkfu-version': '<checkfu-version>',
'idempotency-key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
source: {type: 'inline_files', files: [{path: '<string>', content: '<string>'}]}
})
};
fetch('https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'source' => [
'type' => 'inline_files',
'files' => [
[
'path' => '<string>',
'content' => '<string>'
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"checkfu-version: <checkfu-version>",
"idempotency-key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications"
payload := strings.NewReader("{\n \"source\": {\n \"type\": \"inline_files\",\n \"files\": [\n {\n \"path\": \"<string>\",\n \"content\": \"<string>\"\n }\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("checkfu-version", "<checkfu-version>")
req.Header.Add("idempotency-key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications")
.header("checkfu-version", "<checkfu-version>")
.header("idempotency-key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"source\": {\n \"type\": \"inline_files\",\n \"files\": [\n {\n \"path\": \"<string>\",\n \"content\": \"<string>\"\n }\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/organizations/{organization_id}/agent-blueprint-publications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["idempotency-key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"source\": {\n \"type\": \"inline_files\",\n \"files\": [\n {\n \"path\": \"<string>\",\n \"content\": \"<string>\"\n }\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"organization_id": "<string>",
"agent_blueprint_release": {
"id": "<string>",
"blueprint_name": "<string>",
"release_number": 1,
"content_sha256": "<string>",
"required_wire_version": "<string>"
},
"control_plane_actor": {
"type": "organization_membership",
"id": "<string>"
},
"channel": "rest",
"created_at": "<string>",
"source_type": "inline_files",
"source_sha256": "<string>",
"compiler_version": "<string>",
"authoring_epoch": "checkfu.dev/v1alpha1",
"source_repository_id": null,
"source_revision": null,
"source_root": null,
"source_map_sha256": "<string>"
}{
"error": {
"type": "validation.malformed",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-malformed"
}
}{
"error": {
"type": "auth.invalid_key",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-invalid-key"
}
}{
"error": {
"type": "auth.disabled_tenancy",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-disabled-tenancy"
}
}{
"error": {
"type": "validation.not_found",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-not-found"
}
}{
"error": {
"type": "validation.conflict",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-conflict"
}
}{
"error": {
"type": "validation.payload_too_large",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-payload-too-large"
}
}{
"error": {
"type": "budget.exceeded",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#budget-exceeded"
}
}{
"error": {
"type": "runtime.internal",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-internal"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
2026-08-31 1 - 255Path Parameters
^org_[0-9a-f]{32}$Body
Request wrapper carrying one closed source input union.
Bounded inline entries or one exact governed source revision.
- Option 1
- Option 2
Show child attributes
Show child attributes
Response
Immutable provenance receipt binding one Release coordinate to one admitted compilation.
- Option 1
- Option 2
- Option 3
Immutable provenance receipt binding one Release coordinate to one admitted compilation.
^abpub_[0-9a-f]{32}$^org_[0-9a-f]{32}$Show child attributes
Show child attributes
Server-derived administrative attribution; API keys and operators never become people.
- Option 1
- Option 2
- Option 3
Show child attributes
Show child attributes
Server-derived dispatch channel provenance; never client-asserted authority.
rest, api_key_mcp, git, console, compatibility A canonical UTC ISO-8601 timestamp with millisecond precision.
24^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$inline_files ^sha256:[0-9a-f]{64}$Bounded ASCII version code for compiler, planner, and digest-key versions.
^[A-Za-z0-9][A-Za-z0-9._+-]{0,63}$Closed YAML/JSON authoring epoch; unknown epochs are rejected outright.
checkfu.dev/v1alpha1 ^sha256:[0-9a-f]{64}$