Scouttlo
All ideas/devtools/Una plataforma SaaS que detecte, etiquete y permita gestionar issues 'stale' automáticamente en proyectos de desarrollo, integrándose con GitHub y otras plataformas similares.
GitHubB2Bdevtools

Una plataforma SaaS que detecte, etiquete y permita gestionar issues 'stale' automáticamente en proyectos de desarrollo, integrándose con GitHub y otras plataformas similares.

Scouted 8 hours ago

6.5/ 10
Overall score

Turn this signal into an edge

We help you build it, validate it, and get there first.

Go from idea to plan: who buys, what MVP to launch, how to validate it, and what to measure before spending months.

Extra context

Learn more about this idea

Get a clearer explanation of what the opportunity means, the current problem behind it, how this idea solves it, and the key concepts involved.

Share your email to view this expanded analysis.

Score breakdown

Urgency7.0
Market size6.0
Feasibility8.0
Competition5.0
Pain point

Dificultad para gestionar y priorizar issues abiertos sin actividad en repositorios de software.

Who'd pay for this

Equipos de desarrollo de software, mantenedores de proyectos open source y empresas con repositorios activos.

Source signal

"Open issues untouched for 90+ days surface as "stale" in the dashboard so maintainers can decide to close or re-classify instead of leaving a growing queue."

Original post

[AI-READY] Flag stale open issues (no activity > 90 days)

Published: 8 hours ago

Repository: coleam00/GitHubIssueTriager Author: coleam00 ## Intent Open issues untouched for 90+ days surface as "stale" in the dashboard so maintainers can decide to close or re-classify instead of leaving a growing queue. ## Done when - [ ] Dashboard shows a "Stale" count card alongside Open/Closed/Classified - [ ] `/issues` filter adds a "stale" toggle - [ ] Issues detail page shows a "Stale since {date}" badge when applicable - [ ] Staleness is computed from `updated_at` (GitHub's last-activity timestamp), not `created_at` ## Constraints - Do not add a new column or migration. Compute in the query. - "Stale" threshold is 90 days — define it as a single const and reuse; don't hardcode `90` in multiple places. ## Entry points - `src/lib/db.ts` - `src/app/page.tsx`, `src/app/issues/page.tsx`, `src/app/issues/[number]/page.tsx` - `migrations/001_init.sql` for column reference ## Non-goals - Auto-closing stale issues - Notifications / slack integration