Skip to content
This repository was archived by the owner on Dec 2, 2025. It is now read-only.
Open
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
4 changes: 4 additions & 0 deletions packages/create-zee-app/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ async function main() {
value: "002-onchain-workflow",
label: "Analyze blockchain data to get a wallet's token balances, etc.",
},
{
value: "003-telegram-workflow",
label: "Setup a telegram bot that can drive a ZEE.",
},
],
});

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
AI_AGENT_SDK_API_KEY!
OPENAI_API_KEY!
TELEGRAM_BOT_TOKEN!
21 changes: 21 additions & 0 deletions packages/create-zee-app/templates/003-telegram-workflow/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 Covalent

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
33 changes: 33 additions & 0 deletions packages/create-zee-app/templates/003-telegram-workflow/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Telegram Workflow Manager

This project is a Telegram bot that manages AI agent workflows. It allows users to start, get the status of, and kill workflows through simple text commands.

## Features

- Start a new workflow
- Get the status of the current workflow
- Kill the current workflow
- Handle other miscellaneous requests

## Getting Started

### Prerequisites

- Node.js (>= 14.x)
- npm or yarn
- Telegram Bot API token

### Getting started


```
npm i
```

### Running the Bot

To start the bot, run the following command:

```
npm run dev
```
Loading