Agent skill · Security

oma-scm

SCM (software configuration management) and Git: branching, merges, conflicts, worktrees, baselines, audit readiness, plus Conventional Commits and safe staging.

first-flukegithub.com/first-flukeGitHub ↗
claude-codecodexcursorMIT
Install
npx skills add first-fluke/oh-my-agent --skill oma-scm --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 4
SKILL.md size: 17 KB
Bundled scripts: none
Path: .agents/skills/oma-scm/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,204
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Software configuration management: SCM (`oma-scm`) ## Scheduling ### Goal Manage Git and software configuration management safely: commits, branches, merges, worktrees, releases, baselines, audit posture, CODEOWNERS, and Conventional Commits. ### Intent signature - User asks to commit, stage, branch, merge, rebase, cherry-pick, tag, release, resolve conflicts, manage worktrees, inspect SCM posture, or apply Conventional Commits. - User needs safe Git operations with explicit file staging, secret awareness, and CM governance. This skill is the **single** place for **configuration management (CM)** on a software repo and for **Conventional Commits** / safe staging. ### When to use - **Commits:** “commit this”, `/scm`, message type/scope, splitting staged changes into multiple commits. - **CM / Git:** branching (gitflow, GitHub Flow, GitLab Flow, trunk-based), protected branches, merge queue, merge conflicts, rebase, cherry-pick, worktrees, submodules/subtrees, tags and releases. - **Governance:** issue/ADR links, breaking-change footers, changelog or release-tool alignment. - **Audit posture:** signed commits, CI before merge, secret-sensitive paths. ### When NOT to use - Implement

What's inside
Steps it walks through
  1. Scheduling
  2. Goal
  3. Intent signature
  4. When to use
  5. When NOT to use
  6. Expected inputs
  7. Expected outputs
  8. Dependencies
  9. Control-flow features
  10. Structural Flow
  11. Entry
  12. Scenes
  13. Transitions
  14. Failure and recovery
Ships with 3 files
  • resources/codeowners-playbook.md
  • resources/conventional-commits.md
  • resources/onboarding-risk-signals.md
Commands it runs
git status -sb
git diff --staged
git log --oneline -5
git add <specific-files>
git commit -m "$(cat <<'EOF'
git status
cat > "$msgfile" <<'EOF'
git commit -F "$msgfile"
rm -f "$msgfile"
git status -sb                 # ahead/behind vs upstream
More from oh-my-agent
All skills →
About this skill
What does the oma-scm skill do?

SCM (software configuration management) and Git: branching, merges, conflicts, worktrees, baselines, audit readiness, plus Conventional Commits and safe staging.

How do I install it?

Run `npx skills add first-fluke/oh-my-agent --skill oma-scm --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From first-fluke/oh-my-agent, a repository with 1,204 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going