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

appsec-workflow-skills

v0.1.1

Published

AppSec Workflow Skills installer for Codex.

Readme

AppSec Workflow Skills

AppSec Workflow Skills 是一套给 Codex 使用的 APP 安全漏洞处理流程,包含三个 Skill:

  • appsec-start:建档、导入漏洞文档、只读扫描、triage、起草修复计划。
  • appsec-fix:按已批准的修复计划改代码并验证。
  • appsec-archive:归档 case,沉淀 root cause、fix pattern 和 checklist。

安装和初始化

发布到 npm 后,用户在任意项目根目录执行:

npx appsec-workflow-skills init

也可以显式调用命令名:

npx --package appsec-workflow-skills appsec init

这个命令会做两件事:

  1. 把三个通用 Codex Skills 安装到 ~/.codex/skills/
  2. 在当前项目创建 .appsec/ 工作区。

生成结构:

~/.codex/skills/
├── appsec-start/
├── appsec-fix/
└── appsec-archive/

当前项目/
└── .appsec/
    ├── config.yml
    ├── cases/
    └── rules/
        └── project.md

使用

$appsec-start 扫描当前项目或读取漏洞文档
$appsec-fix 修复当前 case
$appsec-archive 归档经验

命令选项

appsec init --force

覆盖更新本机已安装的 AppSec Skills。项目内已有 .appsec/config.yml.appsec/rules/project.md 不会被覆盖。

appsec init --skills-only

只安装或更新 Codex Skills,不初始化当前项目。

appsec init --project-only

只初始化当前项目 .appsec/,不安装 Codex Skills。

发布

首次发布到 npm 官方公开仓库:

npm login --registry https://registry.npmjs.org
npm publish --access public --registry https://registry.npmjs.org

如果当前 npm 默认 registry 是镜像源,发布时必须显式指定 https://registry.npmjs.org