Hi - I am not a developer, so I am not sure what the correct term would be for this request, and there may be a way to do it already that I don’t know about.
I was hoping for a feature where we could ask the agent to develop a report of all the deployed changes. So, something like a deployment report that I can print to edit/share with our staff/users when new changes have been deployed to the app. It’s time-consuming to do this follow-up, and changes can happen so fast that this sometimes feels like the worst part of adding a new feature - the report about the feature to stakeholders.
It feels like the agent knows what happened, but I haven’t figured out how to prompt what I want yet.
1 Like
Here’s a suggested prompt
Could you create a file named "Changelog.md" that documents the recent changes in a structured format? Please follow this structure:
## [Version Number] - [yyyy-mm-dd]
### Added
- Description of added feature 1
- Description of added feature 2
### Fixed
- Description of bug fix 1
- Description of bug fix 2
### Changed
- Description of change 1
- Description of change 2
### Removed
- Description of removed feature 1
- Description of removed feature 2
Please only focus on creating this documentation without making any code modifications.
Replit Agent doesn’t automatically know what has been deployed or when the most recent deployment occurred. Therefore, I recommend establishing a workflow rule where you use this prompt right before deployment to ensure your documentation stays updated.
2 Likes
Thank you! I will try this!