🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@neoskills/sdk

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@neoskills/sdk

NeoSkill SDK — route, execute, report. Two-line agent integration.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

@neoskill/sdk

Agent skill routing in two lines. NeoSkill tells your agent which MCP skill to use — backed by real execution data from thousands of agents.

Quick Start

import { NeoSkill } from '@neoskill/sdk'

const neo = new NeoSkill()

// 1. Get a recommendation
const route = await neo.route({ task: 'extract pricing data from competitor websites' })
console.log(route.recommended_skill) // "firecrawl-mcp"

// 2. Execute the skill (your code)
const result = await runSkill(route.recommended_skill, task)

// 3. Report the outcome — earns routing credits
await neo.report({
  skill: route.recommended_skill,
  outcome: result.success ? 'success' : 'failure',
  latency_ms: result.latency,
  cost_usd: result.cost
})

That's it. Three calls. Your agent now routes intelligently and contributes to the global benchmark dataset.

Install

npm install @neoskill/sdk

API

new NeoSkill(config?)

OptionTypeDefaultDescription
baseUrlstringhttps://neo-skill.vercel.appNeoSkill API base URL
timeoutMsnumber800Hard timeout — NeoSkill never blocks your agent
agentNamestringAgent name for telemetry attribution
agentKindstringautonomous, copilot, workflow-agent, evaluation-agent, hybrid
modelFamilystringe.g., claude-4, gpt-4o
hostClientstringe.g., claude-code, cursor

neo.route(request)

Get a confidence-scored skill recommendation.

const route = await neo.route({
  task: 'browser automation for form filling',    // natural language
  constraints: {
    priority: 'best_value',     // best_value | best_quality | lowest_cost | ...
    trust_floor: 7,             // minimum trust score (0-10)
    max_cost_usd: 0.05,        // cost ceiling
  }
})

// Response:
// {
//   recommended_skill: "playwright-mcp",
//   confidence: 0.85,
//   alternatives: ["skyvern-mcp", "chrome-devtools-mcp"],
//   recommended_combo: ["playwright-mcp", "firecrawl-mcp"],
//   fallback: "skyvern-mcp",
//   scores: { value_score: 9.1, output_score: 9.3, ... }
// }

neo.report(request)

Report execution outcome. Fire-and-forget — never blocks.

await neo.report({
  skill: 'firecrawl-mcp',
  outcome: 'success',           // success | partial_success | failure | aborted
  latency_ms: 2400,
  cost_usd: 0.003,
  quality_rating: 8.5,          // 0-10
  task_fingerprint: 'pricing-extraction-001',
  fallback_skill: 'exa-mcp',   // if a fallback was used
})

neo.preflight()

Health check. Never throws.

const health = await neo.preflight()
// { healthy: true, latency_ms: 45, version: "1.1.0" }

neo.missions(eventSlug?)

List available benchmark missions for bonus rewards.

const { missions } = await neo.missions('web-research-extraction')

Design Principles

  • Never blocks your agent. 800ms hard timeout. Always returns gracefully on failure.
  • Telemetry is opt-out. Default is anonymous reporting. One-line disable.
  • The loop is sacred: recommend → execute → report → reward → route better.
  • Comparative evals earn 2.5x rewards. Run two skills on the same task, report both.
  • Benchmark packages earn 4.0x rewards. Full benchmark runs with multiple tasks.

Reward Multipliers

Contribution TypeMultiplier
Run telemetry1.0x
Fallback chain report1.5x
Comparative evaluation2.5x
Benchmark package4.0x

License

MIT

Keywords

neoskill

FAQs

Package last updated on 16 Mar 2026

Did you know?

Socket

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.

Install

Related posts