
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
@vasperacapital/vasperamesh-sdk
Advanced tools
VasperaMesh Agent SDK for building MCP-compatible agents with AMP protocol support
VasperaMesh Agent SDK for building MCP-compatible agents with AMP protocol support.
npm install @vasperamesh/sdk
# or
pnpm add @vasperamesh/sdk
import { Agent } from '@vasperamesh/sdk'
const agent = new Agent({
name: 'CodeReviewer',
version: '1.0.0',
capabilities: ['code-review', 'suggest-improvements'],
meshUrl: process.env.MESH_URL,
})
// Add MCP tool
agent.addTool({
name: 'review_code',
description: 'Review code for issues',
inputSchema: {
type: 'object',
properties: {
code: { type: 'string' },
language: { type: 'string' },
},
required: ['code'],
},
handler: async (params) => {
// Your logic here
return { issues: [], suggestions: [] }
},
})
// Handle tasks from mesh
agent.onTask('code-review', async (task, context) => {
const { code, language } = task.payload
// Execute review
const review = await reviewCode(code, language)
// Optionally delegate to other agents
if (review.needsRefactoring) {
const architect = await context.findAgent('architect')
if (architect) {
const refactor = await architect.invoke('suggest_refactor', { code })
review.refactorSuggestions = refactor
}
}
return {
taskId: task.taskId,
status: 'completed',
result: review,
}
})
// Connect to mesh
await agent.connect()
See VasperaMesh Documentation for complete API reference.
FAQs
VasperaMesh Agent SDK for building MCP-compatible agents with AMP protocol support
The npm package @vasperacapital/vasperamesh-sdk receives a total of 2 weekly downloads. As such, @vasperacapital/vasperamesh-sdk popularity was classified as not popular.
We found that @vasperacapital/vasperamesh-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.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.