I'm a Senior Software Engineer at Platzi, Latin America's largest tech education platform. I design and operate the LLM-powered systems that generate and evaluate the educational content students interact with every day: placement tests, interactive challenges, self-assessments, exam questions, and the skill taxonomy underneath them all.
–
My path to AI engineering came through frontend. I spent five years building Platzi’s product surface (micro-frontend architecture, checkout, growth, B2B) before moving into prompt and context engineering full-time. That product foundation is what lets me build AI systems that actually serve real students, not just impressive demos. Outside of work, I teach AI, prompt engineering, and web development in Spanish as @musarte.dev on Instagram.
import Developer from "./Developer";
class Mus extends Developer {
constructor() {
super();
this.role = "Senior Software Engineer";
this.company = "Platzi";
this.stack = ["Python", "TypeScript", "Langfuse"];
this.teachesAs = "@musarte.dev";
}
buildChallenge(course) {
return this.llm.generate({ course, type: "mcq" });
}
shareWhatILearn(topic) {
return this.instagram.post(topic);
}
}
export default new Mus();