You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@teampilot/sdk

Package Overview
Dependencies
Maintainers
5
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@teampilot/sdk

[![npm version](https://badge.fury.io/js/@teampilot%2Fsdk.svg)](https://badge.fury.io/js/@teampilot%2Fsdk)

0.0.34
latest
Source
npmnpm
Version published
Maintainers
5
Created
Source

Teampilot SDK

npm version

sdk.teampilot.ai

import { fetchTeampilotData } from '@teampilot/sdk'
import { z } from 'zod'
import { env } from '~/env.mjs'

export const Reasons = async () => {
  const reasons = await fetchTeampilotData({
    launchpadSlugId: env.LAUNCHPAD_SLUG_ID_SDK_EXPERT,
    message: '5 Reasons why Teampilot SDK is awesome',
    schema: z.array(z.string()),
  })
  return (
    <ul className="list-disc space-y-2">
      {reasons.map((reason, idx) => (
        <li key={idx}>{reason}</li>
      ))}
    </ul>
  )
}

FAQs

Package last updated on 02 Jul 2025

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