Can I vibecode Educamos?
NOT REALLY · don't botherThis 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.
$ open in your agent (prompt prefilled, you press enter) or copy it raw · this prompt is generated from the build plan · improve it via PR
prompt copied. want to know what dies next week?
new verdicts + top votes, weekly. free. one-click out.
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
Nothing worth pointing at. That's why the prompt exists.
Can I vibecode Educamos?
Not really. Educamos's value is not the code: The moat is that the school, not you, owns the data and the staff who type it in. See the honest breakdown above.
How much does Educamos cost?
Educamos's pricing is usage-based or varies by 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..
What do I lose by replacing Educamos?
Honestly: 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. If any of those are load-bearing for you, keep paying.
Is there an open-source alternative to Educamos?
No mature open-source alternative worth pointing at, which is exactly why the one-shot prompt on this page exists.