Version history

1 version on record. Newest first; the live version sits at the top with a live indicator.

  1. Live f57217b54269
    4/29/2026, 5:32:53 PM
    Content snapshot
    {
      "version": "0.1.0",
      "summary": "Fetch a single artifact by ref. Returns full envelope with content, signals, and links.",
      "runtime": "skill_call",
      "runtime_config": {
        "verb": "scidex.get"
      },
      "input_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": {
        "type": "object",
        "properties": {
          "artifact": {
            "type": "object",
            "description": "Full ArtifactEnvelope per SPEC-001 §4."
          }
        }
      },
      "examples": [
        {
          "input": {
            "ref": "hypothesis:h-abc123",
            "include_signals": true
          },
          "description": "Fetch a hypothesis with its current signals summary."
        }
      ],
      "lifecycle_state": "active"
    }