Skeleton icon

Skeleton Summon Command Generator

  • Category: hostile
  • Baby variant: no
  • Entity id: minecraft:skeleton

The skeleton is the baseline ranged threat of vanilla Minecraft, and it is also one of the most command-friendly mobs available: it renders every armor slot, holds items in both hands, and switches between bow fire and melee depending on what sits in its mainhand. That flexibility makes it the standard body for arena archers, castle-wall defenders, and dungeon snipers assembled with /summon.

Pick gear through the equipment slots and the generator writes it straight into the command. A bow carrying Power and Punch turns the stock 20-health mob into a real ranged hazard, while any helmet doubles as sun protection so a daytime encounter does not end with your archer burning down before players arrive.

Traits round out set-piece work: no_ai freezes a skeleton into a shooting-range dummy, persistent keeps it loaded through long adventure-map sessions, and the passenger field seats one on a spider for the classic jockey without touching raw NBT.

Example commands

Power V sniper

/summon minecraft:skeleton ~ ~ ~ {equipment:{mainhand:{id:"minecraft:bow",count:1,components:{"minecraft:enchantments":{"minecraft:power":5,"minecraft:punch":2}}}}}

Mobs benefit from bow enchantments they hold, so Power V arrows hit far harder than the default and Punch II shoves players off ledges.

Armored arena captain

/summon minecraft:skeleton ~ ~ ~ {equipment:{feet:{id:"minecraft:iron_boots",count:1},chest:{id:"minecraft:chainmail_chestplate",count:1},head:{id:"minecraft:iron_helmet",count:1},mainhand:{id:"minecraft:bow",count:1}},CustomName:"Bone Captain",CustomNameVisible:1b,Health:40f,attributes:[{id:"minecraft:max_health",base:40}]}

Doubled health plus iron and chainmail pieces makes a mid-fight elite; the visible name marks it as the kill target for the wave.

Classic spider jockey

/summon minecraft:spider ~ ~ ~ {Passengers:[{id:"minecraft:skeleton"}]}

Summons the vehicle spider with the skeleton seated on top, recreating the rare natural jockey on demand for a mineshaft ambush.

Sword-and-board bruiser

/summon minecraft:skeleton ~ ~ ~ {equipment:{mainhand:{id:"minecraft:iron_sword",count:1,components:{"minecraft:enchantments":{"minecraft:sharpness":3}}},offhand:{id:"minecraft:shield",count:1}},PersistenceRequired:1b}

Anything other than a bow in the mainhand flips the AI to melee charges, so this one closes distance instead of kiting.

The same build across versions

Rows appear only where the output actually changes -- copy the one that matches your world.

Java 1.16

/summon minecraft:skeleton ~ ~ ~ {ArmorItems:[{id:"minecraft:iron_boots",Count:1b},{},{id:"minecraft:chainmail_chestplate",Count:1b},{id:"minecraft:iron_helmet",Count:1b}],HandItems:[{id:"minecraft:bow",Count:1b},{}],CustomName:'{"text":"Bone Captain"}',CustomNameVisible:1b,Health:40f,Attributes:[{Name:"generic.max_health",Base:40}]}

Java 1.21.4

/summon minecraft:skeleton ~ ~ ~ {ArmorItems:[{id:"minecraft:iron_boots",count:1},{},{id:"minecraft:chainmail_chestplate",count:1},{id:"minecraft:iron_helmet",count:1}],HandItems:[{id:"minecraft:bow",count:1},{}],CustomName:'{"text":"Bone Captain"}',CustomNameVisible:1b,Health:40f,attributes:[{id:"minecraft:max_health",base:40}]}

Java 26.2

/summon minecraft:skeleton ~ ~ ~ {equipment:{feet:{id:"minecraft:iron_boots",count:1},chest:{id:"minecraft:chainmail_chestplate",count:1},head:{id:"minecraft:iron_helmet",count:1},mainhand:{id:"minecraft:bow",count:1}},CustomName:"Bone Captain",CustomNameVisible:1b,Health:40f,attributes:[{id:"minecraft:max_health",base:40}]}

Bedrock 26.x

/summon minecraft:skeleton "Bone Captain" ~ ~ ~
  • Bedrock /summon does not accept Java entity NBT; omitted armor equipment, hand equipment, Health/Attributes, traits (custom_name_visible).

Worth knowing

  • Skeletons ignite under direct sunlight unless they wear head armor; the helmet slowly absorbs durability damage in exchange for keeping the mob alive.
  • A skeleton holding any mainhand item that is not a bow abandons shooting entirely and runs at its target with melee swings.
  • Hard difficulty shortens the delay between skeleton arrows, so the same summon fires noticeably faster than it does on Easy.
  • When a skeleton's arrow lands the killing blow on a creeper, the creeper drops a music disc, which map-makers stage deliberately with no_ai creepers.
  • Skeletons refuse to fight wolves and sprint away from them instead, which can pull a carefully placed archer out of position.
  • A skeleton that freezes solid in powder snow transforms into a stray, complete with the stray's Slowness arrows.

FAQ

How do I stop a summoned skeleton from burning in daylight?

Fill the helmet slot with anything, even a leather cap, because the sunlight check only asks whether head armor exists. Alternatively toggle the fire_immune trait if you want the head slot free.

Can a skeleton fight with a sword instead of a bow?

Yes. Put a sword or axe in the mainhand slot and the AI switches to melee pursuit automatically; no extra tags are needed.

Why did my skeleton despawn before players reached it?

Hostile mobs despawn when no player stays within range for a while. Enable the persistent trait on the summon and it stays loaded until killed.

Do bow enchantments on a skeleton actually work?

They do. Power raises its arrow damage, Punch adds knockback, and Flame sets targets on fire, exactly as the same bow would behave in a player's hands.