Stream Title
Stream title automation lets Kicklet render a dynamic title and send the result to Kick as the current stream title. Use it when the title should include live values such as follower goals, counters, variables, or other generated output.
Configure the title
Open Stream Title in the Kicklet dashboard.
The title field accepts a normal title template. A simple static title works, but the title can also contain Engine v2 expressions.
Follower Goal: {{channel.followers()}}/100
The default title is:
My First Stream! Follower Goal: {{channel.followers()}}/100
Use Kicklet Studio when the title source should be updated from JavaScript or when you want to test a title together with other command or message logic.
Enable automation
Turn the stream title automation on after saving the title. When it is active, Kicklet renders the title and updates the Kick stream title.
Stream title automation is a premium feature. Non-premium accounts can edit the title settings, but enabling automatic updates requires premium.
Template version
Stream titles support Kicklet's versioned code execution. Newer titles can use engine v2, while older titles can keep engine v1 behavior.
Use helpers carefully: the rendered output becomes the public stream title, so it should stay short and readable. If a helper returns an empty value while the channel is offline or data is unavailable, make sure the surrounding text still makes sense.
Engine v2 code can also update the saved automatic title template:
streamTitle.setAutoTemplate("Follower Goal: {{channel.followers()}}/100");