axint_scaffold
Generate starter TypeScript intent files for Apple App Intents using the axint SDK. Provide a name, description, optional domain, and parameters to create ready-to-compile source code.
Instructions
Generate a starter TypeScript intent file using the axint SDK. Pass a PascalCase name, a description, and optionally a domain (messaging, productivity, health, finance, commerce, media, navigation, smart-home) and a list of parameters. Returns ready-to-save source code that compiles with axint compile.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | PascalCase name for the intent, e.g., 'CreateEvent' | |
| description | Yes | Human-readable description of what the intent does | |
| domain | No | Optional Apple App Intent domain (messaging, productivity, health, finance, commerce, media, navigation, smart-home) | |
| params | No | Optional initial parameters. Each item: { name, type, description }. Supported types: string, int, double, float, boolean, date, duration, url. |