General
PromptBeginner5 minmarkdown
<h1 align="center">
<a href="https://prompts.chat">
163
1. Run `git status` to identify all modified, added, and deleted files.
Loading actions...
<a href="https://prompts.chat">
TypeScript and ESLint rules that MUST be followed when creating, modifying, or reviewing any file under apps/frontend/, including .ts, .tsx, .js, and .jsx files. Also apply when discussing frontend linting, type safety, or ESLint configuration.
risks
Run the following steps to stage and commit all changes in the current git repository with a professional commit message.
git status to identify all modified, added, and deleted files.git diff and git diff --cached to understand exactly what changed.git log --oneline -5 to match the existing commit message style of this repo.git add on all relevant changed files. Avoid staging these files — warn the user if they are present:
.env filessettings.local.json02-Eve-ng-Setup/eveng-mcp/git status after the commit to confirm a clean working tree.Do not push to remote. Do not amend existing commits. If there is nothing to commit, say so clearly.