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
10 changes: 10 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Project Description
tgbotkit-client is a Go client for the Telegram Bot API, generated from the official specification. It follows an API-first approach, using an OpenAPI specification created by `tgbotspec` and Go code generated by `oapi-codegen`.

## Guidelines
### Running Tests
To run the tests for this project, use the standard Go test command:
```bash
go test -v ./...
```
Alternatively, you can run all generation and tests using the tools provided in the repository.
1 change: 1 addition & 0 deletions GEMINI.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
See [AGENTS.md](AGENTS.md) for project description and guidelines.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
[![tests](https://github.com/tgbotkit/client/actions/workflows/tests.yml/badge.svg)](https://github.com/tgbotkit/client/actions/workflows/tests.yml)
[![version](https://img.shields.io/github/v/release/tgbotkit/client?sort=semver)](https://github.com/tgbotkit/client/releases)
[![license](https://img.shields.io/github/license/tgbotkit/client)](LICENSE)
[![Go Reference](https://pkg.go.dev/badge/github.com/tgbotkit/client.svg)](https://pkg.go.dev/github.com/tgbotkit/client)

Go client for the Telegram Bot API, generated from the official spec. This project follows an **API-first** approach, using an OpenAPI specification to ensure consistency and correctness.

Expand All @@ -14,6 +15,7 @@ Package docs: https://pkg.go.dev/github.com/tgbotkit/client
| Package Version | API Version | API Release Date |
|-----------------| --- | --- |
| latest | [9.2](https://core.telegram.org/bots/api#august-15-2025) | August 15, 2025 |
| 0.2.0 | [9.2](https://core.telegram.org/bots/api#august-15-2025) | August 15, 2025 |
| 0.1.0 | [9.2](https://core.telegram.org/bots/api#august-15-2025) | August 15, 2025 |

## Tooling
Expand Down
Loading