You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
SimplyCubed Code is an autonomous coding agent you install into your own GitHub. Your team files an issue, the agent prepares a pull request in your repository, and one of your reviewers decides whether it ships.
6
6
7
-
> Beta, at`v0.1.9`. Product overview: [simplycubed.com/code](https://simplycubed.com/code?utm_source=github&utm_medium=readme&utm_campaign=code). See [Status](#status).
7
+
> Beta. Current release:`v0.1.9`. Product overview: [simplycubed.com/code](https://simplycubed.com/code?utm_source=github&utm_medium=readme&utm_campaign=code). See [Status](#status).
8
8
9
9
### Try it without letting it write anything
10
10
@@ -124,16 +124,18 @@ Start with [docs/setup.md](docs/setup.md). It walks through customer installatio
124
124
125
125
## Installation
126
126
127
-
Install the pinned release you want to run:
127
+
Install the pinned release you want to run. The current release is `v0.1.9`;
128
+
replace `<release-tag>` below with that tag, or with whichever release you have
129
+
validated:
128
130
129
131
```sh
130
-
go install github.com/simplycubed/code/cmd/simplycubed@v0.1.9
132
+
go install github.com/simplycubed/code/cmd/simplycubed@<release-tag>
131
133
simplycubed version
132
134
```
133
135
134
-
That prints `0.1.7`. Pre-1.0 releases follow semver with the usual caveat: minor
135
-
versions may still change behavior. Pin the tag you have validated rather than
136
-
floating on `@latest`.
136
+
With `v0.1.9`, that prints `0.1.9`. Pre-1.0 releases follow semver with the
137
+
usual caveat: minor versions may still change behavior. Pin the tag you have
138
+
validated rather than floating on `@latest`.
137
139
138
140
Then follow the [setup guide in `docs/setup.md`](docs/setup.md) to add the repository config, install the GitHub workflow, set the required credentials, and run the first issue through the system.
Copy file name to clipboardExpand all lines: STATUS.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,9 @@ Each job mints its own installation token scoped to one repository with
31
31
`contents`, `issues`, and `pull-requests` permissions only.
32
32
33
33
`v0.1.9` is the current release. `go install
34
-
github.com/simplycubed/code/cmd/simplycubed@v0.1.9` works today. `v0.1.2` and `v0.1.4` are retracted in `go.mod` because those tags pointed at the wrong
34
+
github.com/simplycubed/code/cmd/simplycubed@<release-tag>` works today when
35
+
`<release-tag>` is the release you want to pin, including `v0.1.9`. `v0.1.2`
36
+
and `v0.1.4` are retracted in `go.mod` because those tags pointed at the wrong
35
37
commits.
36
38
37
39
Upgrade from anything earlier. `v0.1.7` has a duplicate `env:` key in its copy
0 commit comments