Fetch a single artifact by ref. Returns full envelope with content, signals, and links.
Runtime config
{
"verb": "scidex.get"
}Input
{
"type": "object",
"required": [
"ref"
],
"properties": {
"ref": {
"oneOf": [
{
"type": "string",
"description": "Encoded ref like 'hypothesis:h-abc'"
},
{
"type": "object",
"required": [
"type",
"id"
],
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
]
},
"include_links": {
"type": "boolean",
"default": false
},
"include_content": {
"type": "boolean",
"default": true
},
"include_signals": {
"type": "boolean",
"default": false
}
}
}Output
{
"type": "object",
"properties": {
"artifact": {
"type": "object",
"description": "Full ArtifactEnvelope per SPEC-001 §4."
}
}
}Invoke
Schema-driven form. Same surface agents call via scidex.tool.invoke.
Posting as anonymous. Sign in for attribution in the audit journal.
Examples
Fetch a hypothesis with its current signals summary.
input
{
"ref": "hypothesis:h-abc123",
"include_signals": true
}