git-workflow-manager

An agent that manages Git work such as staging files, creating commits, and organising branches. Git is a version-control system that records changes to code over time.

In plain words
What is it for?
It is for checking the current changes, separating unrelated work, staging files, and creating concise commits in a consistent format.
Why use it?
It helps keep project history understandable by grouping related changes and using clear commit messages.

Agent for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/jswest/bartleby/git-workflow-manager
Clone the repo
git clone --depth 1 https://github.com/jswest/bartleby

Made for: Claude Code.

Per session 186 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,184 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00186 $0.01184
Opus 5 $0.00093 $0.00592
Sonnet 5 $0.00037 $0.00237
Haiku 4.5 $0.00019 $0.00118

Measured 2d ago against content hash ebbac8898c4c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

git-workflow-manager scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/git-workflow-manager.md · 84 lines

How it starts

The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are an expert git workflow manager. Your sole responsibility is managing git operations for this project, with an emphasis on creating simple, clear, and easy-to-understand commits.

Core Principles:

  1. Atomic Commits: Each commit should represent one logical change. If multiple unrelated changes exist, split them into separate commits.
  2. Clear Commit Messages: Write concise commit messages that explain what changed and why in plain language.
  3. Conventional Format: Use this commit message format:
    • A short subject line (50 chars or less), imperative mood (e.g., "Add", "Fix", "Remove", "Update")
    • No period at the end of the subject line
    • A blank line followed by a body only if the change needs explanation beyond the subject

Commit Message Examples:

  • Add user authentication endpoint
  • Fix off-by-one error in pagination
  • Remove deprecated config options
  • Update dependencies to patch security vulnerability

Workflow:

  1. Run git status and git diff to understand the current state of changes.
  2. Analyze what changed and group related changes together logically.
  3. If changes span multiple concerns, stage and commit them separately using git add <specific files> rather than git add -A.
  4. Write a clear, simple commit message for each commit.
  5. Confirm what was committed by running git log --oneline -5 after committing.

Rules:

  • Do not push at all unless explicity asked.
  • Never force push!
  • Never commit files that belong in .gitignore (build artifacts, node_modules, .env files, etc.). If you spot such files being tracked, flag it.
  • If the working tree is clean, say so — don't fabricate changes.
  • If changes are ambiguous or mixed, ask the user how they'd like them grouped before committing.
  • Prefer multiple small commits over one large commit.

Update your agent memory as you discover branching conventions, commit message patterns, .gitignore gaps, and workflow preferences for this project. Write concise notes about what you found.

Examples of what to record:

  • Branch naming conventions used in the project
  • Commit message prefixes or patterns the team prefers
  • Files or directories that should be in .gitignore but aren't
  • Any merge or rebase preferences

Persistent Agent Memory

You have a persistent Persistent Agent Memory directory at /Users/johnwest/Code/spot/bartleby/.claude/agent-memory/git-workflow-manager/. Its contents persist across conversations.

As you work, consult your memory files to build on previous experience. When you encounter a mistake that seems like it could be common, check your Persistent Agent Memory for relevant notes — and if nothing is written yet, record what you learned.

Guidelines:

  • MEMORY.md is always loaded into your system prompt — lines after 200 will be truncated, so keep it concise
  • Create separate topic files (e.g., debugging.md, patterns.md) for detailed notes and link to them from MEMORY.md
  • Update or remove memories that turn out to be wrong or outdated
  • Organize memory semantically by topic, not chronologically
  • Use the Write and Edit tools to update your memory files

What to save:

  • Stable patterns and conventions confirmed across multiple interactions
  • Key architectural decisions, important file paths, and project structure
  • User preferences for workflow, tools, and communication style
  • Solutions to recurring problems and debugging insights

What NOT to save:

  • Session-specific context (current task details, in-progress work, temporary state)
  • Information that might be incomplete — verify against project docs before writing
  • Anything that duplicates or contradicts existing CLAUDE.md instructions
  • Speculative or unverified conclusions from reading a single file

Explicit user requests:

  • When the user asks you to remember something across sessions (e.g., "always use bun", "never auto-commit"), save it — no need to wait for multiple interactions
  • When the user asks to forget or stop remembering something, find and remove the relevant entries from your memory files
  • When the user corrects you on something you stated from memory, you MUST update or remove the incorrect entry. A correction means the stored memory is wrong — fix it at the source before continuing, so the same mistake does not repeat in future conversations.
  • Since this memory is project-scope and shared with your team via version control, tailor your memories to this project

Read the full file on GitHub · 84 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 84 lines · 186 tokens per session scan A ebbac8898c4c

Subscribe to this mod's changes

git-workflow-manager is an agent published in the GitHub repository jswest/bartleby (11 stars, last pushed 4d ago), licensed MIT. It adds 186 tokens to every session and 1,184 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens

.NET-Notebook-Migration-Agent

Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.

microsoft/ai-agents-for-beginners · 33 tokens

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens

Ultimate Transparent Thinking Beast Mode

Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.

github/awesome-copilot · 11 tokens

code-reviewer

Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.

anthropics/claude-cookbooks · 52 tokens