@yeongjaeyou/claude-code-config 0.2.0 → 0.2.1

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.
@@ -21,6 +21,73 @@ model: sonnet
21
21
  | **arXiv** | 학술 논문 | WebSearch |
22
22
  | **일반 웹** | 블로그, 튜토리얼 | WebSearch / Firecrawl |
23
23
 
24
+ ## 검색 품질 원칙 (필수)
25
+
26
+ ### 1. 현재 날짜 확인
27
+
28
+ 검색 시작 전 **반드시** 실행:
29
+ ```bash
30
+ date +%Y-%m-%d
31
+ ```
32
+ - 아래 예시의 연도(2024 등)는 참고용임
33
+ - 실제 검색 시 **위에서 확인한 현재 연도** 사용
34
+
35
+ ### 2. 키워드 vs 시맨틱 검색 이해
36
+
37
+ | 유형 | 특징 | 적합한 경우 |
38
+ |------|------|-------------|
39
+ | **키워드 검색** | 정확한 단어 매칭 | 에러 메시지, 함수명, 모델명 |
40
+ | **시맨틱 검색** | 의미/의도 기반 | 개념 질문, 방법론, 비교 분석 |
41
+
42
+ **적용:**
43
+ - 정확한 용어가 있으면 키워드 검색 (`"Qwen2VL"`, `"RuntimeError"`)
44
+ - 개념/방법을 찾으면 시맨틱하게 다양한 표현으로 검색
45
+
46
+ ### 3. Long-tail Keywords 적용
47
+
48
+ 아래 예시의 Short-tail 키워드를 그대로 쓰지 말고, **구체적인 Long-tail로 확장**:
49
+
50
+ | Short-tail (예시 그대로) | Long-tail (실제 검색 시) |
51
+ |--------------------------|--------------------------|
52
+ | `object detection` | `best lightweight object detection model for edge deployment {현재연도}` |
53
+ | `pytorch serving` | `how to deploy pytorch model with TorchServe in production` |
54
+ | `gradio app` | `gradio demo with image upload real-time inference example` |
55
+
56
+ **확장 방법:**
57
+ - 목적 추가: "for production", "for beginners", "step by step"
58
+ - 조건 추가: 언어, 프레임워크, 연도, 환경
59
+ - 의도 명시: "how to", "best practices", "comparison", "vs"
60
+
61
+ ### 4. Multi-Query Generation
62
+
63
+ 단일 쿼리 대신 **3-5개 변형 쿼리**로 검색:
64
+
65
+ ```
66
+ 원본: "pytorch model serving"
67
+
68
+ 변형 1 (방법): "how to deploy pytorch model in production {현재연도}"
69
+ 변형 2 (비교): "pytorch vs tensorflow model serving comparison"
70
+ 변형 3 (구체): "TorchServe custom handler tutorial example"
71
+ 변형 4 (최적화): "pytorch model inference optimization GPU memory"
72
+ 변형 5 (사례): "pytorch model deployment kubernetes docker best practices"
73
+ ```
74
+
75
+ **변형 관점:**
76
+ - 동의어/유사어
77
+ - 문제 해결 vs 개념 설명
78
+ - 특정 도구/프레임워크명
79
+ - 비교 분석
80
+ - 베스트 프랙티스/사례
81
+
82
+ ### 5. 검색 전 체크리스트
83
+
84
+ - [ ] `date` 명령으로 현재 날짜 확인
85
+ - [ ] 예시 키워드를 Long-tail로 확장
86
+ - [ ] 필요시 3-5개 Multi-Query 생성
87
+ - [ ] 키워드/시맨틱 중 적합한 방식 선택
88
+
89
+ ---
90
+
24
91
  ## 리서치 워크플로우
25
92
 
26
93
  ### Phase 1: 계획 수립
@@ -16,6 +16,56 @@ To search and analyze code repositories across GitHub and Hugging Face platforms
16
16
  | **GitHub** | Repositories, Code | `gh` CLI |
17
17
  | **Hugging Face** | Models, Datasets, Spaces | `uvx hf` CLI + `huggingface_hub` API |
18
18
 
19
+ ## 검색 품질 원칙 (필수)
20
+
21
+ ### 1. 현재 날짜 확인
22
+
23
+ ```bash
24
+ date +%Y-%m-%d
25
+ ```
26
+ 아래 예시의 연도는 참고용. 실제 검색 시 **현재 연도** 사용.
27
+
28
+ ### 2. Long-tail Keywords 적용
29
+
30
+ 예시의 Short-tail을 그대로 쓰지 말고 확장:
31
+
32
+ | 예시 (참고용) | 실제 검색 (Long-tail) |
33
+ |---------------|----------------------|
34
+ | `"object detection"` | `"open vocabulary object detection pytorch inference {현재연도}"` |
35
+ | `"gradio demo"` | `"gradio image segmentation interactive demo huggingface"` |
36
+ | `"qwen vl"` | `"qwen2-vl vision language model zero-shot example code"` |
37
+
38
+ ### 3. Multi-Query 적용
39
+
40
+ 한 번에 찾기 어려우면 **2-3개 관점**으로 검색:
41
+
42
+ ```bash
43
+ # 모델명 중심
44
+ gh search repos "qwen2-vl" --sort stars
45
+
46
+ # 기능 중심
47
+ gh search repos "vision language open vocabulary detection" --sort stars
48
+
49
+ # 구현 중심
50
+ gh search repos "vl model gradio demo inference" --sort stars
51
+ ```
52
+
53
+ ### 4. 필터 활용
54
+
55
+ ```bash
56
+ # 최신 + 품질 필터 (현재 연도 적용)
57
+ gh search repos "keyword" stars:>50 pushed:>{현재연도-1}-01-01 --language python
58
+ ```
59
+
60
+ ### 5. 검색 전 체크리스트
61
+
62
+ - [ ] 현재 날짜 확인했는가?
63
+ - [ ] Short-tail을 Long-tail로 변환했는가?
64
+ - [ ] 필요시 2-3개 변형 쿼리로 검색했는가?
65
+ - [ ] 적절한 필터(언어, 스타, 날짜) 적용했는가?
66
+
67
+ ---
68
+
19
69
  ## Workflow Decision Tree
20
70
 
21
71
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yeongjaeyou/claude-code-config",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Claude Code CLI custom commands, agents, and skills",
5
5
  "bin": {
6
6
  "claude-code-config": "./bin/cli.js"