Releases: hempun10/devdaily
Releases · hempun10/devdaily
Release list
v0.6.1 — Slack Webhook Formatting Fix
Fixed
- Slack webhook formatting — Standup messages sent to Slack via
--send/--slacknow correctly render bold, italic, and other formatting. Previously, raw Markdown syntax (e.g.**bold**) was sent directly into Slack'smrkdwnblocks, which don't support double-asterisk bold.
The notification pipeline now converts Markdown → Slack mrkdwn format using the existing formatOutput() formatter before sending:
| Markdown | Slack mrkdwn |
|---|---|
**bold** |
*bold* |
*italic* |
_italic_ |
~~strike~~ |
~strike~ |
[text](url) |
<url|text> |
## Header |
*Header* |
Full Changelog: v0.6.0...v0.6.1
v0.6.0
v0.5.3
v0.5.2
v0.5.1
Snapshot and Journal
What's Changed
- [FIX]: Improve context recovery, file detection, add tests by @hempun10 in #2
- refactor: Standup context builder + PM integration fixes & test report by @hempun10 in #3
- feat: add persistent work journal with auto-snapshots and context recovery by @hempun10 in #4
Full Changelog: v0.3.0...v0.5.0
PM tools connections
Full Changelog: v0.4.0...v0.4.0
v0.3.0 - Smart Context Awareness
What's New
🧠 Context Analyzer
- Branch → Ticket Correlation: Automatically extracts ticket IDs from branch names (JIRA-123, #123, LINEAR-123)
- Work Categorization: Analyzes changed files to identify work areas (frontend, backend, infra, docs, tests)
- Time Tracking: Calculates work session duration from commit timestamps
📊 Enhanced Standups
- New
--contextflag shows detailed work analysis with visual progress bars - AI now uses work categories and tickets for better summaries
- Stats include primary work area
⚙️ IDE Autocomplete
- JSON Schema added for
.devdaily.jsonconfig files - Get autocomplete and validation in VS Code and other editors
🔧 Expanded Config
- PR defaults:
defaultReviewers,defaultLabels,defaultAssignees,titleFormat - Standup options:
groupBy,sections,scheduleTime,scheduleDays
See CHANGELOG.md for full details.
Install
npm install -g devdaily-aiv0.2.0 - PR Templates, Notifications & More
What's New
🎯 PR Template Support
- Auto-detect
.github/PULL_REQUEST_TEMPLATE.md - AI fills template sections based on commit analysis
- Terminal preview with
--previewflag - Interactive mode for labels, reviewers, assignees
📢 Notifications
- Slack webhook integration (
--slack) - Discord webhook integration (
--discord) - Easy setup with
devdaily init --notifications
🛠️ Developer Experience
- New
devdaily configcommand - New
devdaily doctorfor diagnostics - New
devdaily initsetup wizard - Improved error handling
🔧 Technical
- Upgraded to new GitHub Copilot CLI
- TypeScript strict mode compliance
- Fixed CI typecheck errors
See CHANGELOG.md for full details.