docs: game AI example + full zh-CN README rewrite - #8
Merged
Conversation
- Replace test coverage example with game AI evolution (35→72% win rate) — more visceral, shows self-correction on rejection, closer to AlphaEvolve spirit - Add progress bar visual (before/after) and round-by-round terminal output - Add callout on why Round 3 rejection matters (memory / no repeated mistakes) - Update architecture Mermaid with emoji labels and loop subgraph label - Full rewrite of README.zh.md as faithful Chinese translation (was stale v0) - Fix zh-CN badge URLs and remove Token-Ignition/legacy references Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Documentation refresh to replace the prior test-coverage example with a “game AI evolution” walkthrough, update diagrams/output examples, and fully rewrite the zh-CN README as a current translation while removing legacy references.
Changes:
- Replace the README example narrative with a multi-round “game AI win-rate” evolution session (incl. before/after bar + round-by-round story).
- Update Mermaid architecture diagram styling/labels and expand ledger/audit-trail description.
- Full rewrite of
README.zh.mdto match current README content and update badges/links.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 6 comments.
| File | Description |
|---|---|
| README.md | Replaces the example and expands/reshapes docs around the evolution loop, ledger, CLI usage, and diagrams. |
| README.zh.md | Full zh-CN rewrite aligned with updated English README; updates badges/links and examples. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -19,52 +20,58 @@ | |||
| <img src="https://github.com/Protocol-zero-0/evolution-kernel/actions/workflows/tests.yml/badge.svg" alt="tests"> | |||
| </a> | |||
| <img src="https://img.shields.io/badge/status-v0.2-blue" alt="v0.2"> | |||
| commit 9d7b321 "ai: final tuning pass (70→72%)" | ||
|
|
||
| {"halted": true, "reason": "max_iterations reached", "iterations": 20, "total_usd": 1.43, "total_tokens": 487201} | ||
| {"halted": true, "reason": "max_iterations reached", "iterations": 30, "total_usd": 2.14, "total_tokens": 634000} |
Comment on lines
289
to
295
|
|
||
| # Reset hard-stop counters to start a fresh session | ||
| # Reset budget counters after a halt | ||
| evolution-kernel --ledger /tmp/ledger --reset | ||
| ``` | ||
|
|
||
| Exit codes: `0` = clean finish, `3` = halted by a hard stop. | ||
| Exit codes: `0` clean finish · `3` halted by a hard stop. | ||
|
|
| <a href="https://github.com/Protocol-zero-0/evolution-kernel/actions/workflows/tests.yml"> | ||
| <img src="https://github.com/Protocol-zero-0/evolution-kernel/actions/workflows/tests.yml/badge.svg" alt="tests"> | ||
| </a> | ||
| <img src="https://img.shields.io/badge/status-v0.2-blue" alt="v0.2"> |
| 评估 → 72%——目标 60% 已超越——接受 | ||
| 提交 9d7b321 "ai: 最终调优(70→72%)" | ||
|
|
||
| {"halted": true, "reason": "max_iterations reached", "iterations": 30, "total_usd": 2.14, "total_tokens": 634000} |
Comment on lines
+288
to
+295
| evolution-kernel --config evolution.yml --repo /path/to/repo --ledger /tmp/ledger | ||
|
|
||
| python3 -m evolution_kernel.cli \ | ||
| --config examples/evolution.yml \ | ||
| --repo examples/demo_target \ | ||
| --ledger /tmp/ek-ledger | ||
| # 触发 halt 后重置预算计数器 | ||
| evolution-kernel --ledger /tmp/ledger --reset | ||
| ``` | ||
|
|
||
| > 上面 `pip install -e .` 每个环境只需要做一次。之后那三行 CLI 命令是 | ||
| > 干净 checkout 下可复现的。 | ||
| 退出码:`0` 正常结束 · `3` 被 hard stop 触发 | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
— more visceral, shows self-correction on rejection, closer to AlphaEvolve spirit
Documentation-only — no code changed.
🤖 Generated with Claude Code