workflow-integration-git

Installation
SKILL.md

Git Workflow Skill

Provides git commit workflow following conventional commits specification. Includes artifact cleanup, commit formatting, and optional push.

Enforcement

Execution mode: Execute git commit workflow steps sequentially, delegating to script for artifact cleanup and commit formatting.

Prohibited actions:

  • Never commit secrets, credentials, or .env files
  • Never skip artifact cleanup step before committing (LLM must call detect-artifacts and act on results — the script detects but does not delete)
  • Never run raw git <subcommand> that relies on the current working directory.

Constraints:

  • Commit messages must follow conventional commits format: <type>(<scope>): <subject> — see standards/git-commit-standards.md for types, rules, and examples
  • Push only when explicitly requested via parameters
  • All git invocations MUST use git -C {worktree_path} <subcommand>. {worktree_path} is resolved from status.metadata.worktree_path in Step 0 of the Commit Changes workflow. See standards/worktree-handling.md for the worktree-specific application of this rule.
  • Temp files MUST be written under .plan/temp/ per project policy — never /tmp/.
Installs
1
GitHub Stars
5
First Seen
Jul 11, 2026
workflow-integration-git — cuioss/plan-marshall