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

qwen-code-s-edition

v1.0.14

Published

Qwen Code S-Edition — AI coding agent (qwen) with built-in security scanning and architecture analysis (qwen-s)

Downloads

1,712

Readme

Qwen Code S-Edition

AI coding agent with built-in security scanning and architecture analysis

Qwen Code S-Edition is a fork of QwenLM/qwen-code enhanced with two powerful security modules:

  • Security Scanner — powered by supreme-max, with Qwen LLM false-positive verification

Features

  • 🛡️ Security Scan — finds vulnerabilities in code and dependencies, verifies results with Qwen LLM to eliminate false positives
  • 🗺️ Architecture Scan — builds a knowledge graph of your project, identifies architectural vulnerabilities (broken trust boundaries, missing auth, data exposure, SPOF)
  • 🔑 Free via Qwen OAuth — 1000 requests/day with your qwen.ai account
  • 📊 Dual HTML Reports — verified report + raw report for full transparency
  • 🖥️ Interactive Graph — D3.js visualization with fullscreen mode, color-coded layers, vulnerability highlighting

Installation

npm install -g qwen-code-s-edition

Graph analyzer installs automatically on first run.

Quick Start

# Security scan
qwen-s scan security --path ./your-project

# Architecture scan (requires Qwen Code session for UA analysis)
qwen-s scan arch --path ./your-project

# Launch interactive graph dashboard
qwen-s dashboard --path ./your-project

Authentication

# Free: use your qwen.ai account (1000 req/day)
qwen auth   # inside Qwen Code session

# Paid: Alibaba Cloud API key
export DASHSCOPE_API_KEY="sk-..."

Slash Commands (inside Qwen Code session)

/scan-security   — run security scan on current project
/scan-arch       — run architecture scan with knowledge graph
/scan-full       — run both scans

CLI Reference

qwen-s scan security [--path] [--no-verify] [--verify-all] [--min-severity]
qwen-s scan arch     [--path] [--skip-ua] [--no-llm]
qwen-s install-ua    — install Graph analyzer
qwen-s dashboard     [--path] — launch interactive graph

How It Works

Security Scan Pipeline

supreme-max scan → JSON findings
        ↓
Qwen LLM verification (false-positive filter)
        ↓
Verified HTML report + Raw HTML report

Architecture Scan Pipeline

Graph analyzer → knowledge-graph.json (nodes + edges)
        ↓
Security metadata enrichment
        ↓
Qwen architectural vulnerability analysis
        ↓
Interactive D3 graph + vulnerability report

Based On

Repository

github.com/mqw011/qwen-code-s