¿Puedo vibecodear Educamos?
NO TANTO · sigue valiendo pagarloThis is not an app you own, it is the system of record your school runs on. The grades, attendance marks, timetables and official report cards live on the school's tenant, entered by teachers you do not employ, under student data rules you do not control. A personal replacement would have nothing authoritative to read from: there is no public API you can point at, and scraping a minor's school portal is a bad idea on several axes at once. Even if you rebuilt the parent-facing screens perfectly, the moment a teacher posts a notice it would appear in Educamos and not in your build. The honest DIY here is a private tracker that sits beside it, not a replacement for it.
Build a local-only family school tracker called Boletin. Single user, no accounts, no cloud. Stack, no substitutions: - Node 20, TypeScript, Fastify for the server - SQLite via better-sqlite3, file at ./data/boletin.db, schema created on first run - Server-rendered HTML with a single Pico.css CDN link, plus a little vanilla JS. No React, no build step beyond tsc. Data model: - child: id, name, school_year - subject: id, child_id, name, teacher_name (optional), weight (optional) - grade: id, subject_id, date, label, score, max_score, notes - attendance: id, child_id, date, status (present, absent, late, excused), notes - note: id, child_id, date, source (teacher, school, me), title, body, pinned boolean - homework: id, subject_id, due_date, title, done boolean Features, in scope: - Child switcher in the header. - Dashboard per child: current average per subject (weighted if weights set), homework due in the next 7 days, last 5 notes, absence count this term. - Forms to add and edit every entity. Fast keyboard entry matters more than looks: one page per entity type with an inline add row at the top. - Subject detail page with a plain SVG line chart of grades over time, no chart library. - A weekly summary page rendered from the last 7 days of data, with a copy-to-clipboard plain text version. - CSV import for grades: columns subject,date,label,score,max_score. Show a preview and a row count before committing. - Export everything to JSON at /export, and a button that copies the SQLite file to ./backups with a timestamp. Explicitly out of scope, do not attempt: - Any connection to a school platform, no scraping, no login automation, no unofficial APIs - Multi-user, invites, or messaging - Push notifications, email, telemetry, analytics Details: - npm start runs the server on PORT from .env, default 3000. Commit .env.example only. - Seed script with one fictional child and two subjects so the UI is not empty on first run. - README: what this is, what it is not, and one blunt line saying grades must be typed in by hand because the school's system is the source of truth.
$ ábrelo en tu agente (prompt listo, tú das enter) o cópialo crudo
prompt copied. want to know what dies next week?
veredictos nuevos + votos de la semana. gratis. te sales en un clic.
Nobody chooses Educamos as a consumer. The school buys it because it wires together academic records, attendance, timetabling, family communication and often billing into one tenant that the administration and the teaching staff both live in, with student data handling that a school's legal obligations require somebody to be accountable for. Parents pay in attention, not money, and use it because that is where the grades appear. Ripping it out means retraining a whole staff and migrating years of academic records, which is exactly the kind of project schools do once a decade at most.
xAuthoritative data: teachers enter grades and attendance in Educamos, not in your app
xTwo-way messaging with teachers and the school office
xOfficial documents: report cards, absence justifications, enrolment and billing flows
xTimetable, room and substitution updates that come from the school's own scheduling
xEveryone else on it: the school, other parents, the administration staff
Nada que valga la pena señalar. Por eso existe el prompt.
¿Puedo vibecodear Educamos?
No tanto. El valor de Educamos no es el código. Mira el desglose honesto arriba.
¿Cuánto cuesta Educamos?
El precio de Educamos va por uso o cambia según el plan · Sold to schools by Grupo SM (SM Educamos); functional modules (academic, administrative, economic) are contracted separately, so there is no list price. Only a request-information form is offered..
¿Qué pierdo si reemplazo Educamos?
Con honestidad: Authoritative data: teachers enter grades and attendance in Educamos, not in your app; Two-way messaging with teachers and the school office; Official documents: report cards, absence justifications, enrolment and billing flows; Timetable, room and substitution updates that come from the school's own scheduling; Everyone else on it: the school, other parents, the administration staff. Si alguno de esos te sostiene el negocio, sigue pagando.
¿Hay una alternativa open source a Educamos?
No hay una alternativa open source madura que valga señalar. Por eso existe el prompt de esta página.