Back to list
JacobFV

git-workflow

by JacobFV

Agentic OS: An embodied AI agent framework with daemon-based unconscious processes and semantic routing

1🍴 0📅 Dec 22, 2025

SKILL.md


name: git-workflow description: Standard git workflow for feature development version: 1.0.0 tags:

  • git
  • version-control
  • development domains:
  • software-development
  • code-management

Overview

This skill covers the standard git workflow for developing features, fixing bugs, and managing code changes.

When to Use

  • Starting new feature work
  • Fixing bugs
  • Making code changes that should be tracked
  • Preparing code for review

Steps

  1. Check current status

    git status
    git branch
    
  2. Create feature branch (if not on one)

    git checkout -b feature/description
    
  3. Make changes incrementally

    • Small, focused commits
    • Clear commit messages explaining "why"
  4. Stage and commit

    git add <files>
    git commit -m "type: description
    
    Longer explanation if needed"
    
  5. Push and create PR

    git push -u origin feature/description
    

Watch Out For

  • Committing sensitive files (.env, credentials)
  • Large binary files
  • Committing unfinished work to main branch
  • Force pushing to shared branches

Commit Message Format

type: short description

Longer description explaining why this change was made,
not what was changed (the diff shows that).

Refs: #123

Types: feat, fix, docs, style, refactor, test, chore

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon