@ryan_nookpi/pi-extension-until 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +30 -8
  2. package/package.json +11 -1
package/README.md CHANGED
@@ -1,17 +1,39 @@
1
1
  # @ryan_nookpi/pi-extension-until
2
2
 
3
- Standalone pi package for the `until` extension.
3
+ 조건이 만족될 때까지 pi 주기적으로 같은 작업을 다시 실행하도록 만드는 익스텐션입니다.
4
4
 
5
- ## Install
5
+ 예를 들어 PR 코멘트 확인, 배포 상태 점검, 외부 응답 대기처럼 "조금 뒤에 다시 확인"이 필요한 일을 자동으로 반복시킬 수 있습니다.
6
+
7
+ ## 설치
6
8
 
7
9
  ```bash
8
10
  pi install npm:@ryan_nookpi/pi-extension-until
9
11
  ```
10
12
 
11
- ## What it provides
13
+ ## 이런 좋아요
14
+
15
+ - "5분마다 다시 확인해줘" 같은 요청을 자동화하고 싶을 때
16
+ - 특정 조건이 만족될 때까지 반복 점검이 필요할 때
17
+ - 사람이 직접 시간을 보며 다시 요청하기 번거로울 때
18
+
19
+ ## 사용 예시
20
+
21
+ ```text
22
+ /until 5m PR 코멘트 확인해줘
23
+ /until 1h 배포 상태 다시 점검해줘
24
+ /until 10분 결제 오류율 정상화됐는지 봐줘
25
+ ```
26
+
27
+ ## 함께 쓰는 명령어
28
+
29
+ ```text
30
+ /untils
31
+ /until-cancel <id>
32
+ /until-cancel all
33
+ ```
34
+
35
+ ## 참고
12
36
 
13
- - `/until` command
14
- - `/untils` command
15
- - `/until-cancel` command
16
- - `until_report` tool
17
- - `./index.ts` entry
37
+ - 각 반복 실행 뒤에는 `until_report`로 결과를 보고합니다.
38
+ - 조건이 충족되면 반복이 자동으로 종료됩니다.
39
+ - 너무 짧은 간격은 막혀 있으며, 최대 24시간 동안 유지됩니다.
package/package.json CHANGED
@@ -1,7 +1,17 @@
1
1
  {
2
2
  "name": "@ryan_nookpi/pi-extension-until",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Until loop extension for pi.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/Jonghakseo/pi-extension.git",
9
+ "directory": "packages/until"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/Jonghakseo/pi-extension/issues"
13
+ },
14
+ "homepage": "https://github.com/Jonghakseo/pi-extension/tree/main/packages/until#readme",
5
15
  "type": "module",
6
16
  "keywords": [
7
17
  "pi-package"