Git and workspace operations for active development workflows.
Sanctum handles the practical side of development: commits, PRs, documentation updates, and version management. It’s the plugin you’ll use most during active coding.
/plugin install sanctum@claude-night-market
Skill Description When to Use
git-workspace-reviewPreflight repo state analysis Before any git operation
file-analysisCodebase structure mapping Understanding project layout
commit-messagesConventional commit generation After staging changes
pr-prepPR preparation with quality gates Before creating PRs
pr-reviewPR analysis and feedback Reviewing others’ PRs
doc-consolidationMerge ephemeral docs Consolidating LLM-generated docs
doc-updatesDocumentation maintenance Syncing docs with code
test-updatesTest generation and enhancement Maintaining test suites
update-readmeREADME modernization Refreshing project entry points
version-updatesVersion bumping Managing semantic versions
workflow-improvementWorkflow retrospectives Improving development processes
tutorial-updatesTutorial maintenance Keeping tutorials current
Command Description
/git-catchupGit repository catchup
/commit-msgDraft conventional commit message
/prPrepare PR with quality gates
/pr-reviewEnhanced PR review
/fix-prAddress PR review comments
/do-issueFix GitHub issues systematically
/fix-workflowImprove recent workflow
/merge-docsConsolidate ephemeral docs
/update-docsUpdate documentation
/update-pluginsAudit and sync plugin.json registrations
/update-readmeModernize README
/update-testsMaintain tests
/update-tutorialUpdate tutorial content
/update-versionBump versions
/update-dependenciesUpdate project dependencies
/create-tagCreate git tags for releases
/resolve-threadsResolve PR review threads
Agent Description
git-workspace-agentRepository state analysis
commit-agentCommit message generation
pr-agentPR preparation specialist
workflow-recreate-agentWorkflow slice reconstruction
workflow-improvement-*Workflow improvement pipeline
dependency-updaterDependency version management
Hook Type Description
post_implementation_policy.pySessionStart Requires docs/tests/readme updates
verify_workflow_complete.pyStop Verifies workflow completion
session_complete_notify.pyStop Toast notification when awaiting input
# Stage changes
git add -p
# Review workspace
Skill(sanctum:git-workspace-review)
# Generate commit message
Skill(sanctum:commit-messages)
# Apply
git commit -m "<generated message>"
# Run quality checks first
make fmt && make lint && make test
# Prepare PR
/pr
# Creates:
# - Summary
# - Change list
# - Testing checklist
# - Quality gate results
/fix-pr
# Claude will:
# 1. Read PR comments
# 2. Triage by priority
# 3. Implement fixes
# 4. Resolve threads on GitHub
/do-issue 42
# Uses subagent-driven-development:
# 1. Analyze issue
# 2. Create plan
# 3. Implement fix
# 4. Test
# 5. Prepare PR
Most sanctum skills depend on git-workspace-review:
git-workspace-review (foundation)
├── commit-messages
├── pr-prep
├── doc-updates
├── update-readme
└── version-updates
file-analysis (standalone)
Always run git-workspace-review first to establish context.
git-review:repo-confirmed
git-review:status-overview
git-review:diff-stat
git-review:diff-details
pr-prep:workspace-reviewed
pr-prep:quality-gates
pr-prep:changes-summarized
pr-prep:testing-documented
pr-prep:pr-drafted
git add -p
Skill(sanctum:git-workspace-review)
Skill(sanctum:commit-messages)
make fmt && make lint && make test
Skill(sanctum:git-workspace-review)
Skill(sanctum:pr-prep)
/fix-pr
# Implements fixes, resolves threads
Skill(sanctum:git-workspace-review)
Skill(sanctum:version-updates)
Skill(sanctum:doc-updates)
git commit && git tag
Command Enhancement
/prUses receiving-code-review for validation
/pr-reviewUses receiving-code-review for analysis
/fix-prUses receiving-code-review for resolution
/do-issueUses multiple superpowers for full workflow
imbue : Provides review scaffolding sanctum uses
pensive : Code review complements sanctum’s git operations