Prompt Template
The main prompt and rules for generating schema v2 presets from natural-language descriptions.
Download templateGenerate sounds with your favorite AI, then import them into Insightful Audio.
Describe how a preset should sound in plain language, let an AI generate the matching JSON, and paste it into the app’s preset importer. The files below give the AI everything it needs: the prompt template, the reusable skill definition, the OpenAI agent config, and the complete schema reference.
The main prompt and rules for generating schema v2 presets from natural-language descriptions.
Download templateA reusable skill that tells an agent how and when to generate Insightful Audio presets.
Download skillAgent metadata for OpenAI-style systems so the skill can be invoked implicitly.
Download configFull parameter ranges, validation rules, and descriptor-to-parameter heuristics.
Download schemaPaste the prompt template into ChatGPT, Claude, or any AI assistant, then describe a sound:
Your description
“A bright retro chiptune lead with a tiny bit of filter wah and quick decay.”
The AI returns strict JSON like this:
{
"schemaVersion": 2,
"name": "Retro Wah Lead",
"description": "Bright chiptune lead with quick decay and subtle filter wah.",
"tags": ["lead", "chiptune", "bright"],
"settings": {
"volume": 0.5,
"waveform": "square",
"osc2Interval": 12,
"osc2Mix": 0.22,
"attack": 0.002,
"decay": 0.18,
"sustain": 0.55,
"release": 0.22,
"fmAmount": 0.04,
"filterMode": "lowPass",
"filterCutoff": 3200,
"filterResonance": 0.35,
"filterEnvelopeAttack": 0.003,
"filterEnvelopeRelease": 0.16,
"filterEnvelopeAmount": 0.5,
"filterEnvelopeShape": "exponential"
}
}