Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
21
- Respond in Japanese.
Sign in to like and favorite skills
README.md, LICENSE, mise.toml (tool versions), .devcontainer/ (container setup).src/ for application code and tests/ for automated tests when adding functionality.assets/ and docs in docs/ (create as needed). Co-locate small module-specific fixtures under tests/fixtures/<module>/.mise install -y run automatically.mise install -y installs versions from mise.toml (currently Node). Example: node --version to verify.npm ci for clean installs, npm test to run tests, npm run build for builds (add scripts in package.json).camelCase for variables/functions, PascalCase for classes, kebab-case for filenames and CLI commands.npx prettier -w . before PRs.tests/ and mirror directory names.<name>.test.ts|js. Aim for clear, isolated tests with minimal mocks.npm test -- --watch locally; add coverage with npm test -- --coverage and keep deltas green.feat: add user session store, fix: handle empty input.Closes #123 when applicable..env.local and provide .env.example when config is needed.XDG_STATE_HOME and fixes permissions so mise can write state. If tools change, update mise.toml and run mise install -y..devcontainer/: 開発コンテナ設定一式。devcontainer.json(Dev Containers 設定)、Dockerfile(Ubuntu ベース、TZ/locale/ユーザー設定)。mise.toml: プロジェクト固有のツール管理(例: Node のバージョン指定)。.devcontainer/mise/config.toml: ユーザー向けのグローバル設定(XDG)。コンテナ内 ~/.config/mise/config.toml に bind。README.md, LICENSE。現時点でアプリ用の src/ や test/ は未配置(必要に応じて追加)。devcontainer build --workspace-folder .: 開発コンテナのイメージをビルド。devcontainer up --workspace-folder .: 開発コンテナを起動(VS Code からも同等操作可)。docker run --rm -it -v "$PWD":/workspaces -w /workspaces mcr.microsoft.com/devcontainers/base:ubuntu zshmise install: mise.toml に基づきツールを取得。PATH は /mnt/mise-data/shims を含むため追加設定は不要。sample-script.sh)。feat/..., fix/..., docs/...。test/ を作成し、スモークテスト + make test などで統一実行を推奨。docs: add README)。種別: feat, fix, docs, chore, refactor, ci。短く現在形で要点を記述。devcontainer.json のボリューム /mnt/mise-data はツール用。権限は postCreateCommand で設定されるため手動変更不要。