New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@agentuity/queue

Package Overview
Dependencies
Maintainers
3
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agentuity/queue

latest
npmnpm
Version
2.0.11
Version published
Maintainers
3
Created
Source

@agentuity/queue

A standalone package for the Agentuity Queue service.

Installation

npm install @agentuity/queue

Quick Start

import { QueueClient } from '@agentuity/queue';

const client = new QueueClient();

// Create a queue
await client.createQueue('order-processing');

// Publish a message
const result = await client.publish('order-processing', {
  orderId: 123,
  action: 'process'
}, {
  metadata: { priority: 'high' },
  ttl: 3600
});

console.log(`Message ${result.id} published`);

// Delete a queue
await client.deleteQueue('old-queue');

Configuration

const client = new QueueClient({
  apiKey: 'your-api-key',
  url: 'https://api.agentuity.com',
});

Environment Variables

VariableDescriptionDefault
AGENTUITY_SDK_KEYAPI key for authenticationRequired
AGENTUITY_REGIONRegion for API endpointsusc
AGENTUITY_QUEUE_URLOverride Queue API URLAuto-detected

License

Apache-2.0

FAQs

Package last updated on 08 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts