@bifos/dooray-cli 0.5.3 → 0.5.4
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.
- package/README.md +37 -0
- package/dist/index.js +594 -182
- package/package.json +1 -1
- package/skills/dooray-cli/SKILL.md +57 -1
package/README.md
CHANGED
|
@@ -39,8 +39,12 @@ dooray project list --search ocr # 코드로 검색
|
|
|
39
39
|
dooray project list --type private # 개인 프로젝트 목록
|
|
40
40
|
dooray project members tc-ocr # 멤버 목록
|
|
41
41
|
dooray project workflows tc-ocr # 워크플로우 목록
|
|
42
|
+
dooray project groups tc-ocr # 멤버 그룹 목록 (ID / Code)
|
|
43
|
+
dooray project tags tc-ocr # 태그 목록 (ID / Color / Name / Group / Mandatory)
|
|
42
44
|
```
|
|
43
45
|
|
|
46
|
+
> **태그 캐시 갱신**: 이전 버전에서 캐시한 태그가 색상 없이 표시되면 `dooray cache clear` 실행 후 다시 조회하세요.
|
|
47
|
+
|
|
44
48
|
### 멤버
|
|
45
49
|
|
|
46
50
|
```bash
|
|
@@ -114,6 +118,39 @@ dooray post comment add tc-ocr 42 --body-file ./comment.md
|
|
|
114
118
|
|
|
115
119
|
> table 출력의 Creator 컬럼은 프로젝트 멤버 캐시로 자동 enrich되며, `--json`은 raw 응답을 유지한다 (ADR-021).
|
|
116
120
|
|
|
121
|
+
#### comment list 필터 옵션
|
|
122
|
+
|
|
123
|
+
```bash
|
|
124
|
+
# 최신 5개 (desc 정렬)
|
|
125
|
+
dooray post comment list tc-ocr 42 --latest 5
|
|
126
|
+
|
|
127
|
+
# 특정 시간 이후 댓글만
|
|
128
|
+
dooray post comment list tc-ocr 42 --since 2026-04-27
|
|
129
|
+
|
|
130
|
+
# 작성자 이름으로 필터 (부분일치)
|
|
131
|
+
dooray post comment list tc-ocr 42 --from-author 홍길동
|
|
132
|
+
|
|
133
|
+
# 오름차순 / 내림차순 정렬
|
|
134
|
+
dooray post comment list tc-ocr 42 --sort asc
|
|
135
|
+
dooray post comment list tc-ocr 42 --sort desc
|
|
136
|
+
dooray post comment list tc-ocr 42 --reverse # --sort desc alias
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
#### comment latest
|
|
140
|
+
|
|
141
|
+
최신 댓글 1개(또는 N개)를 빠르게 조회한다.
|
|
142
|
+
|
|
143
|
+
```bash
|
|
144
|
+
# 최신 댓글 1개
|
|
145
|
+
dooray post comment latest tc-ocr 42
|
|
146
|
+
|
|
147
|
+
# 최신 3개
|
|
148
|
+
dooray post comment latest tc-ocr 42 -n 3
|
|
149
|
+
|
|
150
|
+
# URL로도 가능
|
|
151
|
+
dooray post comment latest --url <dooray-url>
|
|
152
|
+
```
|
|
153
|
+
|
|
117
154
|
### 상태 변경
|
|
118
155
|
|
|
119
156
|
```bash
|