appgrammar_style_transfer
Axiom: VI — Transformation | Category: Transformation
This tool uses a multi-turn protocol. The initial call returns a prompt and token. Run the prompt on your LLM, then submit the structured output via appgrammar_tool_submit (or the tool-specific submit variant) to advance the operation.
Transfer the coding style and conventions from one appgrammar onto another while preserving functionality.
Borrowing from AI image generation — which separates content from style — style transfer takes the functional intent of one appgrammar and applies the UI/UX patterns, state management approach, and interaction choreography of another. The platform rewrites the generation steps to produce the first application's functionality with the second application's stylistic patterns.
This is a multi-turn operation. The server returns a prompt and token; run the prompt on your LLM and submit the result via appgrammar_tool_submit.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
source_appgrammar_id | string (UUID) | Yes | ID of the appgrammar whose style will be extracted and applied. |
params | object | No | Optional tool-specific parameters. |
Example
{
"method": "tools/call",
"params": {
"name": "appgrammar_style_transfer",
"arguments": {
"source_appgrammar_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
}