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

sekkei-skills

v1.1.1

Published

Claude Code skills for generating Japanese specification documents (設計書)

Readme

sekkei-skills

npm version License: MIT

Claude Code skill for generating Japanese specification documents (設計書) following the V-model chain.

Prerequisites

Installation

Auto-install to ~/.claude/skills/sekkei/:

npx sekkei-skills

Or manual copy (from repo root):

cp -r packages/skills/content/ ~/.claude/skills/sekkei/

Sub-Commands

| Command | Description | |---------|-------------| | /sekkei:init | Initialize project config (sekkei.config.yaml) | | /sekkei:functions-list @input | Generate 機能一覧 (Function List) | | /sekkei:requirements @input | Generate 要件定義書 (Requirements Definition) | | /sekkei:basic-design @input | Generate 基本設計書 (Basic Design) | | /sekkei:detail-design @input | Generate 詳細設計書 (Detail Design) | | /sekkei:test-spec @input | Generate テスト仕様書 (Test Specification) | | /sekkei:matrix | Generate CRUD図 or トレーサビリティマトリックス | | /sekkei:operation-design @input | Generate 運用設計書 (Operation Design) | | /sekkei:migration-design @input | Generate 移行設計書 (Migration Design) | | /sekkei:validate @doc | Validate document completeness | | /sekkei:status | Show V-model chain progress | | /sekkei:export @doc --format=xlsx\|pdf\|docx | Export to Excel, PDF, or Word | | /sekkei:translate @doc --lang=en | Translate with glossary context | | /sekkei:glossary [add\|list\|find\|export] | Manage project terminology | | /sekkei:update @doc | Detect upstream changes | | /sekkei:diff-visual @before @after | Color-coded revision Excel (朱書き) | | /sekkei:plan @doc-type | Create generation plan for large documents | | /sekkei:implement @plan-path | Execute a generation plan phase by phase | | /sekkei:preview | Start VitePress docs preview server |

Workflow Example

# 1. Initialize project
/sekkei:init

# 2. Generate documents following V-model chain
/sekkei:functions-list @rfp.md          # RFP → 機能一覧
/sekkei:requirements @functions-list.md  # 機能一覧 → 要件定義書
/sekkei:basic-design @requirements.md    # 要件定義書 → 基本設計書
/sekkei:detail-design @basic-design.md   # 基本設計書 → 詳細設計書
/sekkei:test-spec @detail-design.md      # 詳細設計書 → テスト仕様書

# 3. Validate and export
/sekkei:validate @test-spec.md
/sekkei:export @basic-design.md --format=xlsx

# 4. Preview all documents
/sekkei:preview

Using with MCP Server

Skills invoke MCP tools via Claude Code's MCP integration. Ensure sekkei-mcp-server is configured:

// ~/.claude/settings.json
{
  "mcpServers": {
    "sekkei": {
      "command": "npx",
      "args": ["sekkei-mcp-server"]
    }
  }
}

Ecosystem

| Package | Description | |---------|-------------| | sekkei-mcp-server | Core MCP server that skills invoke for document generation | | sekkei-preview | VitePress live preview started by /sekkei:preview |

日本語

sekkei-skillsは、Claude Codeのスラッシュコマンドで日本語設計書を生成するスキルです。

V字モデルのドキュメントチェーン(機能一覧→要件定義書→基本設計書→詳細設計書→テスト仕様書)に沿って、各種設計書を順番に生成できます。19のサブコマンドで、初期化・生成・検証・エクスポート・翻訳・プレビューまでの全ワークフローをカバーします。

License

MIT