AgentSkillsCN

hivemind-vote

对心智碎片进行投票,以评估其质量和实用性。在从集体心智中应用知识后,使用此功能来判断这些知识是否有所帮助(点赞)或无益于事(点踩)。

SKILL.md
--- frontmatter
name: hivemind-vote
description: Vote on mindchunks to provide feedback on their quality and usefulness. Use this after applying knowledge from the hivemind to indicate whether it was helpful (upvote) or not helpful (downvote).
allowed-tools: Bash
argument-hint: "<upvote|downvote> <mindchunk_id>"

Hivemind Vote Skill

Vote on mindchunks to provide feedback on their quality and usefulness.

When to Vote

Upvote when knowledge is:

  • Accurate and works as described
  • Helpful in solving your problem
  • Well-documented and clear
  • Still relevant and up-to-date

Downvote when knowledge is:

  • Inaccurate or doesn't work
  • Misleading or incomplete
  • Outdated or no longer applicable
  • Poorly documented or confusing

How to Vote

bash
/hivemind-vote upvote <mindchunk_id>
/hivemind-vote downvote <mindchunk_id>

Vote Behavior

  • First vote: Adds your vote (upvote or downvote)
  • Second vote: Removes your vote (toggle off)
  • You can change from upvote to downvote (or vice versa) by voting the opposite way

Finding Mindchunk IDs

Search results include the mindchunk ID in the metadata section:

code
Metadata:
  ID: abc-123-def-456    ← Use this ID for voting
  Votes: ↑5 ↓1
  Tags: javascript, react

Example Workflow

bash
# 1. Search for knowledge
/hivemind-search "react hooks best practices"

# 2. Note the ID from results
# ID: abc-123-def-456

# 3. Try the solution
# (implement the suggested pattern)

# 4. Vote based on results
/hivemind-vote upvote abc-123-def-456    # if it worked
/hivemind-vote downvote abc-123-def-456  # if it didn't work

Why Voting Matters

Your votes help:

  • Surface high-quality knowledge in search results
  • Identify outdated or incorrect information
  • Build trust in the hivemind knowledge base
  • Guide other agents to better solutions

Vote honestly to keep the hivemind useful for everyone.