@clazic/urban 0.2.24 → 0.2.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: 패키지·라이브러리 사용 전 실존 확인 필수
3
+ description: 코드에 외부 패키지/CLI/winget ID를 사용하기 전 실제 존재 여부를 반드시 확인할 것
4
+ type: feedback
5
+ ---
6
+
7
+ 코드에 외부 패키지, CLI 도구, winget/choco ID 등을 사용하기 전에 반드시 실존 여부를 먼저 확인한다.
8
+
9
+ **Why:** `winget install oschwartz10612.poppler`를 코드에 넣었지만 실제로 winget 레지스트리에 없는 패키지였음. GitHub API로 확인하니 `total_count: 0`. 사용자가 직접 실행해보고 나서야 발견됨.
10
+
11
+ **How to apply:**
12
+ - winget ID → `curl https://api.github.com/search/code?q=ID+repo:microsoft/winget-pkgs` 로 확인
13
+ - npm 패키지 → `npm info <package>` 또는 `https://registry.npmjs.org/<package>`
14
+ - PyPI 패키지 → `pip index versions <package>` 또는 `https://pypi.org/pypi/<package>/json`
15
+ - GitHub 릴리즈 URL → `curl https://api.github.com/repos/<owner>/<repo>/releases/latest` 로 실제 asset URL 검증
16
+ - CLI 도구 설치 명령어 → 공식 문서나 실제 설치 테스트 후 사용
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clazic/urban",
3
- "version": "0.2.24",
3
+ "version": "0.2.25",
4
4
  "description": "도시계획연구 보고서 자동 수집·지식베이스 데몬",
5
5
  "type": "module",
6
6
  "engines": {
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
- "@clazic/kordoc": "^2.4.19",
20
+ "@clazic/kordoc": "^2.5.0",
21
21
  "@modelcontextprotocol/sdk": "^1.12.0",
22
22
  "@rhwp/core": "^0.7.2",
23
23
  "better-sqlite3": "^12.9.0",