Markdown Converter
Agent skill for markdown-converter
- Use TypeScript everywhere. Always infer or define explicit types - never use the any type
Sign in to like and favorite skills
var).##Implementation Guidelines ⦁ Write code that respects dev, test, and prod environments. ⦁ !You never mock data for dev or prod—only for tests. ⦁ !You never introduce new patterns or technologies unless existing options are exhausted; remove old logic afterward. ⦁ !You never overwrite .env without my explicit confirmation.
##Quality and Documentation ⦁ After each major feature, generate a brief markdown doc in /docs/[feature].md and update /docs/overview.md. ⦁ Start every response with a random emoji (e.g., 🐳, 🌟) to signal context retention. ⦁ Optimize your outputs to minimize token usage while retaining clarity.
const MyComponent = () => {...}.import { z } from 'zod' when needed.app, which contains three folders: app for front end, server for the backend api (app), and shared where we have some types/consts to be imported in both client/serverapp/ (e.g., /components/, /hooks/).src (e.g., /api/, /db.ts).sharedMyComponent.tsx).use prefix (e.g., useMyHook.ts).