clairo 1.1.0 → 1.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.
- package/README.md +13 -13
- package/dist/cli.js +558 -311
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
# clairo
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
dashboard tui for github PRs, jira tickets, and daily logs.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## features
|
|
6
|
+
|
|
7
|
+
- branch aware github dashboard: see open PR details, create new PRs
|
|
8
|
+
- claude code integration (requires claude code to be set up) for generating standup notes
|
|
9
|
+
- link jira tickets and change ticket status from the terminal
|
|
10
|
+
- auto jira ticket detection based on branch name
|
|
11
|
+
- daily logs that update automatically with tui actions that can be used to generate standup notes
|
|
12
|
+
|
|
13
|
+
## requirements
|
|
6
14
|
|
|
7
15
|
- Node.js 18+
|
|
8
16
|
- [GitHub CLI](https://cli.github.com/) (`gh`) installed and authenticated
|
|
9
17
|
|
|
10
|
-
##
|
|
18
|
+
## usage
|
|
11
19
|
|
|
12
20
|
```bash
|
|
13
21
|
npx clairo
|
|
14
22
|
```
|
|
15
23
|
|
|
16
|
-
###
|
|
24
|
+
### options
|
|
17
25
|
|
|
18
26
|
```
|
|
19
27
|
--cwd <path>, -C Run in a different directory
|
|
@@ -21,7 +29,7 @@ npx clairo
|
|
|
21
29
|
--help Show help
|
|
22
30
|
```
|
|
23
31
|
|
|
24
|
-
###
|
|
32
|
+
### examples
|
|
25
33
|
|
|
26
34
|
```bash
|
|
27
35
|
# Run in current directory
|
|
@@ -30,11 +38,3 @@ npx clairo
|
|
|
30
38
|
# Run in a different repo
|
|
31
39
|
npx clairo --cwd ~/projects/other-repo
|
|
32
40
|
```
|
|
33
|
-
|
|
34
|
-
## Keyboard
|
|
35
|
-
|
|
36
|
-
- `1-6` - Switch between boxes
|
|
37
|
-
- `j/k` - Navigate lists
|
|
38
|
-
- `Enter` - Select
|
|
39
|
-
- `o` - Open in browser
|
|
40
|
-
- `Ctrl+C` - Quit
|