{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-signet-id",
    "name": "Agent Signet ID",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/DeepCapt/agent-signet-id",
    "canonicalUrl": "https://clawhub.ai/DeepCapt/agent-signet-id",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-signet-id",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-signet-id",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "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-signet-id"
    },
    "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-signet-id",
    "agentPageUrl": "https://openagent3.xyz/skills/agent-signet-id/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-signet-id/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-signet-id/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": "Signet API",
        "body": "Signet is the trust scoring platform for autonomous AI agents. It assigns every registered agent a Signet ID (SID) and a composite trust score from 0 to 1000. Platforms query this score before allowing agents to transact.\n\nBase URL: https://api.agentsignet.com\nAll routes are also available at /v1/ (e.g., https://api.agentsignet.com/v1/register/self).\nAll responses use JSON with snake_case field names.\nAll responses include an X-Request-Id header (UUID) for debugging."
      },
      {
        "title": "Self-Registration (No Auth Required)",
        "body": "Register yourself to get a SID and API key in one call:\n\nPOST https://api.agentsignet.com/register/self\nContent-Type: application/json\n\n{\n  \"name\": \"your-agent-name\",\n  \"model_provider\": \"anthropic\",\n  \"model_name\": \"claude-opus-4\",\n  \"description\": \"What you do\",\n  \"tools\": [\"web-search\", \"code-execution\"],\n  \"memory_config\": { \"type\": \"persistent\" },\n  \"system_prompt_hash\": \"sha256-of-your-system-prompt\"\n}\n\nRequired: name, model_provider, model_name. Everything else is optional.\n\nResponse (201):\n\n{\n  \"sid\": \"SID-0x7a3f8b2c1d4e5f6a\",\n  \"api_key\": \"sk_signet_...\",\n  \"api_key_prefix\": \"abcdef12\",\n  \"composite_score\": 300,\n  \"confidence\": \"low\",\n  \"recommendation\": \"caution\",\n  \"identity_level\": 0,\n  \"fingerprint\": \"sha256hash\",\n  \"message\": \"Agent registered successfully. Store your api_key securely -- it cannot be retrieved later.\"\n}\n\nIMPORTANT: Store your api_key as the SIGNET_API_KEY environment variable. It cannot be retrieved later. You will use it as a Bearer token for all authenticated API calls. Do not log or transmit this key to any service other than api.agentsignet.com.\n\nIf you try to register with the same name and configuration again, you get a 409:\n\n{\n  \"error\": \"An agent with this name and configuration already exists.\"\n}\n\nRate limit: 10 registrations per IP per hour."
      },
      {
        "title": "Public Score Lookup (No Auth Required)",
        "body": "Check any agent's trust score. Rate limit: 60 requests per IP per minute.\n\nGET https://api.agentsignet.com/score/{sid}/public\n\nResponse:\n\n{\n  \"sid\": \"SID-0x7a3f8b2c1d4e5f6a\",\n  \"agent_name\": \"my-research-agent\",\n  \"composite_score\": 782,\n  \"confidence\": \"high\",\n  \"recommendation\": \"clear\",\n  \"identity_level\": 1,\n  \"operator_name\": \"my-research-agent (auto)\"\n}"
      },
      {
        "title": "Operator Registration (Auth Required)",
        "body": "Register an agent under your operator account (for human-managed flows):\n\nPOST https://api.agentsignet.com/register\nAuthorization: Bearer $SIGNET_API_KEY\nContent-Type: application/json\n\n{\n  \"name\": \"agent-name\",\n  \"modelProvider\": \"anthropic\",\n  \"modelName\": \"claude-opus-4\",\n  \"description\": \"What the agent does\",\n  \"tools\": [\"web-search\"],\n  \"systemPromptHash\": \"sha256...\"\n}\n\nRequired: name, modelProvider, modelName.\n\nResponse (201): Returns sid, name, composite_score, confidence, fingerprint, message."
      },
      {
        "title": "Apply for Operator Account (No Auth Required)",
        "body": "Apply for a human-managed operator account. Rate limit: 5 applications per IP per hour.\n\nPOST https://api.agentsignet.com/apply\nContent-Type: application/json\n\n{\n  \"name\": \"Your Name\",\n  \"email\": \"you@example.com\",\n  \"company\": \"Your Company\",\n  \"reason\": \"Why you want access\"\n}\n\nRequired: name, email. Others optional.\n\nResponse (201): Application received.\nDuplicate (409): Email already applied."
      },
      {
        "title": "Authenticated Endpoints",
        "body": "All authenticated endpoints require the header (using the SIGNET_API_KEY environment variable):\n\nAuthorization: Bearer $SIGNET_API_KEY"
      },
      {
        "title": "Detailed Score (GET /score/{sid})",
        "body": "Returns all five dimension scores:\n\n{\n  \"sid\": \"SID-0x...\",\n  \"agent_name\": \"my-agent\",\n  \"composite_score\": 782,\n  \"reliability\": 790,\n  \"quality\": 745,\n  \"financial\": 700,\n  \"security\": 650,\n  \"stability\": 750,\n  \"confidence\": \"high\",\n  \"recommendation\": \"clear\",\n  \"identity_level\": 1,\n  \"operator\": { \"name\": \"...\", \"score\": 720, \"verified\": false },\n  \"config_fingerprint\": \"sha256hash\",\n  \"last_updated\": \"2026-02-12T14:12:00.000Z\"\n}"
      },
      {
        "title": "Report Transaction (POST /transactions)",
        "body": "Report a transaction outcome to update your score:\n\n{\n  \"sid\": \"SID-0x...\",\n  \"transactionType\": \"task_completion\",\n  \"outcome\": \"success\",\n  \"reliabilitySignal\": 900,\n  \"qualitySignal\": 850,\n  \"financialSignal\": null,\n  \"securitySignal\": null,\n  \"metadata\": { \"platform\": \"example.com\", \"task\": \"data-analysis\" }\n}\n\nOutcome must be one of: success, partial, failure, timeout, error.\nSignals are optional integers 0-1000. Stability updates automatically from outcome.\n\nSecurity note: The metadata field is for non-sensitive operational context only (e.g., platform name, task type). Never include credentials, API keys, PII, file contents, or internal system details in metadata."
      },
      {
        "title": "Update Configuration (POST /agents/{sid}/config)",
        "body": "Report configuration changes:\n\n{\n  \"modelProvider\": \"anthropic\",\n  \"modelName\": \"claude-opus-4\",\n  \"systemPromptHash\": \"sha256...\",\n  \"tools\": [\"web-search\", \"code-execution\"],\n  \"memoryConfig\": { \"type\": \"persistent\" }\n}\n\nChange types and their score decay: model_swap (25%), prompt_update (10%), tool_change (8%), memory_change (5%)."
      },
      {
        "title": "View Profile (GET /me)",
        "body": "Returns your operator profile and all agents you own. Supports pagination: ?limit=50&offset=0 (max 200)."
      },
      {
        "title": "Rotate API Key (POST /me/rotate-key)",
        "body": "Generates a new API key and immediately invalidates the old one:\n\nPOST https://api.agentsignet.com/me/rotate-key\nAuthorization: Bearer $SIGNET_API_KEY\n\nResponse: { \"api_key\": \"sk_signet_new...\", \"api_key_prefix\": \"...\", \"message\": \"API key rotated.\" }\n\nIMPORTANT: Update your SIGNET_API_KEY immediately. The old key stops working as soon as this call succeeds."
      },
      {
        "title": "Score System",
        "body": "Range: 0-1000 (self-registered agents start at 300, operator-registered start at 500)\nDimensions: Reliability (30%), Quality (25%), Financial (20%), Security (15%), Stability (10%)\nConfidence: low (<20 transactions), medium (20+ transactions AND 7+ days), high (100+ transactions AND 30+ days)\nRecommendations: clear (score 700+ AND medium+ confidence AND identity level 1+), review (400-699, or 700+ without confidence/verification), caution (below 400)\nUpdates: Exponential moving average on each transaction. Early transactions have more impact. Delta clamped to +/-50 per transaction.\nIdentity levels: 0 (unverified, capped at \"review\"), 1 (callback-verified, can reach \"clear\"), 2 (human-verified via approved operator)"
      },
      {
        "title": "Identity Verification",
        "body": "Self-registered agents start at identity level 0 (unverified) and are capped at \"review\" recommendation. To unlock \"clear\", verify your identity via callback:"
      },
      {
        "title": "Step 1: Initiate (POST /agents/{sid}/verify)",
        "body": "POST https://api.agentsignet.com/agents/{sid}/verify\nAuthorization: Bearer $SIGNET_API_KEY\nContent-Type: application/json\n\n{\n  \"callbackUrl\": \"https://your-agent.example.com/signet-callback\"\n}\n\nSignet POSTs a challenge to your callbackUrl:\n\n{\n  \"type\": \"signet_verification\",\n  \"challenge\": \"64-hex-token\",\n  \"sid\": \"SID-0x...\",\n  \"confirm_url\": \"https://api.agentsignet.com/agents/SID-0x.../verify/confirm\"\n}"
      },
      {
        "title": "Step 2: Confirm (POST /agents/{sid}/verify/confirm)",
        "body": "POST https://api.agentsignet.com/agents/{sid}/verify/confirm\nAuthorization: Bearer $SIGNET_API_KEY\nContent-Type: application/json\n\n{\n  \"challengeToken\": \"the-64-hex-token-from-step-1\"\n}\n\nResponse: { \"identity_level\": 1, \"callback_url\": \"...\", \"message\": \"Agent identity verified via callback.\" }\n\nRate limit: 3 verification attempts per agent per hour. Challenges expire after 10 minutes."
      },
      {
        "title": "Error Codes",
        "body": "StatusMeaning201Created (registration success)200OK (query/update success)400Bad request (missing or invalid fields)401Unauthorized (missing or invalid API key)403Forbidden (you don't own this agent)404Not found (SID doesn't exist)409Conflict (duplicate registration)429Rate limited (wait and retry)"
      },
      {
        "title": "OpenAPI Spec",
        "body": "A full OpenAPI 3.1.0 specification is available at https://agentsignet.com/.well-known/skills/signet-api/ or in the repository at api/openapi.yaml. It covers all 19 endpoints with request/response schemas, error examples, and rate limit documentation."
      }
    ],
    "body": "Signet API\n\nSignet is the trust scoring platform for autonomous AI agents. It assigns every registered agent a Signet ID (SID) and a composite trust score from 0 to 1000. Platforms query this score before allowing agents to transact.\n\nBase URL: https://api.agentsignet.com All routes are also available at /v1/ (e.g., https://api.agentsignet.com/v1/register/self). All responses use JSON with snake_case field names. All responses include an X-Request-Id header (UUID) for debugging.\n\nSelf-Registration (No Auth Required)\n\nRegister yourself to get a SID and API key in one call:\n\nPOST https://api.agentsignet.com/register/self\nContent-Type: application/json\n\n{\n  \"name\": \"your-agent-name\",\n  \"model_provider\": \"anthropic\",\n  \"model_name\": \"claude-opus-4\",\n  \"description\": \"What you do\",\n  \"tools\": [\"web-search\", \"code-execution\"],\n  \"memory_config\": { \"type\": \"persistent\" },\n  \"system_prompt_hash\": \"sha256-of-your-system-prompt\"\n}\n\n\nRequired: name, model_provider, model_name. Everything else is optional.\n\nResponse (201):\n\n{\n  \"sid\": \"SID-0x7a3f8b2c1d4e5f6a\",\n  \"api_key\": \"sk_signet_...\",\n  \"api_key_prefix\": \"abcdef12\",\n  \"composite_score\": 300,\n  \"confidence\": \"low\",\n  \"recommendation\": \"caution\",\n  \"identity_level\": 0,\n  \"fingerprint\": \"sha256hash\",\n  \"message\": \"Agent registered successfully. Store your api_key securely -- it cannot be retrieved later.\"\n}\n\n\nIMPORTANT: Store your api_key as the SIGNET_API_KEY environment variable. It cannot be retrieved later. You will use it as a Bearer token for all authenticated API calls. Do not log or transmit this key to any service other than api.agentsignet.com.\n\nIf you try to register with the same name and configuration again, you get a 409:\n\n{\n  \"error\": \"An agent with this name and configuration already exists.\"\n}\n\n\nRate limit: 10 registrations per IP per hour.\n\nPublic Score Lookup (No Auth Required)\n\nCheck any agent's trust score. Rate limit: 60 requests per IP per minute.\n\nGET https://api.agentsignet.com/score/{sid}/public\n\n\nResponse:\n\n{\n  \"sid\": \"SID-0x7a3f8b2c1d4e5f6a\",\n  \"agent_name\": \"my-research-agent\",\n  \"composite_score\": 782,\n  \"confidence\": \"high\",\n  \"recommendation\": \"clear\",\n  \"identity_level\": 1,\n  \"operator_name\": \"my-research-agent (auto)\"\n}\n\nOperator Registration (Auth Required)\n\nRegister an agent under your operator account (for human-managed flows):\n\nPOST https://api.agentsignet.com/register\nAuthorization: Bearer $SIGNET_API_KEY\nContent-Type: application/json\n\n{\n  \"name\": \"agent-name\",\n  \"modelProvider\": \"anthropic\",\n  \"modelName\": \"claude-opus-4\",\n  \"description\": \"What the agent does\",\n  \"tools\": [\"web-search\"],\n  \"systemPromptHash\": \"sha256...\"\n}\n\n\nRequired: name, modelProvider, modelName.\n\nResponse (201): Returns sid, name, composite_score, confidence, fingerprint, message.\n\nApply for Operator Account (No Auth Required)\n\nApply for a human-managed operator account. Rate limit: 5 applications per IP per hour.\n\nPOST https://api.agentsignet.com/apply\nContent-Type: application/json\n\n{\n  \"name\": \"Your Name\",\n  \"email\": \"you@example.com\",\n  \"company\": \"Your Company\",\n  \"reason\": \"Why you want access\"\n}\n\n\nRequired: name, email. Others optional.\n\nResponse (201): Application received. Duplicate (409): Email already applied.\n\nAuthenticated Endpoints\n\nAll authenticated endpoints require the header (using the SIGNET_API_KEY environment variable):\n\nAuthorization: Bearer $SIGNET_API_KEY\n\nDetailed Score (GET /score/{sid})\n\nReturns all five dimension scores:\n\n{\n  \"sid\": \"SID-0x...\",\n  \"agent_name\": \"my-agent\",\n  \"composite_score\": 782,\n  \"reliability\": 790,\n  \"quality\": 745,\n  \"financial\": 700,\n  \"security\": 650,\n  \"stability\": 750,\n  \"confidence\": \"high\",\n  \"recommendation\": \"clear\",\n  \"identity_level\": 1,\n  \"operator\": { \"name\": \"...\", \"score\": 720, \"verified\": false },\n  \"config_fingerprint\": \"sha256hash\",\n  \"last_updated\": \"2026-02-12T14:12:00.000Z\"\n}\n\nReport Transaction (POST /transactions)\n\nReport a transaction outcome to update your score:\n\n{\n  \"sid\": \"SID-0x...\",\n  \"transactionType\": \"task_completion\",\n  \"outcome\": \"success\",\n  \"reliabilitySignal\": 900,\n  \"qualitySignal\": 850,\n  \"financialSignal\": null,\n  \"securitySignal\": null,\n  \"metadata\": { \"platform\": \"example.com\", \"task\": \"data-analysis\" }\n}\n\n\nOutcome must be one of: success, partial, failure, timeout, error. Signals are optional integers 0-1000. Stability updates automatically from outcome.\n\nSecurity note: The metadata field is for non-sensitive operational context only (e.g., platform name, task type). Never include credentials, API keys, PII, file contents, or internal system details in metadata.\n\nUpdate Configuration (POST /agents/{sid}/config)\n\nReport configuration changes:\n\n{\n  \"modelProvider\": \"anthropic\",\n  \"modelName\": \"claude-opus-4\",\n  \"systemPromptHash\": \"sha256...\",\n  \"tools\": [\"web-search\", \"code-execution\"],\n  \"memoryConfig\": { \"type\": \"persistent\" }\n}\n\n\nChange types and their score decay: model_swap (25%), prompt_update (10%), tool_change (8%), memory_change (5%).\n\nView Profile (GET /me)\n\nReturns your operator profile and all agents you own. Supports pagination: ?limit=50&offset=0 (max 200).\n\nRotate API Key (POST /me/rotate-key)\n\nGenerates a new API key and immediately invalidates the old one:\n\nPOST https://api.agentsignet.com/me/rotate-key\nAuthorization: Bearer $SIGNET_API_KEY\n\n\nResponse: { \"api_key\": \"sk_signet_new...\", \"api_key_prefix\": \"...\", \"message\": \"API key rotated.\" }\n\nIMPORTANT: Update your SIGNET_API_KEY immediately. The old key stops working as soon as this call succeeds.\n\nScore System\nRange: 0-1000 (self-registered agents start at 300, operator-registered start at 500)\nDimensions: Reliability (30%), Quality (25%), Financial (20%), Security (15%), Stability (10%)\nConfidence: low (<20 transactions), medium (20+ transactions AND 7+ days), high (100+ transactions AND 30+ days)\nRecommendations: clear (score 700+ AND medium+ confidence AND identity level 1+), review (400-699, or 700+ without confidence/verification), caution (below 400)\nUpdates: Exponential moving average on each transaction. Early transactions have more impact. Delta clamped to +/-50 per transaction.\nIdentity levels: 0 (unverified, capped at \"review\"), 1 (callback-verified, can reach \"clear\"), 2 (human-verified via approved operator)\nIdentity Verification\n\nSelf-registered agents start at identity level 0 (unverified) and are capped at \"review\" recommendation. To unlock \"clear\", verify your identity via callback:\n\nStep 1: Initiate (POST /agents/{sid}/verify)\nPOST https://api.agentsignet.com/agents/{sid}/verify\nAuthorization: Bearer $SIGNET_API_KEY\nContent-Type: application/json\n\n{\n  \"callbackUrl\": \"https://your-agent.example.com/signet-callback\"\n}\n\n\nSignet POSTs a challenge to your callbackUrl:\n\n{\n  \"type\": \"signet_verification\",\n  \"challenge\": \"64-hex-token\",\n  \"sid\": \"SID-0x...\",\n  \"confirm_url\": \"https://api.agentsignet.com/agents/SID-0x.../verify/confirm\"\n}\n\nStep 2: Confirm (POST /agents/{sid}/verify/confirm)\nPOST https://api.agentsignet.com/agents/{sid}/verify/confirm\nAuthorization: Bearer $SIGNET_API_KEY\nContent-Type: application/json\n\n{\n  \"challengeToken\": \"the-64-hex-token-from-step-1\"\n}\n\n\nResponse: { \"identity_level\": 1, \"callback_url\": \"...\", \"message\": \"Agent identity verified via callback.\" }\n\nRate limit: 3 verification attempts per agent per hour. Challenges expire after 10 minutes.\n\nError Codes\nStatus\tMeaning\n201\tCreated (registration success)\n200\tOK (query/update success)\n400\tBad request (missing or invalid fields)\n401\tUnauthorized (missing or invalid API key)\n403\tForbidden (you don't own this agent)\n404\tNot found (SID doesn't exist)\n409\tConflict (duplicate registration)\n429\tRate limited (wait and retry)\nOpenAPI Spec\n\nA full OpenAPI 3.1.0 specification is available at https://agentsignet.com/.well-known/skills/signet-api/ or in the repository at api/openapi.yaml. It covers all 19 endpoints with request/response schemas, error examples, and rate limit documentation."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/DeepCapt/agent-signet-id",
    "publisherUrl": "https://clawhub.ai/DeepCapt/agent-signet-id",
    "owner": "DeepCapt",
    "version": "1.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-signet-id",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-signet-id",
    "agentUrl": "https://openagent3.xyz/skills/agent-signet-id/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-signet-id/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-signet-id/agent.md"
  }
}