
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.
TypeScript SDK for Teckel AI an agentic monitoring platform for tracking behavior and improving AI output.
npm install teckel-ai
import { TeckelTracer } from 'teckel-ai';
const tracer = new TeckelTracer({ apiKey: process.env.TECKEL_API_KEY });
tracer.trace({
query: "How do I reset my password?",
response: "Go to Settings > Security...",
documents: [{ id: "doc-1", name: "Password Guide", text: "To reset..." }]
});
// Serverless: flush before returning
await tracer.flush();
Capture detailed spans from AI SDK calls:
import { TeckelTracer } from 'teckel-ai';
import { TeckelSpanCollector } from 'teckel-ai/otel';
const tracer = new TeckelTracer({ apiKey: process.env.TECKEL_API_KEY });
const spanCollector = new TeckelSpanCollector();
const result = await generateText({
model: openai('gpt-5-mini'),
prompt: userQuery,
experimental_telemetry: {
isEnabled: true,
tracer: spanCollector.getTracer()
}
});
const spans = spanCollector.getSpans();
// Tokens auto-aggregated from spans!
tracer.trace({
query: userQuery,
response: result.text,
spans
});
await spanCollector.shutdown();
Requires: npm install @opentelemetry/api @opentelemetry/sdk-trace-base
Full documentation at docs.teckel.ai:
MIT
FAQs
Simple SDK for AI trace tracking and RAG observability
The npm package teckel-ai receives a total of 8 weekly downloads. As such, teckel-ai popularity was classified as not popular.
We found that teckel-ai 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.