Monorepo for Channel App SDKs.
proto/: shared SDK contracts.go/: Go SDK module.ts/: existing TypeScript SDK workspace and npm packages.docs/guides: app developer guides in Korean, English, and Japanese.docs/reference: protocol and SDK reference documents.examples/go: runnable Go examples.
Existing npm packages keep their public package names and entrypoints.
cd ts
pnpm install
pnpm build
pnpm testThe Go SDK is a separate module under go/ and is released with module tags such
as go/v0.1.0.
cd go
go test ./...make install
make lint
make build
make test
make verifyLanguage-specific targets are also available, such as make build-ts,
make test-go, make lint-go, and make proto-lint.
Before opening a pull request, run the relevant checks locally:
make lint
make build
make testWhen changing protocol definitions or generated schemas, also commit the generated files and run:
make proto-checkTypeScript package releases are managed with Changesets. Add a changeset for any user-visible package change:
cd ts
pnpm changesetDo not edit package versions or changelog release sections by hand. The release workflow creates a release pull request, and packages are published to npm when that pull request is merged.
The Go SDK is released separately from npm packages. Keep the Go module path as
github.com/channel-io/cht-app-sdk/go, and use Go module tags such as
go/v0.1.0 for Go releases.
Because this repository is public, pull requests, commit messages, changelogs, fixtures, screenshots, and generated files must not include private service URLs, credentials, tokens, customer data, private repository names, internal task IDs, or organization-specific UUIDs.
CI enforces this policy with scripts/check-public-content.sh and a secret
scan. Report suspected vulnerabilities privately as described in
SECURITY.md.
- Agent Guide - Best entry point for humans and coding agents
- TypeScript README - TypeScript SDK usage
- TypeScript Auth and Tokens
- TypeScript Extensions
- TypeScript WAM SDK
- TypeScript WAM UI
- TypeScript CLI
- Go Feature Parity
MIT