zcf 2.11.0 → 2.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -4
- package/dist/chunks/simple-config.mjs +324 -194
- package/dist/cli.mjs +13 -10
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/templates/en/output-styles/engineer-professional.md +130 -0
- package/templates/en/output-styles/laowang-engineer.md +62 -0
- package/templates/en/output-styles/nekomata-engineer.md +165 -0
- package/templates/en/workflow/git/commands/git-worktree.md +51 -0
- package/templates/zh-CN/output-styles/engineer-professional.md +130 -0
- package/templates/zh-CN/output-styles/laowang-engineer.md +62 -0
- package/templates/zh-CN/output-styles/nekomata-engineer.md +165 -0
- package/templates/zh-CN/workflow/git/commands/git-worktree.md +51 -0
- package/templates/common/CLAUDE.md +0 -5
- package/templates/en/memory/mcp.md +0 -25
- package/templates/en/memory/personality.md +0 -1
- package/templates/en/memory/rules.md +0 -42
- package/templates/en/memory/technical-guides.md +0 -126
- package/templates/zh-CN/memory/mcp.md +0 -25
- package/templates/zh-CN/memory/personality.md +0 -1
- package/templates/zh-CN/memory/rules.md +0 -42
- package/templates/zh-CN/memory/technical-guides.md +0 -126
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Menu options include:
|
|
|
24
24
|
|
|
25
25
|
- `1` Full initialization (equivalent to `zcf i`)
|
|
26
26
|
- `2` Import workflows (equivalent to `zcf u`)
|
|
27
|
-
- `3-7` Configuration management (API/CCR, MCP, Model settings, AI
|
|
27
|
+
- `3-7` Configuration management (API/CCR, MCP, Model settings, AI output style, environment permissions, etc.)
|
|
28
28
|
- `R` Claude Code Router management (enhanced in v2.8.1)
|
|
29
29
|
- `U` ccusage - Claude Code usage analysis
|
|
30
30
|
- `L` CCometixLine - High-performance statusline tool with Git integration and real-time usage tracking (v2.9.9+ new)
|
|
@@ -78,15 +78,32 @@ When using `--skip-prompt`, the following parameters are available:
|
|
|
78
78
|
| `--config-lang, -c` | Configuration language | `zh-CN`, `en` | No | `en` |
|
|
79
79
|
| `--ai-output-lang, -a` | AI output language | `zh-CN`, `en`, custom string | No | `en` |
|
|
80
80
|
| `--all-lang, -g` | Set all language parameters to this value | `zh-CN`, `en`, custom string | No | - (overrides above 3 params. Custom string sets AI output language to custom while interaction and config languages remain 'en') |
|
|
81
|
-
| `--config-action, -
|
|
81
|
+
| `--config-action, -r` | Config handling | `new`, `backup`, `merge`, `docs-only`, `skip` | No | `backup` |
|
|
82
82
|
| `--api-type, -t` | API configuration type | `auth_token`, `api_key`, `ccr_proxy`, `skip` | No | `skip` |
|
|
83
83
|
| `--api-key, -k` | API key (for both API key and auth token types) | string | Required when `api-type` is not `skip` | - |
|
|
84
84
|
| `--api-url, -u` | Custom API URL | URL string | No | official API |
|
|
85
85
|
| `--mcp-services, -m` | MCP services to install (multi-select, comma-separated) | `context7`, `mcp-deepwiki`, `Playwright`, `exa`, or `skip` for none | No | `all` |
|
|
86
86
|
| `--workflows, -w` | Workflows to install (multi-select, comma-separated) | `commonTools`, `sixStepsWorkflow`, `featPlanUx`, `gitWorkflow`, `bmadWorkflow`, or `skip` for none | No | `all` |
|
|
87
|
-
| `--
|
|
87
|
+
| `--output-styles, -o` | Output styles to install (multi-select, comma-separated) | `engineer-professional`, `nekomata-engineer`, `laowang-engineer`, or `skip` for none | No | `all` |
|
|
88
|
+
| `--default-output-style, -d` | Default output style | Same as output styles plus built-in: `default`, `explanatory`, `learning` | No | `engineer-professional` |
|
|
88
89
|
| `--install-cometix-line, -x` | Install CCometixLine statusline tool | `true`, `false` | No | `true` |
|
|
89
90
|
|
|
91
|
+
#### 🎨 AI Output Styles (v2.12+ New Feature)
|
|
92
|
+
|
|
93
|
+
ZCF now supports customizable AI output styles to personalize your Claude Code experience:
|
|
94
|
+
|
|
95
|
+
**Available Output Styles:**
|
|
96
|
+
- `engineer-professional`: Professional software engineer following SOLID, KISS, DRY, YAGNI principles
|
|
97
|
+
- `nekomata-engineer`: Professional catgirl engineer Nova, combining rigorous engineering with cute catgirl traits
|
|
98
|
+
- `laowang-engineer`: Laowang grumpy tech style, never tolerates code errors and non-standard code
|
|
99
|
+
- Built-in styles: `default`, `explanatory`, `learning` (always available)
|
|
100
|
+
|
|
101
|
+
**Features:**
|
|
102
|
+
- Install multiple styles and switch between them
|
|
103
|
+
- Set global default style for all projects
|
|
104
|
+
- Automatic cleanup of legacy personality files
|
|
105
|
+
- Template-based customization system
|
|
106
|
+
|
|
90
107
|
#### 🎯 BMad Workflow (v2.7 New Feature)
|
|
91
108
|
|
|
92
109
|
[BMad](https://github.com/bmad-code-org/BMAD-METHOD) (BMad-Method: Universal AI Agent Framework) is an enterprise-grade workflow system that provides:
|
|
@@ -168,7 +185,7 @@ Full initialization (`npx zcf`) will automatically:
|
|
|
168
185
|
|
|
169
186
|
After configuration:
|
|
170
187
|
|
|
171
|
-
- **For first-time project use, strongly recommend running `/init` to generate CLAUDE.md for better AI understanding of project architecture**
|
|
188
|
+
- **For first-time project use, strongly recommend running `/init-project` to generate CLAUDE.md for better AI understanding of project architecture**
|
|
172
189
|
- `<task description>` - Execute directly without workflow, following SOLID, KISS, DRY, and YAGNI principles, suitable for small tasks like bug fixes
|
|
173
190
|
- `/feat <task description>` - Start new feature development, divided into plan and UI phases
|
|
174
191
|
- `/workflow <task description>` - Execute complete development workflow, not automated, starts with multiple solution options, asks for user feedback at each step, allows plan modifications, maximum control
|