Labsco
microsoft logo

slack-to-teams

✓ Official926

by microsoft · part of microsoft/work-iq

Sub-skill of microsoft-365-agents-toolkit. Routed expert system with 100+ micro-expert files for migrating Slack bots to Teams, cross-platform bridging, and dual-platform bot development. USE FOR: migrating Slack bot to Teams, adding Teams support to Slack bot, building dual-platform bots, converting Block Kit to Adaptive Cards, identity/OAuth bridging, deploying bots to Azure or AWS, configuring AI model providers. DO NOT USE FOR: general web development, non-bot projects, standalone Teams deve

🧰 Not standalone. This skill ships with microsoft/work-iq and only works together with that tool — install the tool first, then add this skill.

This is the playbook your agent receives when the skill activates — you don't need to read it to use the skill, but it's here to audit before installing.

Slack to Teams Expert System

A routed expert system with 100+ micro-expert files for migrating Slack bots to Teams and building cross-platform bots.

Parent skill: For ATK CLI setup and routing, see ../SKILL.md. For local testing, see ../test-playground/test-playground.md or ../test-teams/test-teams.md. For cloud deploy, see ../provision-deploy/provision-deploy.md. For troubleshooting, see ../troubleshoot/troubleshoot.md.

When to Use

  • Building a new Slack bot, Teams bot, or dual-platform bot
  • Adding Teams support to an existing Slack bot (or vice versa)
  • Migrating a bot between platforms
  • Deploying a bot to Azure or AWS
  • Configuring AI model providers for a bot
  • Converting UI between Block Kit and Adaptive Cards
  • Bridging identity, events, files, or transport between platforms
  • Making a Teams bot project compatible with Microsoft Agents Toolkit (m365agents.yml, env/, appPackage placeholders)

Procedure

Step 1: Determine project type

Assess whether the developer has an existing codebase or is starting fresh.


New Project Flow

1a: Platform selection

Ask the developer which platform(s) to support:

  • Slack + Teams (dual-platform)
  • Slack only
  • Teams only

1b: Load the expert system

  1. Read experts/index.md — the root router.
  2. Execute the pre-task interview defined in that file.
  3. Route based on platform choice:

1c: Architecture setup

  1. Read cross-platform-architecture (even for single-platform — establishes patterns for adding a second platform later).
  2. Let the domain router and advisor take over.
  3. Write a PLAN.md in the target project root with platform, features, experts loaded.

1d: Implementation

Follow the advisor's or domain router's output. Implement feature by feature:

  1. Pick the next feature from the prioritized list.
  2. Load the expert(s) specified for that feature.
  3. Implement using the expert's patterns and rules.
  4. Verify against the expert's pitfalls section.

Existing Project Flow

2a: Analyze the project

Run these four sub-analyses in parallel:

Detect language — Scan for package.json+tsconfig.json (TypeScript), pom.xml/build.gradle (Java), *.csproj/*.sln (C#), go.mod (Go), requirements.txt/pyproject.toml (Python), Gemfile (Ruby), Cargo.toml (Rust).

Detect current platform — Scan dependencies for SDK indicators:

  • Slack: @slack/bolt, @slack/web-api, slack_bolt, app.message, app.command, ack()
  • Teams: @microsoft/teams-ai, botbuilder, TeamsActivityHandler, app.turn, Adaptive Cards

Detect features — Scan for slash commands, Block Kit/Adaptive Cards, action handlers, OAuth, file upload/download, scheduling, threading, AI/LLM calls, proactive messages.

Detect architecture — Scan for web framework (Express, Fastify, etc.), hosting target (Azure, AWS, Docker), cloud provider, architecture pattern (single bot, dual-bot, monolith).

2b: Language gate

Classify the detected language into SDK tiers:

TierLanguagesGuidance
1: Full SDKTypeScript / JavaScriptFull expert system available
2: AdaptPythonBoth SDKs exist — adapt TS patterns. Load bolt-python, teams-python, python-cross-platform
3: Split SDKJava, C#One platform has SDK, other needs REST. Load bolt-java or teams-dotnet + rest-only
4: No SDKGo, Ruby, RustREST-only for both. Load rest-only

2c: Expert coverage gap analysis

  1. Read experts/analyzer.md.
  2. Execute the analyzer workflow: scan manifests, dependencies, source files.
  3. Cross-reference detected tech against existing experts.
  4. Present gap analysis — covered vs uncovered technologies.

2d: Build missing experts (if needed)

  1. Read experts/builder.md.
  2. For each gap: analyze project usage → read package source → draft expert → validate → wire into routing.
  3. Use experts/_expert-ts.md as the template.

2e: Load the expert system

  1. Read experts/index.md — the root router.
  2. Execute the pre-task interview, pre-filling with analysis results from 2a.
  3. Route based on detected platform and task intent:
    • Has Slack, wants Teams → Bridge domain
    • Has Teams, wants Slack → Bridge domain
    • Has both → Route by task (bridge refinement, deploy, models, etc.)
    • Has neither → Ask which platform(s) to target
  4. Load cross-platform-advisor if bridging. Feed analysis results into Phase 1.

2f: Architecture and implementation

  1. Read cross-platform-architecture.
  2. Write a PLAN.md with analysis results, routing decisions, and feature migration order.
  3. Implement feature by feature using the advisor's prioritized list.

Agents Toolkit Compatibility

For ATK-compatible project structure (m365agents.yml, env/ files, appPackage), see the parent skill:

For Teams manifest schema and packaging, see runtime.manifest-ts.

Error Recovery

If the expert system fails to cover a topic:

  1. Read experts/fallback.md.
  2. Phase 1: Re-scan all domain routers for missed experts.
  3. Phase 2: Web-search for remaining knowledge gaps.
  4. Consider creating a new expert using experts/builder.md.

Expert Domains

DomainIndexDescription
Slackexperts/slack/index.mdBolt framework, events, OAuth, commands, UI, CLI
Teamsexperts/teams/index.mdTeams AI SDK, Adaptive Cards, Graph, MCP, A2A, deploy
Bridgeexperts/bridge/index.md27 cross-platform conversion experts (the core differentiator)
Deployexperts/deploy/index.mdAzure & AWS deployment walkthroughs
Modelsexperts/models/index.mdAI model providers (OpenAI, Anthropic, Bedrock, etc.)
Convertexperts/convert/index.mdLanguage conversion to TypeScript
Securityexperts/security/index.mdInput validation, secrets management

Platform Comparison Docs

Reference guides for side-by-side platform comparison: