# Implement the reminders left in one module

Comment reminders turned into the working code their authors described, rather than deleted.

Category: Tech debt and deprecations
Source: https://letsship.ai/use-cases/implement-the-reminders-in-a-module
Published: 2026-08-25

## Goal

Implement the outstanding work described by reminder comments in one module.

## Acceptance criteria

- Each reminder becomes working code with a test
- The comment is removed only once its work is done
- Reminders that are no longer wanted are removed with a reason
- Nothing is deferred to a new reminder

## What lands as proof

A test per implemented reminder, so the comment is removed because the work exists, not because it was tidied.

## Prompt

Copy this to an agent to open the ticket:

```text
Create a Linear issue in my team and assign it to the SHIP agent.

Title: Implement the outstanding reminders in {module}

Description: Implement the outstanding work described by reminder comments in one module.

Acceptance criteria:
- Each reminder becomes working code with a test
- The comment is removed only once its work is done
- Reminders that are no longer wanted are removed with a reason
- Nothing is deferred to a new reminder

Before you create the issue, read this repository's reminder comments in one module and replace {module}. Quote them in the description.
```

## Questions

### What does the agent actually change?

The ticket is scoped to one outcome: implement the outstanding work described by reminder comments in one module. Work that serves that outcome is in scope, and anything outside it is left for a separate ticket, so the pull request stays reviewable.

### How do I know the work is done?

The pull request carries the evidence, not only the diff. Here that means each one becomes working code with a test, not a deletion, so a reviewer can confirm the result without reproducing the work locally.

### How much oversight does this need?

The run stops once the plan is written. Somebody reads the approach and approves it before any code exists, which is the cheapest moment to redirect the work.
