add-teams
SolidAdd Microsoft Teams channel integration via Chat SDK.
AI & Automation 29,545 stars
12887 forks Updated yesterday MIT
Install
Quality Score: 93/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Add Microsoft Teams Channel
Connect NanoClaw to Microsoft Teams for interactive chat in team channels, group chats, and direct messages.
## Install
NanoClaw doesn't ship channels in trunk. This skill copies the Teams adapter in from the `channels` branch.
### Pre-flight (idempotent)
Skip to **Credentials** if all of these are already in place:
- `src/channels/teams.ts` exists
- `src/channels/index.ts` contains `import './teams.js';`
- `@chat-adapter/teams` is listed in `package.json` dependencies
Otherwise continue. Every step below is safe to re-run.
### 1. Fetch the channels branch
```bash
git fetch origin channels
```
### 2. Copy the adapter
```bash
git show origin/channels:src/channels/teams.ts > src/channels/teams.ts
```
### 3. Append the self-registration import
Append to `src/channels/index.ts` (skip if the line is already present):
```typescript
import './teams.js';
```
### 4. Install the adapter package (pinned)
```bash
pnpm install @chat-adapter/teams@4.27.0
```
### 5. Build
```bash
pnpm run build
```
## Credentials
Two paths — manual (Azure Portal) or auto (Teams CLI).
### Auto: Teams CLI
Requires Node.js 18+, a Microsoft 365 account with sideloading permissions, and a public HTTPS endpoint (ngrok, Cloudflare Tunnel, or similar).
1. Install the CLI:
```bash
npm install -g @microsoft/teams.cli@preview
```
2. Sign in and verify:
```bash
teams login
teams status
```
3. Create the Entra app, client secret, and bot regis...
Details
- Author
- nanocoai
- Repository
- nanocoai/nanoclaw
- Created
- 3 months ago
- Last Updated
- yesterday
- Language
- TypeScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
add-slack
Add Slack channel integration via Chat SDK.
29,545 Updated yesterday
nanocoai AI & Automation Solid
add-discord
Add Discord bot channel integration via Chat SDK.
29,545 Updated yesterday
nanocoai AI & Automation Solid
add-gchat
Add Google Chat channel integration via Chat SDK.
29,545 Updated yesterday
nanocoai AI & Automation Solid
add-telegram
Add Telegram channel integration via Chat SDK.
29,545 Updated yesterday
nanocoai AI & Automation Solid
add-github
Add GitHub channel integration via Chat SDK. PR and issue comment threads as conversations.
29,545 Updated yesterday
nanocoai