get_asset_manifestScope: catalog:readGet Asset Manifest
Retrieve structured AI manifest (v2.0) containing semantic embeddings, token metrics, and zero-shot code generation hints.
Description
Get Asset Manifest extracts the AI-facing semantic manifest for any catalog asset. While humans evaluate digital assets through visual screenshots and audio players, AI models require structured semantic metadata to understand how an asset fits into code, UI, or rendering pipelines. The manifest provides 1536-dimensional vector embedding tags, token weight estimates, suggested system prompt injections, framework-specific code snippets (e.g. Next.js @font-face CSS, Tailwind class assignments, React Three Fiber loader components), and compatibility flags. This empowers agents to write synthesis code without needing to download and manually parse binary archives.
Fetch the manifest whenever you are tasked with writing implementation code, component wrappers, or design tokens for an asset. Use the codeGenerationHints to generate accurate imports and styling.
Input Arguments
1 parameters| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| assetId | string | Required | — | Unique catalog asset identifier. |
Request Example
{
"jsonrpc": "2.0",
"id": "call_04",
"method": "tools/call",
"params": {
"name": "get_asset_manifest",
"arguments": {
"assetId": "ast_neon_matrix"
}
}
}Response Schema Example
{
"assetId": "ast_neon_matrix",
"schemaVersion": "2.0",
"embeddingsDimension": 1536,
"suggestedPromptInjection": "Use Neon Matrix font with bold styling for high-impact hero titles.",
"semanticTags": [
"cyberpunk",
"neon",
"display",
"high-contrast"
],
"tokenWeight": 42
}