-
Notifications
You must be signed in to change notification settings - Fork 9
docs: 英文 troubleshooting 把 latest 的现状写成了历史;并更正 RELEASE-SOP 一句不成立的话 #807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
bfb32e0
docs: 英文 troubleshooting 补上 latest 信道警告;更正 RELEASE-SOP 里一句现在不成立的话
SmartFlowAITeam 3928368
docs(RELEASE-SOP): 一次探针不能替所有断言;分母是 8 个路径不是 7 个文件
SmartFlowAITeam 0456a73
docs(RELEASE-SOP): 分母 8 → 12;坐标记错了包;补上实测证据制品
SmartFlowAITeam e28ecaf
docs(RELEASE-SOP): 两条「未实测」都消掉了 —— 一条真跑了,一条本就不适用
SmartFlowAITeam c32ddc4
Merge remote-tracking branch 'origin/main' into HEAD
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| # report — latest/preview 首启 preflight 信道核对 | ||
|
|
||
| Date: 2026-08-13 (Asia/Shanghai) | ||
| Scope: 只覆盖「无 Bun 时 `anet hub start` 的表现」这一条断言。 | ||
| 不覆盖 `anet -v` 顶行示例,也不覆盖安装命令里的版本 pin。 | ||
|
|
||
| ## 复现命令(干净容器,装完断网跑) | ||
|
|
||
| docker build -t probe - <<'EOF' | ||
| FROM node:22-bookworm-slim | ||
| RUN npm i -g @sleep2agi/agent-network@latest | ||
| EOF | ||
| docker run --rm --network none probe sh -c 'anet hub start; echo exit=$?' | ||
|
|
||
| `--network none` 是刻意的:探针默认目标是生产 hub,不断网会短路成 | ||
| `already running`,被测分支根本不执行(本仓记录过这个坑)。 | ||
|
|
||
| ## latest → 2.2.21 | ||
|
|
||
| Starting CommHub Server on port 9200 (bind 127.0.0.1)... | ||
| node:events:497 | ||
| throw er; // Unhandled 'error' event | ||
| Error: spawn bunx ENOENT | ||
| at ChildProcess._handle.onexit (node:internal/child_process:285:19) | ||
| errno: -2, code: 'ENOENT', syscall: 'spawn bunx', path: 'bunx' | ||
| exit=1 | ||
|
|
||
| ## 同一容器 preview → 2.3.0-preview.39 | ||
|
|
||
| ❌ anet hub start requires the Bun runtime (commhub-server is bun-only — | ||
| uses Bun.serve + bun:sqlite, no Node fallback). | ||
| exit=1 | ||
|
|
||
| ## 两条通道退出码相同,都是 1 | ||
|
|
||
| 差别不在退出码,纯在可读性。脚本包装(`|| exit`)两边行为一致。 | ||
|
|
||
| ## 坐标 | ||
|
|
||
| @sleep2agi/agent-network latest 2.2.21 preview 2.3.0-preview.39 | ||
| (preflight 实现在 agent-network/bin/cli.ts;commhub-server 的版本 | ||
| 只在 preflight 通过之后才相关,不是本条断言的坐标) | ||
|
|
||
| ## 边界 | ||
|
|
||
| - 容器刻意无 bun。装了 bun 的机器不会走到这个分支 —— 这不是 | ||
| 「所有 latest 用户都会崩」,是「没有 bun 的新机器上会」; | ||
| - `--network none` 保证不接触外部服务,同时意味着未验证联网场景。 |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This row marks both the installed
latestand installedpreviewchannel probes as tested, but the commit adds no corresponding report underdocs/tests/:report-onboarding.txtcovers only stable2.2.21, whilereport-test766-bunx-preflight.txtexplicitly exercises repository source with a fixture and disclaims npm publication or registry-install coverage. Without the actual Docker command, resolved preview package version, and output, this new已实测claim cannot be audited or repeated during the next release; save the channel probe result as required rather than treating an unrecorded run as release evidence.AGENTS.md reference: AGENTS.md:L7-L8
Useful? React with 👍 / 👎.