# gsd-list-milestones
> Display completed milestones from the MILESTONES.md registry
- Author: Rodolfo Castelo M.
- Repository: shoootyou/get-shit-done-multi
- Version: 20260201193324
- Stars: 8
- Forks: 0
- Last Updated: 2026-02-06
- Source: https://github.com/shoootyou/get-shit-done-multi
- Web: https://mule.run/skillshub/@@shoootyou/get-shit-done-multi~gsd-list-milestones:20260201193324
---
---
name: gsd-list-milestones
description: Display completed milestones from the MILESTONES.md registry
allowed-tools: Read, Bash
---
Display completed milestones from the MILESTONES.md registry.
Purpose: Show milestone history without scanning filesystem.
Output: Formatted list of completed milestones with key accomplishments.
@{{PLATFORM_ROOT}}/get-shit-done/references/ui-brand.md
Registry file:
- `.planning/MILESTONES.md` — Milestone completion registry
Check if milestone registry exists using bash:
```bash
if [ ! -f .planning/MILESTONES.md ]; then
echo ""
echo "No milestones completed yet."
echo ""
echo "Complete your first milestone with:"
echo " {{COMMAND_PREFIX}}complete-milestone"
echo ""
exit 0
fi
```
If registry doesn't exist: Show friendly message and exit.
If registry exists: Continue to display step.
Display milestone history from registry:
```bash
echo ""
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
echo " GSD ► MILESTONE HISTORY"
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
echo ""
# Display registry content
cat .planning/MILESTONES.md
echo ""
echo "───────────────────────────────────────────────────────────────"
echo ""
echo "Archived milestones are in: .planning/history/"
echo ""
echo "To view archived files:"
echo " ls .planning/history/v1.0/"
echo " cat .planning/history/v1.0/ROADMAP.md"
echo ""
echo "To start new milestone:"
echo " {{COMMAND_PREFIX}}new-milestone"
echo ""
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
```
- [ ] Registry existence checked before display
- [ ] Friendly message if no milestones completed yet
- [ ] MILESTONES.md content displayed directly (no parsing)
- [ ] Helpful bash commands shown for accessing archives
- [ ] User knows next command (complete-milestone or new-milestone)
- [ ] Template variables ({{COMMAND_PREFIX}}) used for cross-platform support