Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ macOS CLI tool that syncs GitHub PRs and Issues to Things 3 task manager. Uses p
pnpm build

# Dev mode (run TypeScript directly via tsx)
pnpm dev -- <command>
pnpm dev -- sync -v
pnpm dev -- config --verify
pnpm dev <command>
pnpm dev sync -v
pnpm dev config --verify
pnpm dev config --repos=prompt

# Type checking
pnpm typecheck
Expand Down Expand Up @@ -63,6 +64,8 @@ The daemon uses four search queries (configurable via sync-types):
- `is:issue is:open assignee:@me` (issues-assigned)
- `is:issue is:open author:@me` (issues-created)

Results are filtered by repository scope (configurable via `--repos=prompt` or in init wizard).

## Publishing

```bash
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ github-things-sync start
- 🔄 **Auto-sync** — PRs and issues appear in Things automatically
- ✅ **Completion tracking** — Close an issue, task completes in Things
- 📋 **Smart filtering** — Choose what to sync (reviews, created, assigned)
- 🎯 **Repository scope** — Select specific repos or orgs to sync
- 🚀 **Background daemon** — Runs silently, syncs every 5 minutes
- 🍎 **macOS native** — Uses LaunchAgent for autostart

Expand Down Expand Up @@ -125,6 +126,8 @@ Update settings with:
github-things-sync config --interval=600 # Poll every 10 minutes
github-things-sync config --project="Work" # Use different Things project
github-things-sync config --sync-types=pr-reviews,issues-assigned
github-things-sync config --repos=prompt # Select specific repos to sync
github-things-sync config --repos=all # Reset to sync all repos
```

## Development
Expand All @@ -133,7 +136,7 @@ github-things-sync config --sync-types=pr-reviews,issues-assigned
git clone https://github.com/yungweng/github-things-sync.git
cd github-things-sync
pnpm install
pnpm dev -- sync -v # Run sync in dev mode
pnpm dev sync -v # Run sync in dev mode
```

## Contributing
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"chalk": "^5.6.2",
"commander": "^12.0.0",
"open": "^10.0.0",
"ora": "^9.0.0",
"update-notifier": "^7.3.1"
},
"devDependencies": {
Expand Down
98 changes: 98 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading