Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Sign in to like and favorite skills
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
重要:
commit-creatorエージェントを利用してください。このエージェントは変更内容を自動的に分析し、適切なコミットメッセージを生成します。pr-creatorエージェントを利用してください。このエージェントはコミット履歴から適切なPR説明を生成します。TypeScriptコードや関連するファイルを変更した場合、プルリクエストを作成する前に以下のチェックを実行してください:
テストの実行:
npm run test:run
npm testはwatchモードで動作するため、CI環境ではtest:runを使用ビルドの実行:
npm run build
型チェック:
npm run typecheck
リンターの実行:
npm run lint
npm run lint:fix で修正フォーマッターの実行:
npm run format
推奨フロー:
# すべてのチェックを順番に実行 npm run typecheck && npm run lint && npm run format && npm run test:run && npm run build
これらのチェックに失敗がある場合は、プルリクエストを作成せずに問題を修正してください。