From 912b4c570f08c99c701c7871ab91ce8e804e6672 Mon Sep 17 00:00:00 2001 From: luoyuctl <51604064+luoyuctl@users.noreply.github.com> Date: Mon, 11 May 2026 13:30:50 +0800 Subject: [PATCH] docs: show community listing proof --- README.md | 9 ++++++++- README.zh-CN.md | 9 ++++++++- site/index.html | 15 +++++++++++++++ site/styles.css | 41 ++++++++++++++++++++++++++++++++++++++++- 4 files changed, 71 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3a51416..f1aee31 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,14 @@ Claude Code, Codex CLI, Gemini CLI, Qwen Code, Cline, Aider, Cursor exports, Her - Parser guide: [docs/parser-guide.md](docs/parser-guide.md) - Launch notes: [docs/launch-kit.md](docs/launch-kit.md) -Listed in [Awesome Gemini CLI](https://github.com/Piebald-AI/awesome-gemini-cli), [Charm in the Wild](https://github.com/charm-and-friends/charm-in-the-wild), and [Awesome Claude Code and Skills](https://github.com/GetBindu/awesome-claude-code-and-skills). +Listed in: + +- [Awesome Gemini CLI](https://github.com/Piebald-AI/awesome-gemini-cli) +- [Charm in the Wild](https://github.com/charm-and-friends/charm-in-the-wild) +- [Awesome Claude Code and Skills](https://github.com/GetBindu/awesome-claude-code-and-skills) +- [awesome-x-ops](https://github.com/xlabs-club/awesome-x-ops) +- [Awesome DevOps AI](https://github.com/hammadhaqqani/awesome-devops-ai) +- [agentic-ai-knowledge-base](https://github.com/ankurkumarz/agentic-ai-knowledge-base) ## Contributing diff --git a/README.zh-CN.md b/README.zh-CN.md index b640c2c..e43462b 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -118,7 +118,14 @@ Claude Code、Codex CLI、Gemini CLI、Qwen Code、Cline、Aider、Cursor export - Parser 指南:[docs/parser-guide.md](docs/parser-guide.md) - 发布说明草案:[docs/launch-kit.md](docs/launch-kit.md) -agenttrace 已被收录在 [Awesome Gemini CLI](https://github.com/Piebald-AI/awesome-gemini-cli)、[Charm in the Wild](https://github.com/charm-and-friends/charm-in-the-wild) 和 [Awesome Claude Code and Skills](https://github.com/GetBindu/awesome-claude-code-and-skills)。 +agenttrace 已被这些项目收录: + +- [Awesome Gemini CLI](https://github.com/Piebald-AI/awesome-gemini-cli) +- [Charm in the Wild](https://github.com/charm-and-friends/charm-in-the-wild) +- [Awesome Claude Code and Skills](https://github.com/GetBindu/awesome-claude-code-and-skills) +- [awesome-x-ops](https://github.com/xlabs-club/awesome-x-ops) +- [Awesome DevOps AI](https://github.com/hammadhaqqani/awesome-devops-ai) +- [agentic-ai-knowledge-base](https://github.com/ankurkumarz/agentic-ai-knowledge-base) ## 贡献 diff --git a/site/index.html b/site/index.html index d5373fa..3922990 100644 --- a/site/index.html +++ b/site/index.html @@ -193,6 +193,21 @@

Reads the logs developers already have.

Claude Code, Codex CLI, Gemini CLI, Qwen Code, Cline, Aider, Cursor exports, Hermes Agent, OpenCode, OpenClaw, Pi, Oh My Pi, Kimi CLI, Copilot-style traces

+
+
+

listed by the community

+

Already showing up where agent operators look.

+
+ +
+

open source

diff --git a/site/styles.css b/site/styles.css index 3c1c428..6c50f62 100644 --- a/site/styles.css +++ b/site/styles.css @@ -394,6 +394,7 @@ figcaption span { .workflow, .commands, .sources, +.proof, .community { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; @@ -557,6 +558,41 @@ code { font-size: clamp(1rem, 2vw, 1.35rem); } +.proof { + display: grid; + grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr); + gap: clamp(1.5rem, 5vw, 4rem); + padding: clamp(4rem, 8vw, 7rem) 0; + border-top: 1px solid var(--line); +} + +.proof h2 { + margin: 0; + font-size: clamp(2rem, 4vw, 4.3rem); + line-height: 0.94; +} + +.proof-links { + display: grid; + grid-template-columns: repeat(2, minmax(0, 1fr)); + gap: 0.72rem; +} + +.proof-links a { + min-height: 4.2rem; + padding: 1rem; + border: 1px solid var(--line-soft); + border-radius: 0.45rem; + background: rgba(5, 6, 7, 0.76); + color: var(--ink); + line-height: 1.35; +} + +.proof-links a:hover { + border-color: rgba(0, 216, 255, 0.58); + color: var(--cyan); +} + .community { display: grid; grid-template-columns: minmax(18rem, 0.58fr) minmax(16rem, 0.42fr); @@ -648,6 +684,7 @@ footer a { .screen-stack, .flow-rail, .commands, + .proof, .community { grid-template-columns: repeat(2, minmax(0, 1fr)); } @@ -663,6 +700,7 @@ footer a { .section-head, .commands, + .proof, .community { grid-template-columns: 1fr; } @@ -715,7 +753,8 @@ footer a { .live-ledger, .operator-grid, .screen-stack, - .flow-rail { + .flow-rail, + .proof-links { grid-template-columns: 1fr; }