
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
@vcms-io/solidis-extensions
Advanced tools
Extensions for Solidis
Overview • Supported Extensions • Installation • Usage • License
Solidis offers pre-defined extensions through its highly extensible architecture. This extensibility enables seamless addition of specialized commands while maintaining zero dependencies and enterprise-grade performance.
# Using npm
npm install @vcms-io/solidis-extensions
# Using yarn
yarn add @vcms-io/solidis-extensions
# Using pnpm
pnpm add @vcms-io/solidis-extensions
Requires client manually extended with set & del commands
import { SolidisClient } from '@vcms-io/solidis';
import { set } from '@vcms-io/solidis/command/set';
import { del } from '@vcms-io/solidis/command/del';
import { spinLock } from '@vcms-io/solidis-extensions';
import type { SolidisClientExtensions } from '@vcms-io/solidis';
const extensions = {
set,
del,
spinLock,
} satisfies SolidisClientExtensions;
const client = new SolidisClient({
host: 'localhost',
port: 6379,
}).extend(extensions);
// All concurrent tasks will be serialized
const promises = Array.from({ length: 100 }).map(async () => {
const { unlock } = await client.spinLock(`test`, {
logger: console,
});
await unlock();
});
await Promise.all(promises);
Just needs to be extended with a spinLock command
import { SolidisFeaturedClient } from '@vcms-io/solidis/featured';
import { spinLock } from '@vcms-io/solidis-extensions';
import type { SolidisClientExtensions } from '@vcms-io/solidis';
const extensions = {
spinLock,
} satisfies SolidisClientExtensions;
const client = new SolidisFeaturedClient({
host: 'localhost',
port: 6379,
}).extend(extensions);
// All concurrent tasks will be serialized
const promises = Array.from({ length: 100 }).map(async () => {
const { unlock } = await client.spinLock(`test`, {
logger: console,
});
await unlock();
});
await Promise.all(promises);
Fork the Repository: Start by forking the repository and then clone your fork.
Create a Branch: Create a branch for your feature or bugfix:
git checkout -b feature/your-feature-name
Follow Code Style:
Submit Pull Request: Push your changes to your fork and submit a pull request.
any types and as cast where possibleSolidis follows semantic versioning (SemVer):
Licensed under the MIT. See LICENSE for more information.
FAQs
Extensions for solidis
We found that @vcms-io/solidis-extensions demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.