Markdown Converter
Agent skill for markdown-converter
This Agents.md file provides comprehensive guidance for the OpenAI Codex, GitHub Copilot, and other AI agents working with this codebase.
Sign in to like and favorite skills
This Agents.md file provides comprehensive guidance for the OpenAI Codex, GitHub Copilot, and other AI agents working with this codebase.
/docs: Documentation files/src: Source code that the AI Agent should analyze
/app: App Router directory with route segments and layout files/auth: Authentication-related files (better-auth)
/components: React components and their Storybook stories that Agents.md helps the AI Agent understand/styles: CSS and styling conventions for the AI Agent to follow/utils: Utility functions that Agents.md documents for the AI Agent/public: Static assets (the AI Agent should not modify these directly)/tests: Test files that the AI Agent should maintain and extendThis project uses Better Auth for authentication. AI agents should be familiar with this system when working on authentication-related features.
The
/docs/better-auth.md file contains Better Auth's LLM-specific documentation designed to help AI models understand how to properly interact with the authentication system.
authClient.useSession() for session state management in React componentsref support via ComponentPropsWithRef when the component is a thin wrapper around a DOM element or another ref-forwarding component, and when consumers are likely to need direct access to that element (e.g., for focus, measurement, or scrolling).forwardRef as it will be deprecated.docs/component-list.md.docs/component-list.md when adding/removing components.docs/component-patterns.md when implementing complex components, pages, and layouts.the AI Agent should run tests with the following commands:
# Run all tests with the AI Agent npm test
When the AI Agent helps create a PR, please ensure it:
Before submitting changes generated by the AI Agent, run:
# Build check for the AI Agent implementations npm run build
All checks must pass before the AI Agent generated code can be merged. Agents.md helps ensure the AI Agent follows these requirements.