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

@secapi/skills

v0.2.0

Published

Distributable SEC API skills for Claude Code and compatible agents

Readme

@secapi/skills

Standalone distributable package of the 8 SEC API skills for Claude Code and compatible AI agents.

Each skill is a structured prompt that teaches an agent how to use the SEC API to accomplish a specific financial-analysis workflow. Skills include a SKILL.md (the prompt itself), install.md (setup instructions), and metadata.json (structured metadata for programmatic discovery).

Prerequisites

  • An SEC API key (set as SECAPI_API_KEY or configure per the install instructions)
  • Claude Code or a compatible agent that supports skill installation

Installation

Any agent (recommended)

Install across Claude Code, Cursor, Codex, and ~70 other agents with the universal skills installer:

npx skills add secapi-ai/secapi-skills --global

Claude Code (per-skill)

claude skill install @secapi/skills/skills/<skill-name>

For example:

claude skill install @secapi/skills/skills/analyze-company-in-context

npm (programmatic access)

npm install @secapi/skills

Then in your code:

const { listSkills, getSkill, getSkillPrompt } = require("@secapi/skills");

// List all skills
const skills = listSkills();

// Get a specific skill's prompt
const prompt = getSkillPrompt("analyze-company-in-context");

Skills

| Skill | Description | |-------|-------------| | analyze-company-in-context | Build issuer and security context packs with SEC API intelligence bundles plus factor and macro overlays. | | decompose-return-and-hedge | Explain a stock's return with factor decomposition, loadings, and hedge ideas. | | investigate-filing-footnotes | Use the semantic planner and intelligence bundles to investigate filing footnotes and accounting-risk areas. | | make-portfolio-factor-neutral | Analyze portfolio exposures, generate neutralization plans, and validate them with stress scenarios. | | run-regime-aware-screen | Screen factors and candidates against the active macro regime and rotation backdrop. | | track-insiders-and-13fs | Analyze insider activity and institutional ownership changes, including manager style drift. | | use-live-factor-dashboard | Power a live factor dashboard with intraday returns, stock loadings, and model-portfolio drill-down. | | write-country-regime-report | Build allocator-style country reports from the high-signal pack, macro regime state, and country-report endpoint. |

Skill structure

Each skill directory contains:

  • SKILL.md — The prompt that teaches the agent the workflow
  • install.md — Setup and configuration instructions
  • metadata.json — Structured metadata (name, description, tags, triggers, required endpoints)

License

MIT