Skip to content

Commit 80d74ed

Browse files
authored
Merge pull request #1 from quantcli/chore/move-to-quantcli-org
chore: move to quantcli org and migrate to homebrew_casks
2 parents f866ba1 + fadc783 commit 80d74ed

9 files changed

Lines changed: 28 additions & 19 deletions

File tree

.goreleaser.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,24 @@ archives:
2525
checksum:
2626
name_template: checksums.txt
2727

28-
brews:
28+
homebrew_casks:
2929
- name: crono-export
3030
repository:
31-
owner: DTTerastar
31+
owner: quantcli
3232
name: homebrew-tap
3333
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
34-
homepage: https://github.com/DTTerastar/crono-export-cli
34+
directory: Casks
35+
homepage: https://github.com/quantcli/crono-export-cli
3536
description: CLI to export Cronometer nutrition, biometrics, and food log data as JSON
3637
license: MIT
38+
url:
39+
verified: github.com/quantcli/crono-export-cli
40+
hooks:
41+
post:
42+
install: |
43+
if OS.mac?
44+
system_command "/usr/bin/xattr", args: ["-dr", "com.apple.quarantine", "#{staged_path}/crono-export"]
45+
end
3746
3847
release:
3948
draft: true

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
Export your personal nutrition, biometric, and food-log data from [Cronometer](https://cronometer.com) as JSON. Built for personal LLM agents and scripts that want structured nutrition data — for example, an LLM-driven bariatric or fitness coach that needs to know how much protein, B12, iron, or calcium you actually got today.
44

5-
[![Latest Release](https://img.shields.io/github/v/release/DTTerastar/crono-export-cli)](https://github.com/DTTerastar/crono-export-cli/releases/latest)
5+
[![Latest Release](https://img.shields.io/github/v/release/quantcli/crono-export-cli)](https://github.com/quantcli/crono-export-cli/releases/latest)
66
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
7-
[![Go](https://img.shields.io/github/go-mod/go-version/DTTerastar/crono-export-cli)](go.mod)
7+
[![Go](https://img.shields.io/github/go-mod/go-version/quantcli/crono-export-cli)](go.mod)
88
![Platforms](https://img.shields.io/badge/platform-macOS%20%7C%20Linux%20%7C%20Windows-lightgrey)
99

1010
## Features
@@ -20,7 +20,7 @@ Export your personal nutrition, biometric, and food-log data from [Cronometer](h
2020

2121
```sh
2222
# Install with Homebrew
23-
brew tap DTTerastar/tap
23+
brew tap quantcli/tap
2424
brew install crono-export
2525

2626
# Set credentials and try a query
@@ -33,36 +33,36 @@ crono-export servings --today
3333

3434
**Homebrew (macOS / Linux):**
3535
```sh
36-
brew tap DTTerastar/tap
36+
brew tap quantcli/tap
3737
brew install crono-export
3838
```
3939

40-
Or download a pre-built binary from the [releases page](https://github.com/DTTerastar/crono-export-cli/releases/latest):
40+
Or download a pre-built binary from the [releases page](https://github.com/quantcli/crono-export-cli/releases/latest):
4141

4242
**macOS (Apple Silicon):**
4343
```sh
44-
curl -Lo /tmp/crono-export.zip https://github.com/DTTerastar/crono-export-cli/releases/latest/download/crono-export_darwin_arm64.zip
44+
curl -Lo /tmp/crono-export.zip https://github.com/quantcli/crono-export-cli/releases/latest/download/crono-export_darwin_arm64.zip
4545
unzip -jo /tmp/crono-export.zip -d ~/bin && rm /tmp/crono-export.zip
4646
chmod +x ~/bin/crono-export
4747
```
4848

4949
**macOS (Intel):**
5050
```sh
51-
curl -Lo /tmp/crono-export.zip https://github.com/DTTerastar/crono-export-cli/releases/latest/download/crono-export_darwin_amd64.zip
51+
curl -Lo /tmp/crono-export.zip https://github.com/quantcli/crono-export-cli/releases/latest/download/crono-export_darwin_amd64.zip
5252
unzip -jo /tmp/crono-export.zip -d ~/bin && rm /tmp/crono-export.zip
5353
chmod +x ~/bin/crono-export
5454
```
5555

5656
**Linux (amd64):**
5757
```sh
58-
curl -Lo /tmp/crono-export.zip https://github.com/DTTerastar/crono-export-cli/releases/latest/download/crono-export_linux_amd64.zip
58+
curl -Lo /tmp/crono-export.zip https://github.com/quantcli/crono-export-cli/releases/latest/download/crono-export_linux_amd64.zip
5959
unzip -jo /tmp/crono-export.zip -d ~/bin && rm /tmp/crono-export.zip
6060
chmod +x ~/bin/crono-export
6161
```
6262

6363
**Windows (amd64):**
6464

65-
Download `crono-export_windows_amd64.zip` from the [releases page](https://github.com/DTTerastar/crono-export-cli/releases/latest), extract it, and add the directory to your PATH.
65+
Download `crono-export_windows_amd64.zip` from the [releases page](https://github.com/quantcli/crono-export-cli/releases/latest), extract it, and add the directory to your PATH.
6666

6767
Make sure `~/bin` is in your `PATH`. If not, add this to your `~/.zshrc` or `~/.bashrc`:
6868
```sh

cmd/biometrics.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/DTTerastar/crono-export-cli/internal/cronoclient"
6+
"github.com/quantcli/crono-export-cli/internal/cronoclient"
77
)
88

99
var biometricsCmd = &cobra.Command{

cmd/exercises.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/DTTerastar/crono-export-cli/internal/cronoclient"
6+
"github.com/quantcli/crono-export-cli/internal/cronoclient"
77
)
88

99
var exercisesCmd = &cobra.Command{

cmd/notes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/DTTerastar/crono-export-cli/internal/cronoclient"
6+
"github.com/quantcli/crono-export-cli/internal/cronoclient"
77
)
88

99
var notesCmd = &cobra.Command{

cmd/nutrition.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/DTTerastar/crono-export-cli/internal/cronoclient"
6+
"github.com/quantcli/crono-export-cli/internal/cronoclient"
77
)
88

99
var nutritionCmd = &cobra.Command{

cmd/servings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/DTTerastar/crono-export-cli/internal/cronoclient"
6+
"github.com/quantcli/crono-export-cli/internal/cronoclient"
77
)
88

99
var servingsCmd = &cobra.Command{

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/DTTerastar/crono-export-cli
1+
module github.com/quantcli/crono-export-cli
22

33
go 1.25.5
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
import "github.com/DTTerastar/crono-export-cli/cmd"
3+
import "github.com/quantcli/crono-export-cli/cmd"
44

55
func main() {
66
cmd.Execute()

0 commit comments

Comments
 (0)