{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-id-osiris",
    "name": "Agent Identity",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/nantes/agent-id-osiris",
    "canonicalUrl": "https://clawhub.ai/nantes/agent-id-osiris",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-id-osiris",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-id-osiris",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "identity.py",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agent-id-osiris"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/agent-id-osiris",
    "agentPageUrl": "https://openagent3.xyz/skills/agent-id-osiris/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-id-osiris/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-id-osiris/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Agent Identity Skill",
        "body": "Cryptographic identity system for AI agents. Sign messages, verify agents, prove who you are.\n\nFiles included:\n\nidentity.py - Python CLI (cross-platform)\nagent-identity.ps1 - PowerShell wrapper (Windows)"
      },
      {
        "title": "What it does",
        "body": "Generate Key Pair - Create Ed25519 or RSA keys for your agent\nSign Messages - Cryptographically sign messages\nVerify Signatures - Verify messages from other agents\nAgent ID - Generate persistent agent ID from public key\nAgent Card - Generate signed Agent Card for A2A/MCP"
      },
      {
        "title": "Installation",
        "body": "# Install Python dependency\npip install cryptography"
      },
      {
        "title": "Option 1: PowerShell (recommended on Windows)",
        "body": ".\\agent-identity.ps1 -Action generate -AgentName \"MyAgent\" -KeyType ed25519 -Password \"secret123\""
      },
      {
        "title": "Option 2: Python CLI (cross-platform)",
        "body": "python identity.py generate --name MyAgent --key-type ed25519 --password secret123"
      },
      {
        "title": "Available Commands",
        "body": "All commands work with both PowerShell and Python:"
      },
      {
        "title": "Generate Identity (with password encryption)",
        "body": ".\\agent-identity.ps1 -Action generate -AgentName \"MyAgent\" -KeyType ed25519 -Password \"secret123\""
      },
      {
        "title": "Sign Message",
        "body": ".\\agent-identity.ps1 -Action sign -Message \"Hello world\" -PrivateKeyPath \"keys/private.pem\" -Password \"secret123\""
      },
      {
        "title": "Verify Signature",
        "body": ".\\agent-identity.ps1 -Action verify -Message \"Hello world\" -Signature \"base64-signature\" -PublicKeyPath \"keys/public.pem\""
      },
      {
        "title": "Get Agent ID",
        "body": ".\\agent-identity.ps1 -Action id -PublicKeyPath \"keys/public.pem\""
      },
      {
        "title": "Sign Agent Card",
        "body": ".\\agent-identity.ps1 -Action card -PublicKeyPath \"keys/public.pem\" -PrivateKeyPath \"keys/private.pem\" -Name \"MyAgent\" -Description \"Research agent\" -Capabilities \"research,analysis\" -Endpoint \"https://myagent.com/a2a\" -Password \"secret123\""
      },
      {
        "title": "Password on Command Line",
        "body": "WARNING: Passing passwords on the command line is insecure because:\n\nCLI arguments can be visible to other processes\nCommand history is stored in logs\nUse only for testing, not production\n\nFor production, use interactive password input or environment variables."
      },
      {
        "title": "Private Key Storage",
        "body": "Keys are stored in keys/ directory\nEnsure proper file permissions\nBack up your keys securely\nNever share your private key"
      },
      {
        "title": "Requirements",
        "body": "Python 3.8+\ncryptography library"
      },
      {
        "title": "License",
        "body": "MIT"
      }
    ],
    "body": "Agent Identity Skill\n\nCryptographic identity system for AI agents. Sign messages, verify agents, prove who you are.\n\nFiles included:\n\nidentity.py - Python CLI (cross-platform)\nagent-identity.ps1 - PowerShell wrapper (Windows)\nWhat it does\nGenerate Key Pair - Create Ed25519 or RSA keys for your agent\nSign Messages - Cryptographically sign messages\nVerify Signatures - Verify messages from other agents\nAgent ID - Generate persistent agent ID from public key\nAgent Card - Generate signed Agent Card for A2A/MCP\nInstallation\n# Install Python dependency\npip install cryptography\n\nUsage\nOption 1: PowerShell (recommended on Windows)\n.\\agent-identity.ps1 -Action generate -AgentName \"MyAgent\" -KeyType ed25519 -Password \"secret123\"\n\nOption 2: Python CLI (cross-platform)\npython identity.py generate --name MyAgent --key-type ed25519 --password secret123\n\nAvailable Commands\n\nAll commands work with both PowerShell and Python:\n\nGenerate Identity (with password encryption)\n.\\agent-identity.ps1 -Action generate -AgentName \"MyAgent\" -KeyType ed25519 -Password \"secret123\"\n\nSign Message\n.\\agent-identity.ps1 -Action sign -Message \"Hello world\" -PrivateKeyPath \"keys/private.pem\" -Password \"secret123\"\n\nVerify Signature\n.\\agent-identity.ps1 -Action verify -Message \"Hello world\" -Signature \"base64-signature\" -PublicKeyPath \"keys/public.pem\"\n\nGet Agent ID\n.\\agent-identity.ps1 -Action id -PublicKeyPath \"keys/public.pem\"\n\nSign Agent Card\n.\\agent-identity.ps1 -Action card -PublicKeyPath \"keys/public.pem\" -PrivateKeyPath \"keys/private.pem\" -Name \"MyAgent\" -Description \"Research agent\" -Capabilities \"research,analysis\" -Endpoint \"https://myagent.com/a2a\" -Password \"secret123\"\n\n⚠️ Security Warnings\nPassword on Command Line\n\nWARNING: Passing passwords on the command line is insecure because:\n\nCLI arguments can be visible to other processes\nCommand history is stored in logs\nUse only for testing, not production\n\nFor production, use interactive password input or environment variables.\n\nPrivate Key Storage\nKeys are stored in keys/ directory\nEnsure proper file permissions\nBack up your keys securely\nNever share your private key\nRequirements\nPython 3.8+\ncryptography library\nLicense\n\nMIT"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/nantes/agent-id-osiris",
    "publisherUrl": "https://clawhub.ai/nantes/agent-id-osiris",
    "owner": "nantes",
    "version": "1.0.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-id-osiris",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-id-osiris",
    "agentUrl": "https://openagent3.xyz/skills/agent-id-osiris/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-id-osiris/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-id-osiris/agent.md"
  }
}