Markdown Converter
Agent skill for markdown-converter
**Default Target Branch: When creating pull requests, always target the `develop` branch by default.** We follow the git flow pattern where features are merged to `develop` first, and then `develop` is merged to `main` for releases.
Sign in to like and favorite skills
Default Target Branch: When creating pull requests, always target the
branch by default. We follow the git flow pattern where features are merged to develop
develop first, and then develop is merged to main for releases.
When making commits in agent mode, we require all commit messages to follow the Conventional Commits specification. This helps automate changelogs, versioning, and makes it easier to understand the history of the project.
Format:
type(scope?): subject
type: feat, fix, docs, style, refactor, test, chore, etc.scope: (optional) area of codebase affectedsubject: short descriptionExamples:
feat: add support for new asset typefix: correct calculation for dividend yielddocs: update README with new API usagetest: add tests for portfolio handler