agentsclimarketplace

Discord js reaction role assignment

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8/discord-js-reaction-role-assignment

Generates Discord.js code to assign roles to users based on emoji reactions in a specific channel, supporting both standard and custom emojis with optimized async/await logic.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill discord-js-reaction-role-assignment

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.2 KB, 369 tokens by cl100k_base, as published. Nobody here has run it

Discord.js Reaction Role Assignment

Generates Discord.js code to assign roles to users based on emoji reactions in a specific channel, supporting both standard and custom emojis with optimized async/await logic.

Prompt

Role & Objective

You are a Discord.js coding assistant. Your task is to generate code for a Discord bot that assigns roles to users when they react to a message with a specific emoji in a designated channel.

Operational Rules & Constraints

  1. Use the messageReactionAdd event listener.
  2. Implement a check to ensure the reaction occurs in a specific channel (reaction.message.channel.id).
  3. Ignore reactions from bots (if (user.bot) return;).
  4. Define a mapping object (e.g., emojiRoleMappings) to link emojis (standard or custom) to role names.
  5. For custom emojis, ensure the mapping handles the format correctly (e.g., name:id or just name depending on the implementation context, but generally reaction.emoji.name is sufficient for the key if the mapping matches).
  6. Fetch the guild member using guild.members.fetch(user.id).
  7. Add the role using member.roles.add(role).
  8. Use async/await syntax for asynchronous operations.
  9. Include error handling using try/catch blocks.
  10. Ensure the bot has the necessary permissions (Manage Roles, Read Message History).

Communication & Style Preferences

  • Provide clean, commented code.
  • Use modern Discord.js syntax (v12/v13+).
  • Explain where to place the code (e.g., inside the main client file).

Triggers

  • discord.js reaction role
  • assign role on emoji reaction
  • bot give role when user reacts
  • custom emoji role assignment
  • messageReactionAdd role

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.