-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
190 lines (163 loc) · 4.58 KB
/
Copy path.goreleaser.yml
File metadata and controls
190 lines (163 loc) · 4.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
version: 2
project_name: rizome
before:
hooks:
- go mod tidy
- go generate ./...
builds:
- id: rizome
main: ./cmd/rizome
binary: rizome
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
ignore:
- goos: windows
goarch: arm64
ldflags:
- -s -w
- -X main.version={{.Version}}
- -X main.commit={{.Commit}}
- -X main.buildTime={{.Date}}
archives:
- id: rizome
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
format_overrides:
- goos: windows
format: zip
- goos: linux
format: tar.gz
- goos: darwin
format: tar.gz
files:
- README.md
- LICENSE
- RIZOME.md
checksum:
name_template: 'checksums.txt'
snapshot:
version_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
use: github
filters:
exclude:
- '^docs:'
- '^test:'
- '^ci:'
- '^build:'
- '^style:'
- '^refactor:'
- '^perf:'
- '^chore:'
- Merge pull request
- Merge branch
groups:
- title: 'Features'
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: 'Bug fixes'
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: 'Documentation'
regexp: "^.*docs[(\\w)]*:+.*$"
order: 2
- title: 'Other'
order: 999
release:
github:
owner: rizome-dev
name: rizome
draft: false
prerelease: auto
mode: replace
header: |
## Rizome {{ .Tag }}
Agentic development environment workflow management CLI.
Synchronizes configuration across AI providers and manages development workflows.
footer: |
## Installation
### Homebrew (macOS/Linux)
```bash
brew tap rizome-dev/brews
brew install rizome
```
### Manual
Download the appropriate binary for your platform from the assets below.
## Quick Start
```bash
# Initialize a new RIZOME.md template
rizome init
# Sync provider configurations
rizome sync
# View help
rizome --help
```
**Full Documentation**: https://github.com/rizome-dev/rizome
brews:
- name: rizome
homepage: https://github.com/rizome-dev/rizome
description: Agentic development environment workflow management CLI
license: GPL-2.0
repository:
owner: rizome-dev
name: brews
branch: main
token: "{{ .Env.HOMEBREW_TAP_TOKEN }}"
commit_author:
name: goreleaserbot
email: bot@goreleaser.com
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
directory: Formula
# Skip homebrew update for prereleases
skip_upload: auto
test: |
system "#{bin}/rizome", "--help"
# Test sync command help (should work without RIZOME.md)
system "#{bin}/rizome", "sync", "--help"
install: |
bin.install "rizome"
# Generate and install shell completions
generate_completions_from_executable(bin/"rizome", "completion")
caveats: |
✨ Rizome CLI installation complete!
Quick Start:
1. Run 'rizome init' to interactively create a RIZOME.md from templates
2. Edit RIZOME.md with your project details and provider overrides
3. Run 'rizome sync' to interactively synchronize provider configurations
Template Management:
rizome tmpl List available templates
rizome tmpl add Create a new template interactively
rizome tmpl edit Edit an existing template
rizome tmpl show Show template content
rizome tmpl delete Delete a template
Example RIZOME.md format:
# RIZOME.md
Project overview and context.
## Common Instructions
Instructions that apply to all AI providers:
- Project type and technology stack
- Coding standards and conventions
## Provider Overrides
### CLAUDE
Claude-specific instructions
### QWEN
Qwen-specific instructions
Commands:
rizome --help Show help information
rizome init Interactive RIZOME.md creation from templates
rizome tmpl Manage RIZOME.md templates
rizome sync Interactive provider configuration sync
rizome sync --dry-run Preview changes without applying
For more information: https://github.com/rizome-dev/rizome