https://github.com/maxdeviant/today-i-did
https://github.com/maxdeviant/today-i-did
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maxdeviant/today-i-did
- Owner: maxdeviant
- License: mit
- Created: 2021-09-22T00:09:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-11-12T22:25:24.000Z (over 3 years ago)
- Last Synced: 2025-04-09T15:16:48.854Z (11 months ago)
- Language: Rust
- Size: 48.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# today-i-did
`today-i-did` is a small utility to help you compile a list of things you did today.
I built this to streamline my process for assembling async standup notes.
## How does it work?
I keep a `TODAY.md` file in my home directory that I use to list out the things I did today.
It looks something like this:
```md
## What are you working on?
- Added examples for Directory Sync operations https://github.com/workos/workos-rust/pull/70
- Renamed `VerifyFactor` to `VerifyChallenge` https://github.com/workos/workos-rust/pull/71
## What's up next?
- Continue work on Rust SDK
```
At the end of each day, I'll list out what I did, including links to PRs I've opened.
Then I run it through `today-i-did`:
```md
today-i-did ~/TODAY.md
```
This will write a formatted report to stdout:
```md
## What are you working on?
- Added examples for Directory Sync operations ([SDK-539](https://linear.app/workos/issue/SDK-539/add-examples-for-directory-sync-operations), [PR 70](https://github.com/workos/workos-rust/pull/70))
- Renamed `VerifyFactor` to `VerifyChallenge` ([SDK-540](https://linear.app/workos/issue/SDK-540/rename-verifyfactor-to-verifychallenge), [PR 71](https://github.com/workos/workos-rust/pull/71))
## What's up next?
- Continue work on Rust SDK
```
The output is then pasted into our daily standup [Thread](https://threads.com/).
## Features
Currently `today-i-did` supports linking to GitHub PRs and extracting any [Linear](https://linear.app/) issues referenced in those PRs.