chore

Automates small, low-risk codebase changes with commit/PR quality gates.

1|Updated Jun 17, 2026
One-click install
npx skills add https://github.com/Sfzmango/Maungs-agentic-toolbelt --skill chore-sfzmango
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: chore
Source: https://github.com/Sfzmango/Maungs-agentic-toolbelt/tree/main/plugins/maungs-agentic-toolbelt/skills/chore
Command: npx skills add https://github.com/Sfzmango/Maungs-agentic-toolbelt --skill chore-sfzmango

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Small, low-risk codebase changes like documentation fixes, config tweaks, typo corrections, and trivial dependency bumps don't need the full heavy orchestrator pipeline, but still require proper gating, scoped branching, and PR workflows that are tedious to execute manually without cutting corners on safety.

Core Features & Use Cases

  • Lightweight inline workflow: Complete small, single-concern changes with full commit/push/CI quality gates, no architect/developer/reviewer agent overhead.
  • Isolated concurrent mode: Use the --concurrently flag to run the chore in a separate git worktree off the default branch, avoiding conflicts with other active sessions editing the same shared checkout.
  • Safe auto-merge hatch: Use the --bypass flag (paired with --concurrently) to automatically merge the PR the moment CI passes, skipping only the human review gate for 100% safe trivial changes, never skipping test or quality checks.
  • Use Case: Fix a typo in the project README, update a CI workflow timeout value, or tweak a pre-commit hook configuration without spinning up the full multi-agent development pipeline.

Quick Start

Use the chore skill to fix the typo in the CONTRIBUTING.md file and open a summary-only pull request with the changes.

Frequently Asked Questions about chore

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I handle trivial chore PRs like typo fixes and config tweaks without running the full pipeline?

To handle trivial chore PRs without a full pipeline, use a lightweight inline workflow that enforces local quality gates, scoped file staging, and explicit commit/push confirmation for low-risk changes like typo fixes and config tweaks.

What is the safest way to auto-merge low-risk codebase changes after CI passes?

The safest way to auto-merge low-risk codebase changes is using a bypass flag paired with concurrent mode, which automatically merges the PR the moment CI passes while skipping only human review, never test or quality checks.

Can I run concurrent git workflows for documentation fixes without causing checkout conflicts?

Yes, you can run concurrent git workflows for documentation fixes without checkout conflicts by using an isolated concurrent mode flag that executes the chore in a separate git worktree off the default branch.

When should I avoid using a lightweight chore workflow for pull requests?

You should avoid using a lightweight chore workflow for pull requests when changes require architectural review, new test coverage, multi-file coordination, or have a high blast radius beyond single-concern maintenance tasks.

Does the chore workflow enforce local quality gates before pushing code maintenance changes?

Yes, the chore workflow enforces full local quality gates before pushing code maintenance changes, ensuring that even trivial dependency bumps and configuration tweaks pass required checks without cutting corners on safety.