@wneng/create-keel 0.2.1 → 0.3.2

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.
Files changed (29) hide show
  1. package/README.md +26 -1
  2. package/dist/index.js +612 -40
  3. package/dist/index.js.map +1 -1
  4. package/package.json +2 -1
  5. package/src/standards/templates/coding-style-dart.md.eta +49 -0
  6. package/src/standards/templates/coding-style-go.md.eta +52 -0
  7. package/src/standards/templates/coding-style-java.md.eta +50 -0
  8. package/src/standards/templates/coding-style-python.md.eta +51 -0
  9. package/src/standards/templates/coding-style-rust.md.eta +52 -0
  10. package/src/standards/templates/coding-style-typescript.md.eta +50 -0
  11. package/src/standards/templates/dependency-cruiser.config.cjs.eta +57 -0
  12. package/src/standards/templates/design-tokens.ts.eta +37 -0
  13. package/src/standards/templates/module-boundaries.md.eta +82 -0
  14. package/src/standards/templates/tech-stack-agent.md.eta +35 -0
  15. package/src/standards/templates/tech-stack-miniapp.md.eta +34 -0
  16. package/src/standards/templates/tech-stack-mobile.md.eta +36 -0
  17. package/src/standards/templates/tech-stack-server.md.eta +50 -0
  18. package/src/standards/templates/tech-stack-web.md.eta +36 -0
  19. package/src/standards/templates/ui-design-system.md.eta +70 -0
  20. package/src/templates/ci-gitee/files/PULL_REQUEST_TEMPLATE.md +62 -0
  21. package/src/templates/ci-gitee/fragment.yaml +4 -1
  22. package/src/templates/ci-github/files/PULL_REQUEST_TEMPLATE.md +62 -0
  23. package/src/templates/ci-github/fragment.yaml +4 -1
  24. package/src/templates/docs-skeleton/files/README.md +3 -3
  25. package/src/templates/docs-skeleton/files/governance-checklists.md +3 -3
  26. package/src/templates/docs-skeleton/files/governance-security.md +6 -2
  27. package/src/templates/docs-skeleton/files/usage-quickstart.md +11 -0
  28. package/src/templates/root-files/files/CODEOWNERS +40 -0
  29. package/src/templates/root-files/fragment.yaml +3 -0
package/README.md CHANGED
@@ -5,7 +5,32 @@
5
5
  [![license](https://img.shields.io/npm/l/@wneng/create-keel.svg)](./LICENSE)
6
6
  [![node](https://img.shields.io/node/v/@wneng/create-keel.svg)](https://nodejs.org)
7
7
 
8
- Scaffolder for Contract First + Vibe Coding projects following the `keel` conventions (see root `AGENTS.md`).
8
+ Scaffolder for **Contract First + Vibe Coding** projects following the `keel` conventions (see root `AGENTS.md`).
9
+
10
+ > **完整中文安装与使用指南**:[`docs/03-工程规范与研发基础设施/keel-getting-started.md`](https://gitee.com/wangneng521/keel/blob/main/docs/03-%E5%B7%A5%E7%A8%8B%E8%A7%84%E8%8C%83%E4%B8%8E%E7%A0%94%E5%8F%91%E5%9F%BA%E7%A1%80%E8%AE%BE%E6%96%BD/keel-getting-started.md)(13 节,含三档采用策略、工程规范四大类、AI 访问模式、常见故障排查)。
11
+
12
+ ## TL;DR
13
+
14
+ ```bash
15
+ # Quickstart:创建项目(交互式)
16
+ npx @wneng/create-keel create my-app
17
+
18
+ # 推荐第一次试用:带完整样例特性
19
+ npx @wneng/create-keel create demo --yes --sample-feature
20
+
21
+ # 给已有项目加特性
22
+ cd my-app
23
+ npx @wneng/create-keel feature add user-signup
24
+
25
+ # 完整档(To B 多客户交付)
26
+ npx @wneng/create-keel create my-full \
27
+ --backend java --frontend react --mobile flutter --miniapp wechat \
28
+ --agent rust-desktop --deploy kubernetes --contract rest+events \
29
+ --ai kiro --license apache-2.0 --gitLfs --integrations \
30
+ --ci github --roles qa,field,data,legal-security,marketing,design \
31
+ --engineering-standards full \
32
+ --yes
33
+ ```
9
34
 
10
35
  ## Usage
11
36