docs: Add February 2026 changelog with Discord integration, Notification Tips, and bug fixes#237
docs: Add February 2026 changelog with Discord integration, Notification Tips, and bug fixes#237promptless[bot] wants to merge 16 commits intomainfrom
Conversation
…ps, and bug fixes
|
|
||
| **New Features:** | ||
|
|
||
| * **Discord Integration:** Connect your Discord server to trigger documentation updates from conversations. Mention @Promptless in any channel to request updates, or enable passive listening to automatically monitor specific channels. Promptless can also send notifications about new suggestions to your Discord channels. |
There was a problem hiding this comment.
Citation: Based on PR #1934 which fixes two bugs in GitHub OSS integration: 404 errors during _sync_open_pr_branch for fork-based PRs (fixed in server/agent/promptless_agent.py) and 403 errors when adding reactions/comments via read-only app token (fixed by using service account PAT across multiple files including server/backend/integrations/github/routes.py).
View source
|
|
||
| **New Features:** | ||
|
|
||
| * **Discord Integration:** Connect your Discord server to trigger documentation updates from conversations. Mention @Promptless in any channel to request updates, or enable passive listening to automatically monitor specific channels. Promptless can also send notifications about new suggestions to your Discord channels. |
There was a problem hiding this comment.
Citation: PR #1941 adds is_promptless_user() check in server/backend/integrations/github/routes.py to skip processing comments/reviews from Promptless service accounts (including promptless-for-oss), preventing citation comments from triggering recursive follow-on processing.
View source
fern/docs/changelogs/2026-02.md
Outdated
|
|
||
| * **Discord Integration:** Connect your Discord server to trigger documentation updates from conversations. Mention @Promptless in any channel to request updates, or enable passive listening to automatically monitor specific channels. Promptless can also send notifications about new suggestions to your Discord channels. | ||
|
|
||
| * **Notification Tips:** Promptless notifications now include tips at the bottom of GitHub PR comments, GitHub issue comments, and Slack messages. Tips are tailored to your connected integrations—covering dashboard features, Slack shortcuts, feedback options, and more. |
There was a problem hiding this comment.
Citation: Based on changes in server/notifications/slack_blocks.py - the format_diff_summary() function now accepts a max_chars parameter and truncates large diffs to stay under Slack's 3000 character limit for section blocks.
View source
|
|
||
| **New Features:** | ||
|
|
||
| * **Discord Integration:** Connect your Discord server to trigger documentation updates from conversations. Mention @Promptless in any channel to request updates, or enable passive listening to automatically monitor specific channels. Promptless can also send notifications about new suggestions to your Discord channels. |
There was a problem hiding this comment.
Citation: Added "PR context is retrieved correctly" based on PR #1937 which fixes the get_link tool failing for github_oss (Read-Only GitHub App) PR URLs. The fix ensures get_github_integration_by_owner() properly resolves GitHub integrations regardless of type.
View source
|
|
||
| * **Notification Tips:** Promptless notifications now include tips at the bottom of GitHub PR comments, GitHub issue comments, and Slack messages. Tips are tailored to your connected integrations—covering dashboard features, Slack shortcuts, feedback options, and more. | ||
|
|
||
| **Improvements:** |
There was a problem hiding this comment.
Citation: Based on PR #1946 which fixes credential retrieval in server/utils/sources/github.py - GitHub Cloud now uses get_github_app_credentials() while GitHub Enterprise uses credentials from integration info.
View source
|
|
||
| **New Features:** | ||
|
|
||
| * **Discord Integration:** Connect your Discord server to trigger documentation updates from conversations. Mention @Promptless in any channel to request updates, or enable passive listening to automatically monitor specific channels. Promptless can also send notifications about new suggestions to your Discord channels. |
There was a problem hiding this comment.
Citation: Based on PR #1945 which adds tips to outbound notifications. Key files: notifications/tips.py (tip definitions and eligibility logic), notifications/slack.py (Slack notification tips), triggers/github/routes.py (GitHub PR/issue comment tips).
View source
|
|
||
| * **Notification Tips:** Promptless notifications now include tips at the bottom of GitHub PR comments, GitHub issue comments, and Slack messages. Tips are tailored to your connected integrations—covering dashboard features, Slack shortcuts, feedback options, and more. | ||
|
|
||
| **Improvements:** |
There was a problem hiding this comment.
Citation: Based on PR #1952 which adds handlePaste function to src/app/new-task/page.tsx enabling clipboard image pasting into the task input box.
View source
|
|
||
| * **Read-Only GitHub App Reliability:** Fixed issues affecting open-source projects using the Read-Only GitHub App integration. PRs from forked repositories now sync correctly when processing follow-on instructions, comments are acknowledged with reactions, PR comments post as expected, citation comments no longer trigger recursive processing loops, and PR context is retrieved correctly. | ||
|
|
||
| * **Slack Notification Large Diff Handling:** Fixed Slack notifications failing or getting cut off when suggestions involve many file changes. Notifications now gracefully truncate the file list and show how many additional files were changed, while full details remain available in the attached file. |
There was a problem hiding this comment.
Citation: Based on PR #1956 which changes conflict_resolution_agent.py to pass conflict file paths instead of full diff contents, fixing the agent breaking on large diffs.
View source
| **New Features:** | ||
|
|
||
| * **Discord Integration:** Connect your Discord server to trigger documentation updates from conversations. Mention @Promptless in any channel to request updates, or enable passive listening to automatically monitor specific channels. Promptless can also send notifications about new suggestions to your Discord channels. | ||
|
|
There was a problem hiding this comment.
Citation: Discord integration feature from PR #1965. Adds bot mentions, passive channel listening, and Discord notifications (mirrors Slack functionality).
View source
|
|
||
| * **Paste Images into Task Input:** Paste images directly into the task input box from your clipboard. Take a screenshot (<kbd>Cmd</kbd>+<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>4</kbd> on Mac) and paste it—no need to save to a file first. | ||
|
|
||
| * **DCO Compliance for Open-Source Projects:** Promptless now automatically adds DCO sign-off to commits on open-source projects. Projects with DCO requirements—like those under the Linux Foundation or CNCF—work with Promptless out of the box. |
There was a problem hiding this comment.
Citation: Based on PR #1969 which adds automatic DCO sign-off to commits for the github_oss platform. Changes in server/utils/sources/github.py add _ensure_signed_off_by_trailer() and _build_commit_message_and_author() functions that automatically include Signed-off-by trailers when platform="github_oss". This enables compatibility with projects requiring DCO compliance like Helm and Linux Foundation projects.
View source
|
|
||
| **New Features:** | ||
|
|
||
| * **Discord Integration:** Connect your Discord server to trigger documentation updates from conversations. Mention @Promptless in any channel to request updates, or enable passive listening to automatically monitor specific channels. Promptless can also send notifications about new suggestions to your Discord channels. |
There was a problem hiding this comment.
Citation: Removed the "Notification Tips" entry from the changelog because PR #1959 deleted the tips module (server/notifications/tips.py). The PR description explicitly states: "Deleted the tips module (server/notifications/tips.py) entirely". Since this feature was removed before shipping, it should not be documented in the changelog.
View source
|
|
||
| * **Discord Integration:** Connect your Discord server to trigger documentation updates from conversations. Mention @Promptless in any channel to request updates, or enable passive listening to automatically monitor specific channels. Promptless can also send notifications about new suggestions to your Discord channels. | ||
|
|
||
| **Improvements:** |
There was a problem hiding this comment.
Citation: Documents new configurable GitHub PR comment trigger mode from PR #1984. Key changes in server/utils/config.py (defines GitHubPrCommentMode enum with mention_only and listen_all_with_aside modes), server/backend/integrations/github/routes.py (implements mode-based triggering and aside//aside prefix opt-out), and promptless-dashboard/src/app/settings/OrgSettingsTab.tsx (adds UI controls).
View source
|
/aside please don't see this |
|
|
||
| * **Smarter Duplicate Detection for GitHub Docs:** Promptless now detects open documentation PRs you've created yourself—if your changes are already covered by an open PR, Promptless skips creating duplicate suggestions and notifies you instead. | ||
|
|
||
| **Bug Fixes:** |
There was a problem hiding this comment.
Citation: PR #1991 adds _is_dot_path() helper and dot-file check in GithubTrigger.should_skip_agent_run() to skip PRs that only modify dot-directories.
View source
|
|
||
| **Improvements:** | ||
|
|
||
| * **Paste Images into Task Input:** Paste images directly into the task input box from your clipboard. Take a screenshot (<kbd>Cmd</kbd>+<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>4</kbd> on Mac) and paste it—no need to save to a file first. |
There was a problem hiding this comment.
Citation: Based on PR #2012 which enables dashboard interactivity while a PR is open. Key changes in BulkActionsBar.tsx (split showOpenPrButton from showMainActions), FileDiffEditor.tsx (removed prStatus !== null from isFileLockedForEditing), page.tsx (updated isPublished to only check terminal states), and lifecycle.py (added sync_edit_to_pr_branch() and _close_github_pr_for_suggestion() functions).
View source
|
|
||
| * **Automatic Dot-File Skipping:** Promptless now skips PRs that only contain changes to dot-directories (`.github/`, `.circleci/`, `.beads/`) or root-level dot-files (`.gitignore`, `.editorconfig`)—tooling and CI configuration changes that don't typically need documentation. | ||
|
|
||
| **Bug Fixes:** |
There was a problem hiding this comment.
Citation: Based on PR #1993 which adds diff_updated_at and diff_digest columns to track when suggestion content actually changes, rather than metadata updates. The API now maps diff_updated_at to updated_at in responses for accurate timestamps.
View source
|
|
||
| * **Accurate Suggestion Timestamps:** Timestamps now reflect when documentation content actually changed, not when metadata was last updated—keeping your suggestion list stable and correctly ordered. | ||
|
|
||
| **Bug Fixes:** |
There was a problem hiding this comment.
Citation: Based on PR #2032 which updates EscalateToCustomerTool in server/agent/tools/schemas.py to accept markdown-formatted messages and adds markdown_to_slack_mrkdwn() converter in server/notifications/slack_format.py for Slack-bound messages.
View source
fern/docs/changelogs/2026-02.md
Outdated
|
|
||
| * **Smarter Duplicate Detection for GitHub Docs:** Promptless now detects open documentation PRs you've created yourself—if your changes are already covered by an open PR, Promptless skips creating duplicate suggestions and notifies you instead. | ||
|
|
||
| * **Automatic Dot-File Skipping:** Promptless now skips PRs that only contain changes to dot-directories (`.github/`, `.circleci/`, `.beads/`) or root-level dot-files (`.gitignore`, `.editorconfig`)—tooling and CI configuration changes that don't typically need documentation. |
There was a problem hiding this comment.
Citation: PR #1991 implements dot-file skipping for GitHub PRs (server/triggers/github/routes.py), Bitbucket PRs (server/triggers/bitbucket/routes.py), and GitLab MRs (server/triggers/gitlab/routes.py). Updated changelog to mention "merge requests" alongside "PRs" so GitLab users know the feature applies to them too.
View source
|
|
||
| * **Dashboard Editing After PR Creation:** Keep editing suggestions in the dashboard after opening a docs PR—changes sync automatically to your PR branch. Closing a suggestion from the dashboard also closes the associated GitHub PR. | ||
|
|
||
| * **Paste Images into Task Input:** Paste images directly into the task input box from your clipboard. Take a screenshot (<kbd>Cmd</kbd>+<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>4</kbd> on Mac) and paste it—no need to save to a file first. |
There was a problem hiding this comment.
Citation: Based on PR #2039 which adds trigger pill UI components in SimplifiedPageHeader.tsx and utility functions in triggerPills.ts. The pills show trigger source with icons and support click-to-navigate to Triggers & Analysis tab.
View source
Open this suggestion in Promptless to view citations and reasoning process
Updates the February 2026 changelog with:
New Features:
Improvements:
Bug Fixes:
Trigger Events
Promptless/promptless PR #1934: github oss: fix branch sync 404 & write-op 403s (pr comments + eyes emoji)
Promptless Research (1 GitHub PR)
Agent Response
Promptless/promptless PR #1941: fix: check for oss service account when skipping PR follow on
Promptless Research (1 GitHub PR)
Agent Response
Promptless/promptless PR #1943: fix: truncate slack message for large diffs to be under 3000 chars
Promptless Research (1 GitHub PR)
Agent Response
Promptless/promptless PR #1937: refactor/fix: ensure get_link tool works with github_oss
Promptless Research (1 GitHub PR)
Agent Response
Promptless/promptless PR #1946: fix: pull github app creds for auto_merge_docs_pr
Promptless Research (1 GitHub PR)
Agent Response
Promptless/promptless PR #1945: feat: add tips to outbound notifications
Promptless Research (1 GitHub PR)
Agent Response
Promptless/promptless PR #1952: feat: allow pasting images into new task input box
Promptless Research (1 GitHub PR)
Agent Response
Promptless/promptless PR #1956: fix: large diffs breaking conflict resolution agent
Promptless Research (1 GitHub PR)
Agent Response
Promptless/promptless PR #1965: wip: discord integration for Peter's OpenClaw discord
Promptless Research (1 GitHub PR)
Agent Response
Promptless/promptless PR #1969: commit signoff for oss
Promptless Research (1 GitHub PR)
Agent Response
Tip: Send Promptless a meeting transcript in Slack to generate doc updates 📝