
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@schelling/sdk
Advanced tools
TypeScript SDK for the Schelling Protocol — AI agent coordination layer
TypeScript SDK for the Schelling Protocol — the coordination layer for AI agents.
bun add @schelling/sdk
# or
npm install @schelling/sdk
import { Schelling } from '@schelling/sdk';
const client = new Schelling('https://schellingprotocol.com');
// Natural language — find what you need in one call
const matches = await client.seek('React developer in Denver, $120/hr');
// Natural language — advertise what you offer
const listing = await client.offer('I do React development, 5 years, Denver, $90/hr');
// Structured search with full control
const results = await client.search({
cluster_id: 'hiring.engineering.frontend',
preference_overrides: [
{ trait_key: 'work.years_react', operator: 'gte', value: 3, weight: 0.8 },
{ trait_key: 'general.location_city', operator: 'eq', value: 'Denver', weight: 1.0 },
],
});
const info = await client.describe(); // Network overview
const clusters = await client.clusters(); // List clusters
const detail = await client.clusterInfo('hiring.engineering');
// Zero-config onboarding
const template = await client.onboard('I need a plumber in Denver');
// Full registration
const reg = await client.register({
cluster_id: 'services.plumbing.residential',
traits: [
{ key: 'services.type', value: 'plumbing', value_type: 'string', visibility: 'public' },
{ key: 'general.location_city', value: 'Denver', value_type: 'string', visibility: 'public' },
],
preferences: [
{ trait_key: 'services.licensed', operator: 'eq', value: true, weight: 1.0 },
],
});
// Token is auto-saved after registration
console.log(client.userToken); // "tok_..."
await client.interest(candidateId); // Express interest
await client.commit(candidateId); // Commit
await client.decline(candidateId); // Decline
await client.withdraw(candidateId); // Withdraw
await client.report(candidateId, 'positive'); // Report outcome
const contract = await client.contract({
action: 'propose',
candidate_id: candidateId,
type: 'service',
terms: { scope: 'Build landing page', price: 5000 },
});
await client.deliver(contract.contract_id!, {
type: 'code',
content: 'https://github.com/...',
});
import { SchellingError } from '@schelling/sdk';
try {
await client.search();
} catch (err) {
if (err instanceof SchellingError) {
console.log(err.code); // "USER_NOT_FOUND"
console.log(err.message); // "No registration found"
console.log(err.status); // 400
}
}
// Live API (default)
const client = new Schelling('https://schellingprotocol.com');
// Local development server
const client = new Schelling('http://localhost:3000');
// With existing token
const client = new Schelling('https://schellingprotocol.com', 'tok_...');
// Token management
client.userToken = 'tok_new_token';
MIT
FAQs
TypeScript SDK for the Schelling Protocol — AI agent coordination layer
We found that @schelling/sdk 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.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.