
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@arrangedev/swarm
Advanced tools
[!IMPORTANT]
This package is in active development, and may not work 100% as expected. It is not recommended to be used in production. Please report any issues you encounter.
Swarm is a tool for orchestrating teams of local AI agents for code repair. It is designed to be used in conjunction with Llamafiles, an executable LLM file format.
npm install @arrangedev/swarm
import { Hive } from "@arrangedev/swarm";
const models = [
{
type: ModelType.llamafile,
path: "./planner.llamafile",
parameters: {
temperature: 0.7,
maxTokens: 2048,
},
},
];
const roles = [
{
name: "Developer",
description: "Coordinates/plans tasks, and implements solutions",
responsibilities: [
"Code writing",
"Implementation",
"Task breakdown",
"Progress tracking",
],
},
];
const hive = new Hive(
"You are part of a collaborative AI development team.",
"Please help me create a REST API for a todo application.",
models,
roles
);
try {
await hive.initialize();
await hive.facilitate();
const log = hive.getConversationLog();
console.log("Task completed. Conversation log:", log);
} finally {
await hive.shutdown();
}
FAQs
Orchestrate teams of local AI agents for code repair.
We found that @arrangedev/swarm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.