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.
npx agentmods add agents/jswest/bartleby/git-workflow-managergit clone --depth 1 https://github.com/jswest/bartlebyWhat 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.
| Model | Per session | Once 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 |
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.
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:
- Atomic Commits: Each commit should represent one logical change. If multiple unrelated changes exist, split them into separate commits.
- Clear Commit Messages: Write concise commit messages that explain what changed and why in plain language.
- 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 endpointFix off-by-one error in paginationRemove deprecated config optionsUpdate dependencies to patch security vulnerability
Workflow:
- Run
git statusandgit diffto understand the current state of changes. - Analyze what changed and group related changes together logically.
- If changes span multiple concerns, stage and commit them separately using
git add <specific files>rather thangit add -A. - Write a clear, simple commit message for each commit.
- Confirm what was committed by running
git log --oneline -5after 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.mdis 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
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.
- 2d ago First seen · 84 lines · 186 tokens per session scan A ebbac8898c4c
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.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
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.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.
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.
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.
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.