Manizales de Pie uses an open-publication model: reports go live immediately and are labeled as unconfirmed. Curators moderate down (hiding spam); the community confirms accuracy by tapping the confirmation button on each card. This is the opposite of a gatekeeper model — holding a report back until a curator approves it makes the reviewer the bottleneck, and in a fast emergency information that arrives too late is the same as information that never arrived.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/astrxnomo/manizalesdepie/llms.txt
Use this file to discover all available pages before exploring further.
What can be reported
Aid Site
A physical location providing earthquake relief. Types: collection point (acopio), shelter (albergue), blood donation, medical post (PMU), or census/subsidy point.
Community Need
A case someone with tools or hands can address: debris removal, structural risk, animal rescue, or supplies needed by a household.
Animal
A lost, found, or sighted pet — with a photo, which is what actually makes someone recognize it. The board stays open until the animal is marked as reunited.
Resource Offer
Something a person already owns and is lending: dump truck, tools, free transport, warehouse space, or a spare room (home stay). Published for one week.
No account required
Reporting never requires a Google account. Every form — sites, needs, animals, and resource offers — submits anonymously. The only actions that require a signed-in curator account are hiding, deleting, or closing a record.Duplicate detection
When submitting a new site, the form callsSiteDAL.findNearby() — a PostGIS proximity query with a 120 m radius — before creating the record. If a nearby site is already on the map, the user sees it and can choose to confirm it instead of creating a duplicate:
Barrio requirement
Every site report must specify a barrio before the map opens for pin placement. The form enforces this:“Elige primero el barrio. Sin eso el punto queda en el centro de la ciudad, que es peor que no publicarlo.”The reason is practical: a reporter is standing on a street, with one bar of signal. Opening a map of the whole city and asking them to find their own block is the hard version of the question. Naming the barrio — something nobody in Manizales has to think about — is the easy version, and it reframes the map to street zoom so what remains is dragging the pin by metres, not kilometres.
Address field
The “¿Dónde exactamente?” field (address) is required on new site reports. The written reference carries the precision that a dragged pin approximates: the block, the corner, the landmark (“Frente a la panadería, casa 141…”).
The column in the database stays nullable so that existing rows without an address and bulk imports via Supabase MCP continue to validate. The requirement lives only where it can be answered — by the person standing at the location while reporting.
Publishing flow
New reports are published immediately upon submission (proposeSite in site.actions.ts). They appear on the map at once, with:
confirmed_count = 0- Status badge: “Sin confirmar”
- Marker opacity:
opacity-55
Seed data in
seed.sql inserts rows with published = false — but that is specifically because seed coordinates are approximations that haven’t been verified on the ground. User reports through the form go live immediately, following the open-publication policy.localStorage via useDraft("report:site", ...) until the form is successfully submitted. A phone call, a lost signal, or a back gesture will not erase what was already typed.
Confirmation
Each site card carries a one-tap confirmation button. Tapping it records aconfirmation_result and increments confirmed_count if the result is positive.
The three possible results:
| Result | Increments confirmed_count? | Meaning |
|---|---|---|
still_valid | ✅ Yes | I was there, it’s still operating |
changed | ✅ Yes | I was there, something changed (details updated) |
no_longer_valid | ❌ No | The place is gone or was never there |
no_longer_valid does not count as a confirmation. As stated in PLAN.md: “no_longer_valid no incrementa el contador. Decir que algo ya no existe no es evidencia de que exista.”
Once confirmed_count > 0, the marker renders at full opacity and the confidence badge changes from “Sin confirmar” to the confirmation count.