npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

piquesignal-solana-agent-plugin

v1.1.0

Published

Pique Signal plugin for the Solana Agent Kit — live memecoin signals, safety data, and AI reports

Downloads

33

Readme

piquesignal-solana-agent-plugin

Pique Signal plugin for Solana Agent Kit — live scored memecoin signals, safety profiles, and AI reports for autonomous agents on Solana.

Gives any SAK-powered agent access to live memecoin signals, on-chain safety data, AI reports, and performance metrics from Pique Signal.

Installation

npm install piquesignal-solana-agent-plugin solana-agent-kit

Setup

Set your API key as an environment variable:

export PIQUESIGNAL_API_KEY=YOUR_API_KEY

Get a key:

  • Telegram: Send /apikey to @piquesignalbot. 72-hour free trial, no card required.
  • Agent subscribe: Autonomous agents can subscribe and get a key with no login via POST /api/subscribe. Send SOL or USDC, poll for confirmation, receive your key. See API docs.
  • x402 pay-per-call: No subscription needed. Pay per request with USDC on Solana via the x402 protocol.

Usage

With Solana Agent Kit

import { SolanaAgentKit, KeypairWallet } from "solana-agent-kit";
import PiqueSignalPlugin from "piquesignal-solana-agent-plugin";

const wallet = new KeypairWallet(keypair, RPC_URL);
const agent = new SolanaAgentKit(wallet, RPC_URL, {})
  .use(PiqueSignalPlugin);

// Access via methods
const signals = await agent.methods.getSignals({ limit: 10, min_score: 70 });
const safety = await agent.methods.getTokenSafety("mint_address_here");
const report = await agent.methods.getSignalReport("mint_address_here");
const stats = await agent.methods.getTrackRecord(30);
const health = await agent.methods.getHealth();

With AI Frameworks

import { createVercelAITools } from "solana-agent-kit";

const tools = createVercelAITools(agent, agent.actions);
// All 5 Pique Signal actions are now available as AI tools

Works with createLangchainTools and createOpenAITools the same way.

Actions

| Action | Description | |--------|-------------| | PIQUESIGNAL_GET_SIGNALS | Get live scored Solana memecoin signals with safety data, market metrics, and conviction scoring | | PIQUESIGNAL_GET_TOKEN_SAFETY | Check safety profile for a token: mint/freeze authority, LP lock, holder concentration, sniper exposure | | PIQUESIGNAL_GET_SIGNAL_REPORT | Get AI-generated analysis report for a specific token | | PIQUESIGNAL_GET_TRACK_RECORD | Get aggregate performance metrics including hit rates and multiplier statistics | | PIQUESIGNAL_GET_HEALTH | Check Pique Signal engine status |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | PIQUESIGNAL_API_KEY | Yes | Your Pique Signal API key | | PIQUESIGNAL_API_URL | No | Custom API base URL (defaults to https://piquesignal.xyz) |

Testing

PIQUESIGNAL_API_KEY=YOUR_API_KEY npm test

Links

License

MIT