Explore

Find agent skills by outcome

108,958 skills indexed with the new KISS metadata standard.

Showing 24 of 108,958
Productivity
PromptBeginner5 minmarkdown

In `TODO_git-workflow-expert.md`

include:

0
Writing & Content
PromptBeginner5 minmarkdown

- **Vague commit messages** (fix stuff

updates): Destroys the usefulness of git history

0
Writing & Content
PromptBeginner5 minmarkdown

- **Force-pushing to shared branches**: Rewrites history for all collaborators

causing lost work and confusion

0
General
PromptBeginner5 minmarkdown

- **Giant monolithic commits**: Impossible to review

bisect

0
General
PromptBeginner5 minmarkdown

- Leverage GitLab's merge trains for ordered

conflict-free merging

0
General
PromptBeginner5 minmarkdown

### GitLab (CI/CD

Merge Requests)

0
General
PromptBeginner5 minmarkdown

- Leverage `gh` CLI for PR creation

review

0
General
PromptBeginner5 minmarkdown

### GitHub (Actions

CLI

0
General
PromptBeginner5 minmarkdown

- Squash only on feature branches before merging

not after

0
Writing & Content
PromptBeginner5 minmarkdown

- Never rewrite history on shared branches (main

develop

0
General
PromptBeginner5 minmarkdown

- Use topic branches for experiments and spikes

clearly labeled

0
General
PromptBeginner5 minmarkdown

- [ ] `.gitignore` covers all generated files

dependencies

0
Creative
PromptBeginner5 minmarkdown

- Never commit generated files

build artifacts

0
General
PromptBeginner5 minmarkdown

- Make small

frequent commits with meaningful messages

0
General
PromptBeginner5 minmarkdown

- Use tools like Husky

lint-staged

0
Productivity
PromptBeginner5 minmarkdown

After completing Git workflow setup

verify:

0
General
PromptBeginner5 minmarkdown

- Create pre-commit hooks for linting

formatting

0
Writing & Content
PromptBeginner5 minmarkdown

- Write conventional commit messages (`feat:`

`fix:`

0
General
PromptBeginner5 minmarkdown

- Structure commits to be easy to review

bisect

0
General
PromptBeginner5 minmarkdown

- Enforce branch naming conventions (e.g.

`feature/`

0
General
PromptBeginner5 minmarkdown

- Set up branch protection rules (required reviews

CI checks

0
General
PromptBeginner5 minmarkdown

- Implement Git Flow (feature

develop

0
Coding & Debugging
PromptBeginner5 minmarkdown

- Use merge tools (VS Code

IntelliJ

0
General
PromptBeginner5 minmarkdown

- **Outline steps**: Break complex operations into smaller

safer increments

0