一键导入
git-workflow
Git add, commit and push workflow for BuscaMedicos. Streamlined commands with CI env vars for non-interactive Git operations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Git add, commit and push workflow for BuscaMedicos. Streamlined commands with CI env vars for non-interactive Git operations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Authentication patterns for BuscaMedicos web frontend. JWT handling, login, register, session persistence, and role-based redirection.
Nuxt 4 + Vue 3 + Vuetify frontend for BuscaMedicos. Pages, layouts, components, composables, and stores patterns.
Alembic migration workflow for BuscaMedicos. Create, autogenerate, and run migrations following the step2-step8 architecture.
Testing patterns for BuscaMedicos. Pytest with async support, fixtures, and project-specific test conventions.
Docker Compose development workflow for BuscaMedicos. Start/stop/verify containers, check logs, rebuild with --build flag.
Error handling patterns for BuscaMedicos FastAPI. HTTPException, custom exceptions, and consistent error response format.
| name | git-workflow |
| description | Git add, commit and push workflow for BuscaMedicos. Streamlined commands with CI env vars for non-interactive Git operations. |
| license | MIT |
Streamlined git workflow for committing and pushing changes. Uses CI-friendly environment variables to avoid interactive prompts.
Use this skill when:
git status
git add <files> # Add specific files
git add . # Add all changes
git add -A # Add everything including untracked
git commit -m "your message"
git push
Add these before git commands to avoid interactive prompts:
export CI=true
export GIT_TERMINAL_PROMPT=0
export GIT_EDITOR=':'
export GIT_SEQUENCE_EDITOR=':'
export GIT_MERGE_AUTOEDIT=no
export GIT_PAGER=cat
export PAGER=cat
# 1. Check what changed
git status
# 2. Stage specific files
git add path/to/file1 path/to/file2
# 3. Commit with message
git commit -m "feat: add new feature"
# 4. Push
git push
git add <files> && git commit -m "message"
git commit --amend -m "new message"
git push --force-with-lease
$env:VAR='value' formatgit status first: Before adding, see what's changed.gitignore patterns or use Git LFS for files > 50MB<type>: <short description>
- <change 1>
- <change 2>
Types: feat, fix, docs, refactor, test, chore
Example:
feat: add user authentication endpoints
- Add login endpoint
- Add register endpoint
- Add JWT token validation