
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
@agentuity/queue
Advanced tools
A standalone package for the Agentuity Queue service.
npm install @agentuity/queue
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');
const client = new QueueClient({
apiKey: 'your-api-key',
url: 'https://api.agentuity.com',
});
| Variable | Description | Default |
|---|---|---|
AGENTUITY_SDK_KEY | API key for authentication | Required |
AGENTUITY_REGION | Region for API endpoints | usc |
AGENTUITY_QUEUE_URL | Override Queue API URL | Auto-detected |
Apache-2.0
FAQs
Unknown package
We found that @agentuity/queue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.