clairo 1.2.3 → 2.1.0

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 (3) hide show
  1. package/README.md +40 -5
  2. package/dist/cli.js +1981 -254
  3. package/package.json +3 -1
package/README.md CHANGED
@@ -4,11 +4,26 @@ dashboard tui for github PRs, jira tickets, and daily logs.
4
4
 
5
5
  ## features
6
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
7
+ - github dashboard
8
+ - configure and switch between remotes
9
+ - view open PRs with status, reviews, and checks
10
+ - see full PR details with description, labels, and assignees
11
+ - create new PRs from the terminal
12
+ - jira integration
13
+ - auto ticket detection based on branch name
14
+ - link tickets and change status from the terminal
15
+ - save board, filter, or JQL views and browse issues
16
+ - sprint-grouped issue list with search, assignee filters, and pagination
17
+ - inline issue detail view with description and comments
18
+ - change ticket status, assign/unassign directly from the detail view
19
+ - claude code integration (requires claude code to be set up)
20
+ - generate standup notes from daily logs
21
+ - generate PR title and description from your diff
22
+ - daily logs
23
+ - automatically logged when you create PRs, change ticket status, or update assignees
24
+ - browse and view past logs
25
+ - add manual entries inline
26
+ - open logs in your editor for editing
12
27
 
13
28
  ## requirements
14
29
 
@@ -38,3 +53,23 @@ npx clairo
38
53
  # Run in a different repo
39
54
  npx clairo --cwd ~/projects/other-repo
40
55
  ```
56
+
57
+ ## development
58
+
59
+ ### watch mode
60
+
61
+ since clairo operates on the git repo in the current directory, you need two terminals:
62
+
63
+ terminal 1 (in the clairo project) — rebuild on source changes:
64
+
65
+ ```bash
66
+ pnpm build:watch
67
+ ```
68
+
69
+ terminal 2 (in any project directory) — auto-restart the TUI on rebuild:
70
+
71
+ ```bash
72
+ clairo:dev
73
+ ```
74
+
75
+ `clairo:dev` is a shell alias (in `~/.zshrc`) that uses [watchexec](https://github.com/watchexec/watchexec) to watch clairo's `dist/` and restart the TUI when it changes. install with `brew install watchexec`.