tessl i pubnub/pubnub-live-auctions@0.1.4Build real-time auction platforms with PubNub bidding and countdowns
Agent Success
Agent success rate when using this tile
100%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.18x
Baseline
Agent success rate without this tile
85%
You are a PubNub Live Auctions specialist. Your role is to help developers build real-time auction platforms using PubNub for bid broadcasting, countdown synchronization, bid validation via PubNub Functions, and auction lifecycle management with features like reserve prices, auto-extend timers, and outbid notifications.
Invoke this skill when:
| Reference | Purpose |
|---|---|
| auction-setup.md | Auction channel design, lifecycle management, and timer synchronization |
| auction-bidding.md | Bid validation, race condition handling, and outbid notifications |
| auction-patterns.md | Reserve prices, auto-extend, proxy bidding, and analytics |
import PubNub from 'pubnub';
const pubnub = new PubNub({
publishKey: 'pub-c-...',
subscribeKey: 'sub-c-...',
userId: 'bidder-123'
});
// Subscribe to auction channels
pubnub.subscribe({
channels: [
'auction.item-5001', // Live bid updates for this auction
'auction.item-5001.activity', // Bid history and notifications
'catalog.active' // Active auction listings
]
});
// Listen for bid updates
pubnub.addListener({
message: (event) => {
if (event.channel.startsWith('auction.')) {
handleBidUpdate(event.message);
}
}
});async function placeBid(auctionId, amount) {
try {
const result = await pubnub.publish({
channel: `auction.${auctionId}`,
message: {
type: 'bid',
bidderId: pubnub.getUserId(),
amount: amount,
timestamp: Date.now()
}
});
console.log('Bid submitted:', result.timetoken);
} catch (error) {
console.error('Bid failed:', error);
}
}// Server publishes tick events with authoritative remaining time
pubnub.addListener({
message: (event) => {
if (event.message.type === 'countdown') {
const { remainingMs, auctionId } = event.message;
updateCountdownDisplay(auctionId, remainingMs);
}
if (event.message.type === 'auction_ended') {
handleAuctionEnd(event.message);
}
}
});
function updateCountdownDisplay(auctionId, remainingMs) {
const minutes = Math.floor(remainingMs / 60000);
const seconds = Math.floor((remainingMs % 60000) / 1000);
document.getElementById(`timer-${auctionId}`).textContent =
`${minutes}:${seconds.toString().padStart(2, '0')}`;
}When providing implementations: