New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@rifft-dev/rifft

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

@rifft-dev/rifft

Cross-framework debugger SDK for multi-agent AI systems

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

rifft

TypeScript SDK for Rifft, the cross-framework debugger for multi-agent AI systems.

Install

npm install @rifft-dev/rifft

Quickstart

import { init, trace, withSpan } from "rifft";

init({
  project_id: "my-project",
  endpoint: "http://localhost:4318",
});

const runResearch = trace({
  agent_id: "researcher",
  framework: "custom",
  span_name: "agent.research",
})(async (query: string) => {
  await withSpan("tool.call", { agent_id: "researcher", framework: "custom" }, async (span) => {
    span.setAttribute("tool.name", "search_docs");
    span.setAttribute("tool.input", { query });
  });

  return { ok: true };
});

Keywords

ai

FAQs

Package last updated on 26 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