Node Slack Sdk: @slack/[email protected] Release

Release date:
February 10, 2026
Previous version:
@slack/[email protected] (released November 21, 2025)
Magnitude:
63 Diff Delta
Contributors:
4 total committers
Data confidence:
Commits:

43 Features Released with @slack/[email protected]

Top Contributors in @slack/[email protected]

dependabot-bot
mwbrooks
github-actions[bot]
lukegalbraithrussell

Directory Browser for @slack/[email protected]

All files are compared to previous version, @slack/[email protected]. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Minor Changes

  • f1fb7bf: feat: add thinking steps types

Added types for Thinking Steps features:

  • Block types: PlanBlock and TaskCard for displaying task progress in messages
  • Chunk types: MarkdownTextChunk, PlanUpdateChunk, TaskUpdateChunk for streaming
  • Source types: UrlSourceElements for displaying sources within task cards

Related PRs:

  • #2471 - add task_card and plan blocks

### Example

  await client.chat.postMessage({
    channel: CHANNEL_ID,
    text: "Task progress update",
    blocks: [
      {
        type: "plan",
        plan_id: "plan-123",
        title: "My Task",
        tasks: [
          {
            type: "task_card",
            task_id: "task-124",
            title: "Task 1",
            status: "complete",
          },
          {
            type: "task_card",
            task_id: "task-125",
            title: "Task 2",
            status: "pending",
          },
        ],
      },
    ],
  });