aaravriyer193
- 10 skills
- 0 followers
- 23 hours ago last updated
- ▌ Generating Pdfs · aaravriyer193Creates PDF documents from scratch (reports, invoices, one-pagers) or from HTML content. Use whenever the deliverable needs to be a PDF, or when a polished printable document is expected instead of markdown.
- ▌ Visualizing Data · aaravriyer193Creates charts and graphs from data — for a report, a slide, or as a standalone image. Use whenever the task needs a visual representation of numbers, not just a table.
- ▌ Building Web Apps · aaravriyer193Scaffolds and builds a web application from scratch. Use whenever the task is "build me a site/app/dashboard" with no existing codebase to work from — decides between a real framework and plain static HTML.
- ▌ Generating Word Docs · aaravriyer193Creates Word documents (.docx) for reports, briefs, letters, and other documents meant to be read rather than edited as code. Use whenever the deliverable is a written document and a polished, human-readable format is expected instead of markdown.
- ▌ Serving Static Sites · aaravriyer193Serves plain static HTML/CSS/JS files to the user when a full framework is overkill. Use for a single landing page or quick prototype — never use python -m http.server, it exposes a directory listing.
- ▌ Generating Slide Decks · aaravriyer193Creates PowerPoint presentations (.pptx) — pitch decks, board updates, summaries as slides. Use when the user asks for a deck, slides, or presentation.
- ▌ Verifying With Browser · aaravriyer193Confirms a built UI or web page actually works before declaring the task done. Use after building or changing any frontend, page, or app with a UI — a server starting is not proof the page renders correctly.
- ▌ Generating Spreadsheets · aaravriyer193Creates Excel spreadsheets (.xlsx) with formatted data, formulas, multiple sheets, or embedded charts. Use when the deliverable is a spreadsheet or the user asks for data in Excel.
- ▌ Debugging Systematically · aaravriyer193Investigates and fixes a bug, error, or unexpected behavior methodically instead of guessing. Use whenever the task is "this is broken" or "X isn't working" rather than building something new.
- ▌ Running Background Tasks · aaravriyer193Starts a long-running process (dev server, watcher) or a slow one-shot job (big install/build) without blocking the turn, and checks on it later. Use whenever a shell command wouldn't finish quickly on its own.