https://github.com/tailor-platform/sdk
https://github.com/tailor-platform/sdk
tailor-platform typescript
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tailor-platform/sdk
- Owner: tailor-platform
- License: mit
- Created: 2025-11-12T04:29:57.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2026-06-09T03:31:58.000Z (4 days ago)
- Last Synced: 2026-06-09T04:24:24.368Z (4 days ago)
- Topics: tailor-platform, typescript
- Language: TypeScript
- Homepage:
- Size: 16.3 MB
- Stars: 9
- Watchers: 0
- Forks: 3
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Tailor Platform SDK
Monorepo for Tailor Platform SDK development.
## Prerequisites
See [package.json](package.json) for required Node.js and pnpm versions.
## Installation
```bash
pnpm install
```
## Development
```bash
# Run all tests
pnpm test
# Build all packages
pnpm build
# Type checking
pnpm typecheck
# Linting
pnpm lint
pnpm lint:fix
# Format code
pnpm format
pnpm format:check
# Run all checks (format, lint:fix, typecheck)
pnpm check
# Check CLI documentation matches command definitions
pnpm -C packages/sdk docs:check
# Update CLI documentation from command definitions
pnpm -C packages/sdk docs:update
```
## Structure
```
├── packages/
│ ├── sdk/ # Main Tailor Platform SDK package
│ ├── create-sdk/ # Project scaffolding CLI
│ └── tailor-proto/ # Protocol buffer definitions
└── example/ # Development and testing example
```
## Release
Releases are managed by Changesets and automated through CI/CD.
```bash
# Create a changeset for your changes
pnpm changeset
```