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

workspace-init-mcp

v3.1.0

Published

MCP server that initializes VS Code workspaces with documentation governance, Copilot instructions, Agent Skills (agentskills.io), and AI-native project structure

Readme

workspace-init-mcp

npm version License: MIT

MCP server that initializes workspaces with AI agent instructions, Agent Skills, documentation governance, and project structure — across VS Code, Cursor, Claude Code, and OpenHands.

Just say "initialize workspace" to your LLM — it generates everything automatically based on your project type.

#Learning #WebApp #API #Mobile #DataScience #DevOps #Creative #Library #Monorepo #Consulting #Ecommerce #Fintech #Healthcare #SaaS #IoT


Setup

Add to your MCP config and you're done.

VS Code (settings.json)

{
  "mcp": {
    "servers": {
      "workspace-init": {
        "type": "stdio",
        "command": "npx",
        "args": ["-y", "workspace-init-mcp"]
      }
    }
  }
}

VS Code (.vscode/mcp.json)

{
  "servers": {
    "workspace-init": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "workspace-init-mcp"]
    }
  }
}

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "workspace-init": {
      "command": "npx",
      "args": ["-y", "workspace-init-mcp"]
    }
  }
}

What It Does

Tell your LLM "initialize workspace" and it generates:

  • .github/copilot-instructions.md — Global AI agent instructions
  • .github/agents/ & .github/skills/Agent Skills (50+ agents, 40+ skills)
  • .vscode/settings.json & *.instructions.md — Custom instructions (code, test, review, commit, PR)
  • .editorconfig & .gitattributes — Cross-editor consistency
  • docs/ — Documentation governance (work-logs, changelog, ADR, troubleshooting)

Tools

| Tool | Description | |---|---| | initialize_workspace | Generate all workspace files | | preview_workspace_init | Preview without creating files | | analyze_workspace | Detect project type & tech stack | | validate_workspace | Check initialization completeness | | list_project_types | List available project types | | get_init_form_schema | Get input form schema | | recommend_agent_skills | Get skill recommendations | | search_agent_skills | Search skill catalog | | install_agent_skills | Install specific skills/agents | | list_agent_skills_catalog | Browse full catalog |

Project Types

| Type | Label | Best For | |---|---|---| | learning | 학습/자기개발 | Tutorials, study projects, self-learning | | web-app | 웹 애플리케이션 | Frontend / fullstack web apps | | api | API 서버 | Backend REST / GraphQL services | | mobile | 모바일 앱 | iOS, Android, cross-platform apps | | data-science | 데이터 사이언스 | ML/AI, data analysis, Jupyter notebooks | | devops | DevOps/인프라 | CI/CD, IaC, cloud infrastructure | | creative | 크리에이티브/콘텐츠 | Writing, content creation, documentation | | library | 라이브러리/패키지 | Reusable libraries, npm/pip packages | | monorepo | 모노레포 | Multi-package repositories | | consulting | 컨설팅/SI | IT consulting, proposals, deliverables | | ecommerce | 이커머스/커머스 | Online shopping, payments, order management | | fintech | 핀테크/금융 | Banking, payments, regulatory compliance | | healthcare | 헬스케어/의료 | EMR, health services, HIPAA compliance | | saas | SaaS 플랫폼 | Multi-tenant platforms, subscription billing | | iot | IoT/임베디드 | IoT devices, sensors, edge computing | | other | 기타 | Custom / general-purpose projects |

License

MIT