Skip to content

Commit 5b72000

Browse files
committed
docs: add maintenance discontinuation notice
- Add maintenance notice to README.md (bilingual: Chinese and English) - Display notice in TUI welcome screen - Project maintenance discontinued as of December 11th - Contact 大米树 (DaMiShu) for maintenance takeover inquiries
1 parent 21c2e8a commit 5b72000

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
> **⚠️ 维护公告 / Maintenance Notice**
2+
> 本项目维护者精力有限,不打算维护,已于 12.11 停止维护。有接收维护意愿的可向大米树申请资格。维护较简单,使用 claude code 让 AI 合并上游处理冲突和 clippy 报错即可。
3+
> _This project maintenance has been discontinued as of December 11th. Anyone interested in taking over maintenance can apply to 大米树 (DaMiShu). Maintenance is relatively simple - use Claude Code to let AI merge upstream and handle conflicts and clippy errors._
4+
5+
---
6+
17
<p align="center"><code>npm i -g @openai/codex</code><br />or <code>brew install --cask codex</code></p>
28

39
<p align="center"><strong>Codex CLI</strong> is a coding agent from OpenAI that runs locally on your computer.

codex-rs/tui/src/onboarding/welcome.rs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,20 @@ impl WidgetRef for &WelcomeWidget {
8080
"Codex".bold(),
8181
", OpenAI's command-line coding agent".into(),
8282
]));
83+
lines.push("".into());
84+
lines.push(Line::from(vec![
85+
" ".into(),
86+
"⚠️ ".into(),
87+
"本项目维护者精力有限,不打算维护,已于12.11停止维护。".into(),
88+
]));
89+
lines.push(Line::from(vec![
90+
" ".into(),
91+
" 有接收维护意愿的可向大米树申请资格。".into(),
92+
]));
93+
lines.push(Line::from(vec![
94+
" ".into(),
95+
" 维护较简单,使用claude code让ai合并上游处理冲突和clippy报错即可。".into(),
96+
]));
8397

8498
Paragraph::new(lines)
8599
.wrap(Wrap { trim: false })

0 commit comments

Comments
 (0)