
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
🚀 Flexible flow engine for intelligent multi-agent applications - Supports complex task decomposition, intelligent planning, memory management, and tool integration
# 1. Clone the repository
git clone https://github.com/skingko/skingflow.git
cd skingflow
# 2. Install dependencies
npm install
# 3. Configure environment variables
cp .env.example .env
# Edit .env file to set your LLM API key and database connection
# 4. Run the example
node examples/quick-start/index.js
import { createMultiAgentFramework } from './lib/multi-agent/index.js';
// Create framework instance
const framework = await createMultiAgentFramework({
llm: {
provider: 'http',
baseUrl: 'https://api.openai.com/v1/chat/completions',
apiKey: 'your-api-key',
model: 'gpt-4'
},
memory: {
storage: {
type: 'postgres',
config: {
host: 'localhost',
database: 'skingflow',
user: 'postgres',
password: 'your-password'
}
}
}
});
// Process request
const result = await framework.processRequest(
"Create a simple web application",
{ userId: 'user123' }
);
console.log(result);
┌─────────────────────────────────────────────────────────────┐
│ SkinFlow Framework │
├─────────────────────────────────────────────────────────────┤
│ Multi-Agent System │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ Planning │ │ Sub-Agents │ │ Coordination│ │
│ │ Agent │ │ Manager │ │ System │ │
│ └─────────────┘ └─────────────┘ └─────────────┘ │
├─────────────────────────────────────────────────────────────┤
│ Core Services │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ LLM │ │ Memory │ │ Tool │ │
│ │ Abstraction │ │ System │ │ Registry │ │
│ └─────────────┘ └─────────────┘ └─────────────┘ │
├─────────────────────────────────────────────────────────────┤
│ Infrastructure │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ Fallback │ │ Virtual │ │ Stream │ │
│ │ Manager │ │ FileSystem │ │ Engine │ │
│ └─────────────┘ └─────────────┘ └─────────────┘ │
└─────────────────────────────────────────────────────────────┘
This project supports multiple languages:
📖 Online Documentation: skingflow-docs.pages.dev
The SkinFlow framework is fully tested with the following production features:
| Metric | Performance |
|---|---|
| Simple request response time | < 2 seconds |
| Complex task processing time | < 30 seconds |
| Concurrent processing capability | 100+ requests/minute |
| Memory usage | < 512MB |
| Success rate | > 95% |
We welcome community contributions! Please check the Contributing Guide to learn how to participate in project development.
This project is open source under the MIT License. See LICENSE file for details.
🎉 Start using SkinFlow to build your intelligent applications!
FAQs
A flexible flow engine for Node.js, inspired by pocketflow.
The npm package skingflow receives a total of 2 weekly downloads. As such, skingflow popularity was classified as not popular.
We found that skingflow demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.