mirror of
https://github.com/jackwener/OpenCLI.git
synced 2026-09-14 18:25:42 +08:00
31f58ae699
- Add VitePress with full navigation, sidebar, i18n (en/zh), local search - Create 50+ doc pages: guide, adapters (browser + desktop), developer, advanced - Migrate content from README.md, CONTRIBUTING.md, TESTING.md, CDP.md, CLI-ELECTRON.md - Migrate all 11 adapter READMEs to structured documentation - Add new pages: architecture, yaml-adapter guide, ts-adapter guide, ai-workflow - Add GitHub Actions workflow for deploying to GitHub Pages - Add Chinese locale pages (getting-started, installation, browser-bridge, etc.) - Add docs:dev, docs:build, docs:preview npm scripts
25 lines
449 B
Markdown
25 lines
449 B
Markdown
# 贡献指南
|
||
|
||
详细贡献指南请参考 [英文版本](/developer/contributing)。
|
||
|
||
## 快速开始
|
||
|
||
```bash
|
||
git clone git@github.com:<your-username>/opencli.git
|
||
cd opencli
|
||
npm install
|
||
npm run build
|
||
npx tsc --noEmit
|
||
npx vitest run src/
|
||
```
|
||
|
||
## 提交规范
|
||
|
||
使用 [Conventional Commits](https://www.conventionalcommits.org/):
|
||
|
||
```
|
||
feat(twitter): add thread command
|
||
fix(browser): handle CDP timeout gracefully
|
||
docs: update CONTRIBUTING.md
|
||
```
|