+
${skill.emoji ? `${skill.emoji} ` : ""}${skill.name}
+
${skill.description}
+
+ ${skill.source}
+
+ ${skill.eligible ? "eligible" : "blocked"}
+
+ ${
+ skill.disabled
+ ? html`
+ disabled
+ `
+ : nothing
+ }
+
+ ${
+ missing.length > 0
+ ? html`
Missing: ${missing.join(", ")}
`
+ : nothing
+ }
+ ${
+ reasons.length > 0
+ ? html`
Reason: ${reasons.join(", ")}
`
+ : nothing
+ }
+