I can help you out with that actually, you can set the collision to disabled at the start, then use await to enable the collision:
# at the start
$Collision.enabled = false
# summon the spikes
await $Spikes.animation_finished
$Collision.enabled = true
I hope this helps you!