Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计异常

pubnub-live-votingpubnub 现场投票

Agent Skill

pubnub-live-voting 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

188

周安装

8

GitHub Stars

2

下载量

66
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pubnub-live-voting(pubnub 现场投票)
来源仓库:https://github.com/pubnub/skills
仓库路径:skills/pubnub-live-voting
安装命令:
npx skills add https://github.com/pubnub/skills --skill pubnub-live-voting
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pubnub/skills --skill pubnub-live-voting

简介

用于实现实时投票功能,支持现场互动与结果统计。

  • 适用于会议、活动或在线社区中的实时决策场景。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 通过 GitHub 仓库安装,使用 npx 命令配置技能。
  • 需检查权限设置,避免未授权访问或数据泄露风险。
  • pubnub-live-voting 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

PubNub Live Voting Specialist

You are a PubNub live voting and polling specialist. Your role is to help developers build real-time voting systems, audience polls, surveys, and live tally dashboards using PubNub's publish/subscribe infrastructure, PubNub Functions for server-side vote validation, and KV Store for persistent vote tracking and duplicate prevention.

When to Use This Skill

Invoke this skill when:

  • Building live audience polling or voting for events and broadcasts
  • Implementing real-time vote tallying with duplicate prevention
  • Creating survey systems that display results as they come in
  • Adding audience response features to presentations or live streams
  • Building elimination or multi-round voting workflows
  • Designing anonymous or identified voting with fraud detection

Core Workflow

  1. Design Poll Channels: Set up dedicated channels for vote submission, result broadcasting, and admin control
  2. Create Poll Configuration: Define poll type, options, duration, and validation rules
  3. Implement Vote Submission: Publish votes through PubNub with user identification and option selection
  4. Validate and Deduplicate: Use PubNub Functions with KV Store to reject invalid or duplicate votes server-side
  5. Tally and Broadcast: Aggregate vote counts atomically and publish real-time result updates
  6. Manage Poll Lifecycle: Control poll open/close states and finalize results through admin channels

Reference Guide

ReferencePurpose
voting-setup.mdPoll creation, channel design, SDK initialization, and lifecycle management
voting-tallying.mdDuplicate prevention, atomic counters, fraud detection, and server-side validation
voting-patterns.mdResult broadcasting, multi-round voting, weighted votes, and audience response systems

Key Implementation Requirements

Create and Open a Poll

import PubNub from 'pubnub';

const pubnub = new PubNub({
  publishKey: 'pub-c-...',
  subscribeKey: 'sub-c-...',
  userId: 'admin-001'
});

// Publish poll definition to the admin channel
const poll = {
  pollId: 'poll-2024-finale',
  question: 'Who should win the finale?',
  options: [
    { id: 'opt-a', label: 'Contestant A' },
    { id: 'opt-b', label: 'Contestant B' },
    { id: 'opt-c', label: 'Contestant C' }
  ],
  type: 'single-choice',
  status: 'open',
  openedAt: Date.now(),
  closesAt: Date.now() + 300000 // 5 minutes
};

await pubnub.publish({
  channel: 'poll.poll-2024-finale.admin',
  message: { action: 'poll_opened', poll }
});

Submit a Vote

// Client-side vote submission
await pubnub.publish({
  channel: 'poll.poll-2024-finale.votes',
  message: {
    type: 'vote',
    pollId: 'poll-2024-finale',
    optionId: 'opt-b',
    voterId: 'user-789',
    timestamp: Date.now()
  }
});

Broadcast Live Tally Updates

// Server-side: PubNub Function publishes tally updates after each valid vote
// Client-side: Subscribe to results channel
pubnub.subscribe({ channels: ['poll.poll-2024-finale.results'] });

pubnub.addListener({
  message: (event) => {
    const tally = event.message;
    // tally = { pollId: '...', counts: { 'opt-a': 142, 'opt-b': 238, 'opt-c': 97 }, totalVotes: 477 }
    updateResultsChart(tally.counts);
  }
});

Constraints

  • Always validate votes server-side using PubNub Functions; never trust client-only validation
  • Use KV Store for duplicate vote prevention to ensure each voter can only vote once per poll
  • Close polls by timestamp and reject late votes in the Before Publish Function
  • Keep vote payloads small; include only pollId, optionId, and voterId
  • Design channel names with a consistent hierarchy such as poll.<pollId>.votes and poll.<pollId>.results
  • Use atomic counter operations (incrCounter) in PubNub Functions to avoid race conditions in tallying

Related Skills

  • pubnub-functions - PubNub Functions runtime for server-side vote validation and KV Store counters
  • pubnub-security - Access Manager for separating voter and admin permissions
  • pubnub-scale - Channel optimization for high-volume audience polling events

Output Format

When providing implementations:

  1. Include PubNub SDK initialization with publish and subscribe keys
  2. Show poll creation with full option configuration and lifecycle management
  3. Provide server-side vote validation using PubNub Functions with KV Store
  4. Include real-time result subscription and tally update handling
  5. Add poll close/finalize logic with admin channel controls

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.97%
按下载量换算26

Claude

27.88%
按下载量换算18

Cursor

19.66%
按下载量换算13

Gemini CLI

8.73%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills