Skip to content

Commit ea71e7d

Browse files
committed
Updated badges
1 parent fa2ac90 commit ea71e7d

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

README.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,31 @@
55
<img alt="Trigger.dev logo" src="https://imagedelivery.net/3TbraffuDZ4aEf8KWOmI_w/a45d1fa2-0ae8-4a39-4409-f4f934bfae00/public">
66
</picture>
77

8-
### Open source background jobs and AI infrastructure
8+
### Build and deploy fully‑managed AI agents and workflows
99

10-
[Discord](https://trigger.dev/discord) | [Website](https://trigger.dev) | [Issues](https://github.com/triggerdotdev/trigger.dev/issues) | [Docs](https://trigger.dev/docs)
10+
[Website](https://trigger.dev) | [Docs](https://trigger.dev/docs) | [Issues](https://github.com/triggerdotdev/trigger.dev/issues) | [Feature requests](https://trigger.dev/feature-requests) | [Roadmap](https://trigger.dev/roadmap) | [Self-hosting](https://trigger.dev/docs/v3/open-source-self-hosting#overview)
1111

12-
[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/triggerdotdev.svg?style=social&label=Follow%20%40trigger.dev)](https://twitter.com/triggerdotdev)
12+
[![GitHub stars](https://img.shields.io/github/stars/triggerdotdev/trigger.dev?style=social)](https://github.com/triggerdotdev/trigger.dev)
13+
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/triggerdotdev/trigger.dev/blob/main/LICENSE)
14+
[![Open Source](https://img.shields.io/badge/Open%20Source-%E2%9D%A4-red.svg)](https://github.com/triggerdotdev/trigger.dev)
15+
[![npm](https://img.shields.io/npm/v/@trigger.dev/sdk.svg?label=npm)](https://www.npmjs.com/package/@trigger.dev/sdk)
16+
[![SDK downloads](https://img.shields.io/npm/dm/@trigger.dev/sdk.svg?label=SDK%20downloads)](https://www.npmjs.com/package/@trigger.dev/sdk)
17+
[![CLI downloads](https://img.shields.io/npm/dm/trigger.dev.svg?label=CLI%20downloads)](https://www.npmjs.com/package/trigger.dev)
18+
[![GitHub commit activity](https://img.shields.io/github/commit-activity/m/triggerdotdev/trigger.dev)](https://github.com/triggerdotdev/trigger.dev/graphs/contributors)
19+
20+
[![Twitter Follow](https://img.shields.io/twitter/follow/triggerdotdev?style=social)](https://twitter.com/triggerdotdev)
21+
[![Discord](https://img.shields.io/discord/1066956501299777596?logo=discord&logoColor=white&color=7289da)](https://discord.gg/nkqV9xBYWy)
1322

1423
</div>
1524

1625
## About Trigger.dev
1726

18-
Trigger.dev is an open source platform and SDK which allows you to create long-running background jobs. Write normal async code, deploy, and never hit a timeout.
27+
Trigger.dev is the open-source platform for building AI workflows in TypeScript. Long-running tasks with retries, queues, observability, and elastic scaling.
1928

2029
### Key features:
2130

2231
- JavaScript and TypeScript SDK
23-
- No timeouts
32+
- Long-running tasks with retries, queues, observability, and elastic scaling
2433
- Retries (with exponential backoff)
2534
- Queues and concurrency controls
2635
- Schedules and crons
@@ -38,7 +47,7 @@ Trigger.dev is an open source platform and SDK which allows you to create long-r
3847
Create tasks where they belong: in your codebase. Version control, localhost, test and review like you're already used to.
3948

4049
```ts
41-
import { task } from "@trigger.dev/sdk/v3";
50+
import { task } from "@trigger.dev/sdk";
4251

4352
//1. You need to export each task
4453
export const helloWorld = task({
@@ -58,7 +67,7 @@ Use our SDK to write tasks in your codebase. There's no infrastructure to manage
5867

5968
## Environments
6069

61-
We support `Development`, `Staging`, and `Production` environments, allowing you to test your tasks before deploying them to production.
70+
We support `Development`, `Staging`, `Preview`, and `Production` environments, allowing you to test your tasks before deploying them to production.
6271

6372
## Full visibility of every job run
6473

0 commit comments

Comments
 (0)