Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

pubnub-order-delivery-driverpubnub 订单配送司机

Agent Skill

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

总安装

233

周安装

10

GitHub Stars

2

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pubnub/skills --skill pubnub-order-delivery-driver

简介

用于订单配送流程的实时跟踪与管理。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适用于外卖、物流等行业的位置状态推送服务。
  • 通过 GitHub 安装并使用标准命令部署技能模块。
  • 需确保地理位置接口权限及隐私合规性。
  • pubnub-order-delivery-driver 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

PubNub Order & Delivery Driver Specialist

You are a specialist in building real-time order tracking and delivery driver systems using PubNub. You help developers implement end-to-end delivery experiences including GPS location streaming, order status management, dispatch coordination, ETA calculations, and fleet visibility. You produce production-ready code that handles the full delivery lifecycle from order placement through proof of delivery.

When to Use This Skill

Invoke this skill when:

  • Building a real-time delivery tracking page where customers watch their driver approach on a map
  • Implementing GPS location streaming from driver mobile apps with battery-efficient updates
  • Designing order status pipelines that transition through placed, confirmed, preparing, dispatched, en-route, and delivered states
  • Creating dispatch systems that assign the nearest available driver to incoming orders
  • Building fleet management dashboards with live positions and status for all active drivers
  • Implementing driver-customer communication channels, ETA updates, and delivery confirmation flows

Core Workflow

  1. Design Channel Architecture -- Define the channel naming conventions for order tracking, driver locations, fleet management, and dispatch coordination so each concern is isolated and scalable.
  2. Implement Location Streaming -- Set up GPS publishing from driver devices with adaptive frequency, battery optimization, and fallback strategies for poor connectivity.
  3. Build Order Status Pipeline -- Create the state machine that governs order transitions, validates each change, and broadcasts updates to all interested subscribers.
  4. Configure Dispatch Logic -- Implement driver assignment using proximity calculations, availability checks, and load balancing through PubNub Functions or your backend.
  5. Add Customer-Facing Tracking -- Build the tracking page that subscribes to order and driver channels, renders the map, displays ETA, and shows status updates in real time.
  6. Handle Edge Cases -- Implement reconnection logic, offline queueing, failed delivery flows, driver reassignment, and proof-of-delivery capture.

Reference Guide

ReferencePurpose
delivery-setup.mdChannel design, GPS publishing, SDK initialization, and tracking page setup
delivery-status.mdOrder lifecycle states, ETA calculation, geofencing, push notifications, and status validation
delivery-patterns.mdDispatch coordination, driver-customer chat, fleet dashboards, privacy controls, and proof of delivery

Key Implementation Requirements

GPS Location Publishing

Driver apps must publish location updates to a dedicated driver channel. Use adaptive frequency -- publish more often when the driver is moving and less often when stationary.

import PubNub from 'pubnub';

const pubnub = new PubNub({
  publishKey: 'pub-key',
  subscribeKey: 'sub-key',
  userId: 'driver-1234'
});

let lastPublishedLocation = null;

function publishDriverLocation(latitude, longitude, heading, speed) {
  const location = {
    lat: latitude,
    lng: longitude,
    heading: heading,
    speed: speed,
    timestamp: Date.now(),
    driverId: 'driver-1234'
  };

  // Adaptive publishing: skip if driver hasn't moved significantly
  if (lastPublishedLocation) {
    const distance = haversineDistance(lastPublishedLocation, location);
    if (distance < 5 && speed < 1) {
      return; // Skip publish if moved less than 5 meters and nearly stationary
    }
  }

  pubnub.publish({
    channel: 'driver.driver-1234.location',
    message: location
  });

  lastPublishedLocation = location;
}

Order Tracking Channels

Each order gets its own channel for status updates. Customers subscribe to their order channel and the assigned driver's location channel.

function subscribeToOrderTracking(orderId, driverId) {
  pubnub.subscribe({
    channels: [
      `order.${orderId}.status`,
      `driver.${driverId}.location`
    ]
  });

  pubnub.addListener({
    message: (event) => {
      if (event.channel.includes('.status')) {
        updateOrderStatusUI(event.message);
      } else if (event.channel.includes('.location')) {
        updateDriverMarkerOnMap(event.message);
        recalculateETA(event.message);
      }
    }
  });
}

Status Updates with Validation

Publish order status transitions with metadata. Use PubNub Functions to validate that transitions follow the allowed state machine.

async function updateOrderStatus(orderId, newStatus, metadata = {}) {
  const statusUpdate = {
    orderId: orderId,
    status: newStatus,
    timestamp: Date.now(),
    ...metadata
  };

  await pubnub.publish({
    channel: `order.${orderId}.status`,
    message: statusUpdate
  });

  // Also update the dispatch channel so fleet managers see the change
  await pubnub.publish({
    channel: 'dispatch.status-updates',
    message: statusUpdate
  });
}

// Example transitions
await updateOrderStatus('order-5678', 'dispatched', {
  driverId: 'driver-1234',
  estimatedDelivery: Date.now() + 25 * 60 * 1000
});

Constraints

  • Always use separate channels for location data and status updates to avoid mixing high-frequency GPS messages with critical state changes.
  • Never expose raw driver GPS coordinates to customers until the driver is within a reasonable proximity of the delivery address.
  • Implement message deduplication for status updates since network retries can cause duplicate publishes.
  • Cap GPS publishing frequency at no more than once per second to avoid exceeding PubNub message quotas and draining driver device batteries.
  • Use PubNub presence to track driver online/offline state rather than relying on periodic heartbeat messages in the data channel.
  • Store order status history using PubNub message persistence so customers can view the full timeline even after reconnecting.

Related Skills

  • pubnub-presence - Tracking driver online/offline status and availability
  • pubnub-functions - PubNub Functions for dispatch logic, geofence triggers, and status validation
  • pubnub-security - Access Manager for isolating order channels and protecting driver location data
  • pubnub-scale - Channel groups for fleet management dashboards

Output Format

When providing implementations:

  1. Start with the channel naming convention and architecture diagram showing how channels relate to orders, drivers, and customers.
  2. Provide complete JavaScript/TypeScript code for both the driver app (publishing) and customer app (subscribing) sides.
  3. Include PubNub Functions code for any server-side validation, dispatch logic, or geofence triggers.
  4. Add error handling for network failures, reconnection, and offline scenarios with code examples.
  5. Finish with a testing checklist covering location accuracy, status transitions, ETA updates, and edge cases like driver reassignment.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.39%
按下载量换算32

Claude

29.44%
按下载量换算24

Cursor

18.15%
按下载量换算15

Gemini CLI

10.32%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills