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

@raoxxxwq/ship-spec

v1.0.0

Published

ShipKit 规范管理 CLI 工具

Readme

@shipkit/spec-cli

ShipKit 规范管理 CLI 工具。管理 .docs/spec/ 知识库。

安装

npm install -g @shipkit/spec-cli

验证安装

ship-spec -h
ship-spec --version

快速开始

# 单项目初始化
ship-spec init --template standard

# 多项目初始化
ship-spec init --workspace multi --projects web,api,mobile

# 创建规范
ship-spec create rest-api-standard -t backend -d "REST API 设计规范"

# 列出规范
ship-spec list --format json

# 加载规范
ship-spec load rest-api-standard --content-only

# 验证规范
ship-spec validate --all

# 同步索引
ship-spec sync-index

命令说明

init

初始化 .docs/spec/ 目录结构

选项

  • --workspace <type>: 工作空间模式(single/multi,默认 single)
  • --projects <list>: 项目列表(多项目模式,逗号分隔)
  • --template <name>: 模板名称(默认 standard)

create

创建新规范

选项

  • -t, --type <type>: 规范类型(frontend/backend/shared/_shared)
  • -d, --description <desc>: 规范描述
  • -p, --project <name>: 项目名称(多项目模式)
  • --stages <list>: 适用阶段(默认 design,build)
  • --tags <list>: 标签(逗号分隔)

list

列出规范

选项

  • --project <name>: 按项目过滤
  • --stage <name>: 按阶段过滤(design/build/test)
  • --tag <name>: 按标签过滤
  • --format <format>: 输出格式(table/json/yaml,默认 table)

load

加载规范内容

选项

  • --content-only: 只输出规范内容(不含元数据)
  • --format <format>: 输出格式(json/yaml,默认 json)

validate

验证规范格式

选项

  • --all: 验证所有规范
  • --strict: 严格模式(检查内容完整性)

sync-index

同步 INDEX.md

选项

  • --rebuild: 重建索引(扫描所有文件)

目录结构

单项目

.docs/spec/
├── INDEX.md
├── frontend/
├── backend/
└── shared/
    ├── tech-stack.md
    └── existing-features.md

多项目

.docs/spec/
├── INDEX.md
├── _shared/
├── web/
│   ├── frontend/
│   └── existing-features.md
└── api/
    ├── backend/
    └── existing-features.md

配置文件

.docs/ship/project.yml

workspace_mode: single_project  # single_project | project_group
workspace_name: my-workspace
projects:
  - web
  - api

规范格式

---
spec_id: rest-api-standard
description: REST API 设计规范
stages: [design, build]
projects: [all]
tags: [api, rest, backend]
status: active
---

# REST API 设计规范

## 适用场景
...

## 核心约束
### 必须做
...

### 禁止做
...

## 示例
...

## 检查点
- [ ] ...

许可证

MIT