mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-12 02:37:45 +08:00
重构 ccw cli 模板系统: - 新增 template-discovery.ts 模块,支持扁平化模板自动发现 - 添加 --rule <template> 选项,自动加载 protocol 和 template - 模板目录从嵌套结构 (prompts/category/file.txt) 迁移到扁平结构 (prompts/category-function.txt) - 更新所有 agent/command 文件,使用 $PROTO $TMPL 环境变量替代 $(cat ...) 模式 - 支持模糊匹配:--rule 02-review-architecture 可匹配 analysis-review-architecture.txt 其他更新: - Dashboard: 添加 Claude Manager 和 Issue Manager 页面 - Codex-lens: 增强 chain_search 和 clustering 模块 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
90 lines
1.5 KiB
Plaintext
90 lines
1.5 KiB
Plaintext
# Rule Template: Configuration Rules
|
|
|
|
## Variables
|
|
- {TECH_STACK_NAME}: Tech stack display name
|
|
- {CONFIG_FILES}: List of config file patterns
|
|
|
|
## Output Format
|
|
|
|
```markdown
|
|
---
|
|
paths:
|
|
- "*.config.*"
|
|
- ".*rc"
|
|
- ".*rc.{js,json,yaml,yml}"
|
|
- "package.json"
|
|
- "tsconfig*.json"
|
|
- "pyproject.toml"
|
|
- "Cargo.toml"
|
|
- "go.mod"
|
|
- ".env*"
|
|
---
|
|
|
|
# {TECH_STACK_NAME} Configuration Rules
|
|
|
|
## Project Setup
|
|
|
|
[Configuration guidelines from Exa research]
|
|
|
|
### Essential Config Files
|
|
- [List primary config files]
|
|
- [Purpose of each]
|
|
|
|
### Recommended Structure
|
|
```
|
|
project/
|
|
├── [config files]
|
|
├── src/
|
|
└── tests/
|
|
```
|
|
|
|
## Tooling
|
|
|
|
[Linters, formatters, bundlers]
|
|
|
|
### Linting
|
|
- Tool: [ESLint/Pylint/etc]
|
|
- Config file: [.eslintrc/pyproject.toml/etc]
|
|
- Key rules to enable
|
|
|
|
### Formatting
|
|
- Tool: [Prettier/Black/etc]
|
|
- Integration with editor
|
|
- Pre-commit hooks
|
|
|
|
### Build Tools
|
|
- Bundler: [Webpack/Vite/etc]
|
|
- Build configuration
|
|
- Optimization settings
|
|
|
|
## Environment
|
|
|
|
[Environment management]
|
|
|
|
### Environment Variables
|
|
- Naming conventions
|
|
- Required vs optional
|
|
- Secret handling
|
|
- .env file structure
|
|
|
|
### Development vs Production
|
|
- Environment-specific configs
|
|
- Feature flags
|
|
- Debug settings
|
|
|
|
## Dependencies
|
|
|
|
[Dependency management]
|
|
- Lock file usage
|
|
- Version pinning strategy
|
|
- Security updates
|
|
- Peer dependencies
|
|
```
|
|
|
|
## Content Guidelines
|
|
|
|
- Focus on config file best practices
|
|
- Include security considerations
|
|
- Cover development workflow setup
|
|
- Mention CI/CD integration where relevant
|