Install + Verify
Public GA install contracts for DriftGate SDKs and CLI.
CLI + TypeScript SDK1.0.1
Known Constraints
- Ruby SDK requires Ruby
>= 3.0. - CLI container (
ghcr.io/driftgate/cli:1.0.1) supportslinux/amd64andlinux/arm64. - If architecture auto-detection fails, pass
--platform linux/amd64or--platform linux/arm64explicitly.
TypeScript SDK (npm)
npm i @driftgate/sdknode --input-type=module -e "import { DriftGateClient } from '@driftgate/sdk'; console.log(typeof DriftGateClient)"Expected output: function
CLI (npm global)
npm i -g @driftgate/clidriftgate --helpExpected output starts with driftgate.
Python SDK (PyPI)
pip install driftgate-sdkpython -c "import driftgate_sdk; print('ok')"Expected output: ok
Go SDK
go get github.com/driftgate/sdk-go@v0.1.0go list -m github.com/driftgate/sdk-goExpected output includes: github.com/driftgate/sdk-go v0.1.0
Java SDK (Maven Central)
<dependency>
<groupId>ai.driftgate</groupId>
<artifactId>driftgate-sdk</artifactId>
<version>0.1.0</version>
</dependency>mvn -q -DforceStdout dependency:get -Dartifact=ai.driftgate:driftgate-sdk:0.1.0Expected result: exits 0 with no missing artifact errors.
C# SDK (NuGet)
dotnet add package DriftGate.Sdk --version 0.1.0dotnet list package | grep DriftGate.SdkExpected output includes DriftGate.Sdk 0.1.0.
Ruby SDK (RubyGems)
gem install driftgate-sdk -v 0.1.0gem list '^driftgate-sdk$'Expected output includes driftgate-sdk (0.1.0).
PHP SDK (Packagist)
composer require driftgate/sdk-php:^0.1.0composer show driftgate/sdk-phpExpected output includes v0.1.0.
CLI (Homebrew)
brew tap driftgate/tap && brew install driftgatebrew list --versions driftgateExpected output includes driftgate 1.0.1.
CLI (Docker / GHCR)
docker run --rm ghcr.io/driftgate/cli:1.0.1 --helpExpected output starts with driftgate.
Last updated on