@bifos/dooray-cli 0.13.0 → 0.14.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.
- package/README.md +2 -0
- package/dist/index.js +160 -68
- package/package.json +1 -1
- package/skills/dooray-cli/SKILL.md +31 -672
- package/skills/dooray-cli/references/comment.md +39 -0
- package/skills/dooray-cli/references/common.md +111 -0
- package/skills/dooray-cli/references/intent-map.md +92 -0
- package/skills/dooray-cli/references/mention-link.md +104 -0
- package/skills/dooray-cli/references/post.md +218 -0
- package/skills/dooray-cli/references/wiki.md +95 -0
- package/skills/dooray-cli/references/workflow.md +106 -0
package/README.md
CHANGED
|
@@ -378,6 +378,8 @@ dooray post workflow <project> 42 "진행 중" # 워크플로우 변경
|
|
|
378
378
|
```bash
|
|
379
379
|
dooray wiki list # 위키 목록
|
|
380
380
|
dooray wiki pages <project> # 페이지 목록
|
|
381
|
+
dooray wiki tree <project> # 페이지 계층 트리 (root 부터 재귀)
|
|
382
|
+
dooray wiki tree <project> --depth 2 # 손자까지만
|
|
381
383
|
dooray wiki page get <project> <page-id> # 페이지 상세
|
|
382
384
|
dooray wiki page create <project> --title "..." [--parent <page-id>] [--body "..." | --body-file <path>]
|
|
383
385
|
dooray wiki page edit <project> <page-id> --title "새 제목" # 제목만 (비대화형)
|