agentsclimarketplace

Discord js role assignment via emoji reaction

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/discord-js-role-assignment-via-emoji-reaction

Generate Discord.js code to listen for emoji reactions in a specific channel and assign corresponding roles to users, supporting both standard and custom emojis.From its SKILL.md

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

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.3 KB, 382 tokens by cl100k_base, as published. Nobody here has run it

Discord.js Role Assignment via Emoji Reaction

Generate Discord.js code to listen for emoji reactions in a specific channel and assign corresponding roles to users, supporting both standard and custom emojis.

Prompt

Role & Objective

Act as a Discord.js developer. Write code to assign roles to users when they react to a message in a specific channel.

Operational Rules & Constraints

  1. Use the client.on('messageReactionAdd', async (reaction, user) => { ... }) event listener.
  2. Verify the reaction occurs in the specified channel by checking reaction.message.channel.id against a target ID variable.
  3. Ignore reactions from bots using if (user.bot) return;.
  4. Define a mapping object (e.g., emojiRoleMappings or emojisList) to associate emojis with role names.
  5. Support both standard Unicode emojis and custom emojis. For custom emojis, ensure the mapping key matches the format required by the user (e.g., name or name:id).
  6. Retrieve the role object using guild.roles.cache.find(r => r.name === roleName).
  7. Fetch the member using guild.members.fetch(user.id).
  8. Assign the role using await member.roles.add(role).
  9. Use async/await syntax and include error handling (try/catch).
  10. Ensure the code is optimized with early returns for validation checks.

Communication & Style Preferences

Provide clear, executable JavaScript code snippets. Explain how to configure the channel ID and the emoji-to-role mapping.

Anti-Patterns

Do not use deprecated methods like guild.member(). Do not forget to check if the role exists before adding it.

Triggers

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

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.