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

pipeit-skill

v1.0.5

Published

@pipeit/core transaction builder skill for Claude Code

Readme

pipeit-skill

Claude Code skill for @pipeit/core — type-safe Solana transaction building on @solana/kit.

A skill addon for the Solana AI Kit that turns any coding agent into an expert @pipeit/core builder.


What this skill covers

  • TransactionBuilder — single transactions with auto-blockhash, retry, priority fees, CU estimation, ALTs
  • createFlow — multi-step workflows where instructions depend on previous results
  • executePlan — Kit instruction-plans integration for optimal automatic batching
  • Execution strategies — Jito bundles, parallel RPC, direct TPU submission
  • @pipeit/core/server — Next.js TPU proxy API route
  • Error handling — typed errors, type guards, diagnoseError()

Problem it solves

@pipeit/core is a full-featured transaction builder built on @solana/kit (web3.js 2.x). Agents working without this skill regularly make mistakes:

  • Using setFeePayer(address) instead of setFeePayerSigner(signer) before executing
  • Forgetting to set compute budget for DeFi instructions
  • Not handling isBlockhashExpiredError — causing silent failures under load
  • Importing @pipeit/core/server in browser code
  • Using the 'ultra' preset without @pipeit/fastlane
  • Mixing up when to use TransactionBuilder vs createFlow vs executePlan

This skill gives agents the full accurate API surface, decision trees, and rules to avoid all of these.


Installation

Option 1 — npx (recommended)

Run the interactive installer without adding a dependency to your project:

npx pipeit-skill

The installer will ask which agent you are using:

  Which agent are you installing for?

    1) Claude Code
    2) Codex
    3) Cursor
    4) Other / Custom

Based on your choice it will:

  • Install skill files to the right directory for your agent
  • Register the skill in the correct config file (CLAUDE.md, AGENTS.md, or .cursor/rules/)
  • Print the entry point path so you can verify it loaded

Agent config locations:

| Agent | Skill files | Config file | | ----------- | -------------------------- | ------------------------------- | | Claude Code | ~/.claude/skills/pipeit/ | ~/.claude/CLAUDE.md | | Codex | ~/.agents/skills/pipeit/ | ~/.agents/AGENTS.md | | Cursor | .cursor/skills/pipeit/ | .cursor/rules/pipeit-skill.md | | Other | custom path | custom filename |

Option 2 — Install globally via npm

npm install -g pipeit-skill
pipeit-skill

Run pipeit-skill once after installing to trigger the setup wizard.

Option 3 — Non-interactive (CI / scripts)

Defaults to Claude Code and uses the default install path:

npx pipeit-skill -y

Option 4 — Into the Solana AI Kit (git submodule)

cd your-solana-ai-kit
git submodule add https://github.com/ahmadou5/pipeit-skill .claude/skills/pipeit

Then reference it in your root CLAUDE.md:

## Skills

- `.claude/skills/pipeit/skill/SKILL.md` — @pipeit/core transaction building

Manual registration

If you skipped the installer or are managing your agent config yourself, add the entry point manually.

Claude Code — append to ~/.claude/CLAUDE.md:

## Pipeit Skill

Skill for `@pipeit/core` transaction building.
Entry point: `~/.claude/skills/pipeit/skill/SKILL.md`

Codex — append to ~/.agents/AGENTS.md:

## Pipeit Skill

Skill for `@pipeit/core` transaction building.
Entry point: `~/.agents/skills/pipeit/skill/SKILL.md`

Cursor — create .cursor/rules/pipeit-skill.md:

# Pipeit Skill

Skill for `@pipeit/core` transaction building.
Entry point: `.cursor/skills/pipeit/skill/SKILL.md`

Adjust paths to match where the skill was installed.


Structure

pipeit-skill/
├── CLAUDE.md                       # Claude Code registration
├── README.md
├── package.json
├── LICENSE
│
├── bin/
│   └── install.js                  # npx entry point (setup wizard)
│
├── skill/
│   ├── SKILL.md                    # Entry point + routing table
│   ├── setup.md                    # Installation + RPC + signer setup
│   ├── transaction-builder.md      # TransactionBuilder full API
│   ├── flow.md                     # createFlow multi-step API
│   ├── plans.md                    # executePlan + Kit instruction-plans
│   ├── execution-strategies.md     # Jito, parallel, TPU, presets
│   ├── server.md                   # @pipeit/core/server, tpuHandler
│   ├── error-handling.md           # Errors, type guards, diagnoseError
│   └── resources.md                # Links, changelog, versions
│
├── agents/
│   └── pipeit-engineer.md          # Specialized agent
│
├── commands/
│   ├── build-tx.md                 # /build-tx scaffold command
│   └── debug-tx.md                 # /debug-tx diagnostic command
│
└── rules/
    └── pipeit-rules.md             # Coding rules enforced by skill

Stack covered

| Layer | Package | | ------------------- | -------------------------------- | | Transaction builder | @pipeit/core v0.2.7 | | Solana JS SDK | @solana/kit v6.x (web3.js 2.x) | | Instruction plans | @solana/instruction-plans | | Compute budget | @solana-program/compute-budget | | TPU (optional) | @pipeit/fastlane |


License

MIT