Agent skill
feedback
Send feedback to the Nexu team. Use when the user says /feedback followed by their message.
Install this agent skill to your Project
npx add-skill https://github.com/nexu-io/nexu/tree/main/skills/nexubot/feedback
SKILL.md
Feedback
Collect user feedback and forward it to the Nexu team. Conversation history and images are extracted automatically by a script — you do NOT need to copy-paste messages or scan for image URLs.
When triggered
The user sends /feedback <message> to share feedback, report issues, or make suggestions about the Nexu platform.
Steps
-
Extract feedback content: The text after
/feedbackis the user's feedback. If empty, ask the user to provide their feedback. -
Gather identifiers:
- agentId: Your own agent ID. Find it from the
Runtime:line in your system prompt — it appears asagent=XXXXXX. It is a cuid2 string likey9cnvdlucvyaokp20mqrsoa9. Do NOT use "main" or other placeholder values. - channel: The current channel type — one of
feishu,slack, ordiscord. - sender: The sender's display name or username as shown in the conversation. If you only have a user ID, use that. Do NOT use generic "user" or "User".
- agentId: Your own agent ID. Find it from the
-
Run the submit script: Use the exec tool to run the following command. The script automatically reads your conversation history and any images from the session file — you do NOT need to provide them manually.
SKILL_PATH="<SKILL_LOCATION>"
node "$(dirname "${SKILL_PATH/#\~/$HOME}")/submit-feedback.mjs" \
--content "<ESCAPED_FEEDBACK>" \
--sender "<SENDER>" \
--channel "<CHANNEL_TYPE>" \
--agent-id "<AGENT_ID>"
Important:
- Replace
<SKILL_LOCATION>with the exact path from the<location>tag in your system prompt (may contain~) - The
${SKILL_PATH/#\~/$HOME}expansion handles tilde (~) → absolute path conversion automatically - Replace ALL other
<...>placeholders with actual values BEFORE running the command - Properly escape shell special characters in the feedback content (single quotes →
'\'', etc.)
- Confirm to user:
- If the output contains
{"ok":true}, reply: "Thanks for your feedback! It has been forwarded to the Nexu team." - If it fails, reply: "Sorry, there was an issue sending your feedback. Please try again later."
- If the output contains
Important
- Do NOT modify, filter, or censor the user's feedback content. Forward it as-is.
- Do NOT ask for confirmation before sending — the user already expressed intent by using /feedback.
- Do NOT manually build conversationContext or imageUrls — the script handles this automatically.
- The API will automatically look up the bot owner's email and bot name from the agentId, so focus on getting the agentId right.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
libtv-video
coding-agent
Delegate coding tasks to Codex, Claude Code, or Pi agents via background process. Use when: (1) building/creating new features or apps, (2) reviewing PRs (spawn in temp dir), (3) refactoring large codebases, (4) iterative coding that needs file exploration. NOT for: simple one-liner fixes (just edit), reading code (use read tool), thread-bound ACP harness requests in chat (for example spawn/run Codex or Claude Code in a Discord thread; use sessions_spawn with runtime:"acp"), or any work in ~/clawd workspace (never spawn agents here). Claude Code: use --print --permission-mode bypassPermissions (no PTY). Codex/Pi/OpenCode: pty:true required.
gh-issues
Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352]
deep-research
深度调研方法论(8步法):将模糊主题转化为高质量调研报告。 触发词:/deep-research、深度调研、帮我调研、调研一下、对比分析 注意:如果用户需要的是可视化图谱而非报告,请使用 research-to-diagram skill。
research-to-diagram
深度调研主题并自动生成知识关系图谱PDF。接收研究主题后自动进行网络调研、信息收集、知识整理,最终生成专业的可视化关系图谱。适用于"研究...并做图"、"深度分析...并可视化"、"生成知识图谱"等场景。
Nano Banana One Shop
All-in-one image generation with Gemini models. Supports Nano Banana (3.1 Flash), Nano Banana Pro (3 Pro), and Nano Banana 2 (2.5 Flash). Triggers on "generate image", "image generation", "nano banana", "edit image".
Didn't find tool you were looking for?