Phase 1b: Rename all ~94 commands across 12 plugins to /<noun> <action> sub-command pattern. Git-flow consolidated from 8→5 commands (commit variants absorbed into --push/--merge/--sync flags). Dispatch files, name: frontmatter, and cross-reference updates for all plugins. Phase 2: Design documents for 8 new plugins in docs/designs/. Phase 3: Scaffold 8 new plugins — saas-api-platform, saas-db-migrate, saas-react-platform, saas-test-pilot, data-seed, ops-release-manager, ops-deploy-pipeline, debug-mcp. Each with plugin.json, commands, agents, skills, README, and claude-md-integration. Marketplace grows from 12→20. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
57 lines
1.4 KiB
Markdown
57 lines
1.4 KiB
Markdown
---
|
|
name: gitflow config
|
|
description: Configure git-flow settings for the current project
|
|
agent: git-assistant
|
|
---
|
|
|
|
# /gitflow config - Configure Git-Flow
|
|
|
|
## Skills
|
|
|
|
- skills/visual-header.md
|
|
- skills/environment-variables.md
|
|
- skills/workflow-patterns/branching-strategies.md
|
|
|
|
## Purpose
|
|
|
|
Configure git-flow settings interactively or display current configuration.
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Description |
|
|
|-----------|-------------|
|
|
| `--show` | Display current settings without prompting |
|
|
| `--reset` | Reset all settings to defaults |
|
|
| `<key>=<value>` | Set specific variable directly |
|
|
|
|
## Workflow
|
|
|
|
1. **Display header** - Show GIT-FLOW Configuration header
|
|
2. **Load current settings** - Read from project and user config
|
|
3. **Present menu** - Show configuration options
|
|
4. **Handle selection** - Configure workflow style, base branch, protected branches, etc.
|
|
5. **Save settings** - Write to `.env` or `.claude/settings.json`
|
|
6. **Confirm** - Display saved configuration
|
|
|
|
## Configuration Menu
|
|
|
|
1. Workflow style (simple, feature-branch, pr-required, trunk-based)
|
|
2. Default base branch
|
|
3. Auto-delete merged branches
|
|
4. Auto-push after commit
|
|
5. Protected branches
|
|
6. View all settings
|
|
7. Reset to defaults
|
|
|
|
## Output
|
|
|
|
```
|
|
Configuration saved!
|
|
|
|
GIT_WORKFLOW_STYLE=feature-branch
|
|
GIT_DEFAULT_BASE=development
|
|
GIT_AUTO_DELETE_MERGED=true
|
|
|
|
These settings will be used for all git-flow commands.
|
|
```
|