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

ios-sdd-mcp

v1.0.0

Published

iOS-only Specification-Driven Development MCP Server — Swift/SwiftUI, implementation-first, no TDD. Use as your own npm package.

Downloads

97

Readme

iOS Spec2Code (ios-sdd-mcp) 🍎

License: MIT

Sadece iOS için Specification-Driven Development MCP sunucusu. Cursor içinde AI ile fikirden spec → plan → task’lara, oradan Swift/SwiftUI uygulamasına gider. SwiftUI first, MVVM first, implementation-first (test zorunlu değil).


Paketi npm’den kurma

npm install -g ios-sdd-mcp

Gereksinimler: Node.js 18+, macOS, Cursor (MCP açık). iOS geliştirme için Xcode gerekir.


Cursor’da nasıl kullanılır?

1. MCP ayarını ekle

Cursor’da Settings → MCP (veya ~/.cursor/mcp.json) dosyasına şunu ekle:

{
  "mcpServers": {
    "ios-sdd-mcp": {
      "command": "sdd-mcp",
      "args": [],
      "env": {
        "PROJECT_ROOT": "${workspaceFolder}"
      }
    }
  }
}

2. Cursor’u yenile

Cursor’u yeniden başlat veya MCP sunucularını yenile. Araçlar listesinde sdd_specify, sdd_plan, sdd_tasks, sdd_implement vb. görünmeli.

3. Komutları kullan

Sohbet içinde sırayla:

| Ne yapmak istiyorsun? | Komut | |------------------------|--------| | Spec oluştur | /sdd_specify "Yapılacaklar listesi uygulaması, SwiftUI ile" | | Plan oluştur | /sdd_plan | | Task’ları oluştur (4 faz, 33 task) | /sdd_tasks | | Faz faz implement et | /sdd_implement phase=1phase=2phase=3phase=4 |

İlk kez kullanıyorsan önce /sdd_implement phase=1 çağrılması önerilir; araç sana adım adım ne yapacağını söyler.


Tüm komutlar

| Komut | Açıklama | |--------|----------| | /sdd_specify | iOS odaklı spec üretir → specs/spec.md | | /sdd_plan | Implementation planı oluşturur → specs/plan.md | | /sdd_tasks | 4 fazda 33 task dosyası üretir | | /sdd_implement phase=X | İlgili fazı çalıştırır (implementation-first) | | /sdd_implement phase=X task=Y | Belirli bir task’ı çalıştırır | | /sdd_workflow | specify → plan → tasks → implement tam zincir | | /sdd_validate_architecture | Implementasyonu spec’e göre doğrular |


Özellikler

  • Sadece iOS — Swift/SwiftUI, Xcode; platform her zaman iOS kabul edilir.
  • SwiftUI first, MVVM first — Apple HIG, 44pt tap target, SF Symbols, NavigationStack, TabView.
  • Implementation-first — Doğrulama: build (xcodebuild) + simulator’da çalıştırma; test yazımı zorunlu değil.
  • Cursor MCP — Tüm akış Cursor sohbetinde komutlarla yürür.

Sorun giderme

  • Komut bulunamıyor: Terminalde which sdd-mcp yaz. Bir path görüyorsan kurulum tamam; Cursor’da MCP command değerinin sdd-mcp olduğundan emin ol.
  • Araçlar görünmüyor: Cursor’u yeniden başlat veya MCP sunucularını yenile; PROJECT_ROOT için ${workspaceFolder} kullandığından emin ol.
  • Spec/plan oluşmuyor: Önce /sdd_specify "..." ile spec, sonra /sdd_plan, sonra /sdd_tasks çağır; ardından /sdd_implement phase=1 ile devam et.

Geliştiriciler / Kaynaktan kurulum ve npm’e yayınlama

Paketi kaynaktan kurmak veya npm’e yayınlamak istiyorsan:

Kaynaktan global kurulum

git clone <repo-url>
cd spec2code--iOS-
npm install
npm run build:lib
npm run install:global

İzin hatası alırsan: sudo npm run install:global

npm’e yayınlama

  1. https://www.npmjs.com/signup — Hesap oluştur.
  2. Terminalde npm login (username, password, email).
  3. package.json içinde "name": "ios-sdd-mcp" (veya @kullaniciadin/ios-sdd-mcp).
  4. Proje klasöründe:
    npm run build:lib
    npm publish
    Scope kullandıysan: npm publish --access public
  5. Versiyon güncellemek için package.json"version": "1.0.1" artırıp tekrar npm publish.

iOS projelerini AI ile spec’ten koda taşı. 🎉