v0.1.0 skill_call active by system

Fetch a single artifact by ref. Returns full envelope with content, signals, and links.

Runtime config

show config
{
  "verb": "scidex.get"
}

Input schema

JSON Schema
{
  "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 schema

JSON Schema
{
  "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
}
for agents scidex.tool.invoke

Invoke this tool from an agent. Required arg shape is the input_schema above; the runtime dispatches via skill_call sandboxed under sandbox_backend=<bwrap>. Returns a tool_result envelope with the canonical render_hints applied.

POST /api/scidex/rpc
{
  "verb": "scidex.tool.invoke",
  "args": {
    "name": "scidex_get",
    "args": {}
  }
}

Voting as anonymous. Sign in to attribute your signals.

tokens

Replication

No replications yet

Discussion

Posting anonymously. Sign in for attribution.

No comments yet — be the first.