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
2 changes: 1 addition & 1 deletion .github/workflows/release-doctor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
release_doctor:
name: release doctor
runs-on: ubuntu-latest
if: github.repository == 'stainless-sdks/context.dev-cli' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
if: github.repository == 'context-dot-dev/context-dev-cli' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')

steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.1"
".": "0.0.2"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 25
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev/context.dev-0253523aec437a0e9c67c3386fa25ed52ebbcc0073c907f0aa3586d8010d2e9d.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev/context.dev-508b6e971e1d1da37221163ee6625a7f348c96a0ddbf1ea2a8dc17b6cdfb74c3.yml
openapi_spec_hash: 5cf86ed865b01dfe3a159a45315ebb49
config_hash: 2b6e4424b446fe1bf93359ba758c83ed
config_hash: eebf67a9c2ccfe2641980c154d7a698e
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## 0.0.2 (2026-06-11)

Full Changelog: [v0.0.1...v0.0.2](https://github.com/context-dot-dev/context-dev-cli/compare/v0.0.1...v0.0.2)

### Chores

* configure new SDK language ([e89b37b](https://github.com/context-dot-dev/context-dev-cli/commit/e89b37b1061f3d846832b13852a6a4117c49910b))
* update SDK settings ([2cb5f95](https://github.com/context-dot-dev/context-dev-cli/commit/2cb5f95e56c35f5bf415999f877917625025e7ef))
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ The official CLI for the [Context Dev REST API](https://docs.context.dev/).

It is generated with [Stainless](https://www.stainless.com/).

<!-- x-release-please-start-version -->

## Installation

### Installing with Go

To test or install the CLI locally, you need [Go](https://go.dev/doc/install) version 1.22 or later installed.

```sh
go install 'github.com/stainless-sdks/context.dev-cli/cmd/context-dev@latest'
go install 'github.com/context-dot-dev/context-dev-cli/cmd/context-dev@latest'
```

Once you have run `go install`, the binary is placed in your Go bin directory:
Expand All @@ -26,6 +28,8 @@ If commands aren't found after installation, add the Go bin directory to your PA
export PATH="$PATH:$(go env GOPATH)/bin"
```

<!-- x-release-please-end -->

### Running Locally

After cloning the git repository for this project, you can use the
Expand Down
2 changes: 1 addition & 1 deletion cmd/context-dev/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"os"
"slices"

"github.com/context-dot-dev/context-dev-cli/pkg/cmd"
"github.com/context-dot-dev/context-go-sdk"
"github.com/stainless-sdks/context.dev-cli/pkg/cmd"
"github.com/tidwall/gjson"
"github.com/urfave/cli/v3"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/stainless-sdks/context.dev-cli
module github.com/context-dot-dev/context-dev-cli

go 1.25

Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/ai.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"context"
"fmt"

"github.com/context-dot-dev/context-dev-cli/internal/apiquery"
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
"github.com/context-dot-dev/context-go-sdk"
"github.com/context-dot-dev/context-go-sdk/option"
"github.com/stainless-sdks/context.dev-cli/internal/apiquery"
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
"github.com/tidwall/gjson"
"github.com/urfave/cli/v3"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/ai_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ package cmd
import (
"testing"

"github.com/stainless-sdks/context.dev-cli/internal/mocktest"
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
"github.com/context-dot-dev/context-dev-cli/internal/mocktest"
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
)

func TestAIAIQuery(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/brand.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"context"
"fmt"

"github.com/context-dot-dev/context-dev-cli/internal/apiquery"
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
"github.com/context-dot-dev/context-go-sdk"
"github.com/context-dot-dev/context-go-sdk/option"
"github.com/stainless-sdks/context.dev-cli/internal/apiquery"
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
"github.com/tidwall/gjson"
"github.com/urfave/cli/v3"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/brand_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package cmd
import (
"testing"

"github.com/stainless-sdks/context.dev-cli/internal/mocktest"
"github.com/context-dot-dev/context-dev-cli/internal/mocktest"
)

func TestBrandRetrieve(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"slices"
"strings"

"github.com/stainless-sdks/context.dev-cli/internal/autocomplete"
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
"github.com/context-dot-dev/context-dev-cli/internal/autocomplete"
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
docs "github.com/urfave/cli-docs/v3"
"github.com/urfave/cli/v3"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/cmdutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import (
"strings"
"syscall"

"github.com/context-dot-dev/context-dev-cli/internal/jsonview"
"github.com/context-dot-dev/context-go-sdk/option"
"github.com/stainless-sdks/context.dev-cli/internal/jsonview"

"github.com/charmbracelet/x/term"
"github.com/itchyny/json2yaml"
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/cmdutil_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/stretchr/testify/require"
"github.com/tidwall/gjson"

"github.com/stainless-sdks/context.dev-cli/internal/jsonview"
"github.com/context-dot-dev/context-dev-cli/internal/jsonview"
)

func TestStreamOutput(t *testing.T) {
Expand Down
8 changes: 4 additions & 4 deletions pkg/cmd/flagoptions.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import (
"strings"
"unicode/utf8"

"github.com/context-dot-dev/context-dev-cli/internal/apiform"
"github.com/context-dot-dev/context-dev-cli/internal/apiquery"
"github.com/context-dot-dev/context-dev-cli/internal/debugmiddleware"
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
"github.com/context-dot-dev/context-go-sdk/option"
"github.com/stainless-sdks/context.dev-cli/internal/apiform"
"github.com/stainless-sdks/context.dev-cli/internal/apiquery"
"github.com/stainless-sdks/context.dev-cli/internal/debugmiddleware"
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"

"github.com/goccy/go-yaml"
"github.com/urfave/cli/v3"
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/industry.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"context"
"fmt"

"github.com/context-dot-dev/context-dev-cli/internal/apiquery"
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
"github.com/context-dot-dev/context-go-sdk"
"github.com/context-dot-dev/context-go-sdk/option"
"github.com/stainless-sdks/context.dev-cli/internal/apiquery"
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
"github.com/tidwall/gjson"
"github.com/urfave/cli/v3"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/industry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package cmd
import (
"testing"

"github.com/stainless-sdks/context.dev-cli/internal/mocktest"
"github.com/context-dot-dev/context-dev-cli/internal/mocktest"
)

func TestIndustryRetrieveNaics(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/utility.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"context"
"fmt"

"github.com/context-dot-dev/context-dev-cli/internal/apiquery"
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
"github.com/context-dot-dev/context-go-sdk"
"github.com/context-dot-dev/context-go-sdk/option"
"github.com/stainless-sdks/context.dev-cli/internal/apiquery"
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
"github.com/tidwall/gjson"
"github.com/urfave/cli/v3"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/utility_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package cmd
import (
"testing"

"github.com/stainless-sdks/context.dev-cli/internal/mocktest"
"github.com/context-dot-dev/context-dev-cli/internal/mocktest"
)

func TestUtilityPrefetch(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package cmd

const Version = "0.0.1"
const Version = "0.0.2" // x-release-please-version
4 changes: 2 additions & 2 deletions pkg/cmd/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"context"
"fmt"

"github.com/context-dot-dev/context-dev-cli/internal/apiquery"
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
"github.com/context-dot-dev/context-go-sdk"
"github.com/context-dot-dev/context-go-sdk/option"
"github.com/stainless-sdks/context.dev-cli/internal/apiquery"
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
"github.com/tidwall/gjson"
"github.com/urfave/cli/v3"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/web_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ package cmd
import (
"testing"

"github.com/stainless-sdks/context.dev-cli/internal/mocktest"
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
"github.com/context-dot-dev/context-dev-cli/internal/mocktest"
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
)

func TestWebExtract(t *testing.T) {
Expand Down
Loading