byteseek 转为 kvlang-only(删 deps.json,依赖改用 kvlang 自包含 release) - #71
Merged
Merged
Conversation
不再自带题目。agentbench 现在是调用业界两套标准基准(Codex / Claude 评测同款)的入口,把 byteseek 当作被测 agent 接进去: - 新增 bench(bash 入口,exec 到 BENCH_HOME 的 venv) - 新增 bench.py:题库 → agent → predictions → 官方评测 suite: humaneval | humaneval+ | swebench-verified | swebench-lite agent: gold(题库自带答案,验管道)| byteseek 退出码:0 通过 / 1 未通过 / 2 前置条件不满足 / 3 参数错误 - 删除自出的 00–10 难度题库(64 个 .question/.answer 对) - README 重写:新定位、命令、suite 说明 Co-Authored-By: Claude Code <noreply@anthropic.com>
byteseek 是纯 kvlang 代码树,唯一依赖就是 kvlang 本身。kvlang 的 release
现已自包含(bin/{kvlang,kvlanglayout,kvspace} + lib/ + lib/kvspace/ 两后端 +
include/),故不再需要按仓锁 ABI 版本:
- 删除 deps.json(原锁 kvlang/kvspace/kvspace-c/kvspace-durable/blockmalloc/
slotsboxmalloc 六个仓的 tag)
- ci/deps.sh 重写:拉 kvlang 的 install.sh 一次装齐 /usr;KVLANG_VERSION 可钉
版本,默认取最新 release;版本号解析走带 token 的 API(匿名常被 403 限流,
而 release 包公开、下载不需 token)
- ci.yml 简化:不再 clone kvlang 源码构建,只跑 ./ci/deps.sh
- Makefile:deps 目标注释同步
Co-Authored-By: Claude Code <noreply@anthropic.com>
- kv·* → kvspace·*(跟进 kvlang 的内建重命名:llm/memgen/memory)
- sys -> /tmp/esc/sys(原 /tmp/esc·sys 是「未声明容器的成员写」,被
kvlang 严格校验拒绝 → 改子路径;llm.kv 的 llm·raw 同改)
- noenv = map() → noenv:[int64]·[]char/utf32 = {};a = {...} 补 map
langtype(python.kv / shell.kv)——同样是为通过严格校验
Co-Authored-By: Claude Code <noreply@anthropic.com>
- doc/substrate.md、doc/jit-agent-reference.md:随 kvlang-only 化更新表述 - agentbench/README.md、bench.py:微调(命令与说明同步) Co-Authored-By: Claude Code <noreply@anthropic.com>
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.
变更
byteseek 是纯 kvlang 代码树,唯一依赖就是 kvlang 本身 —— 而 kvlang 的 release 现已自包含(
bin/{kvlang,kvlanglayout,kvspace}+lib/+lib/kvspace/两个后端 +include/),故不再需要按仓锁 ABI 版本。1. kvlang-only 化
deps.json(原锁 kvlang / kvspace / kvspace-c / kvspace-durable / blockmalloc / slotsboxmalloc 六仓 tag)ci/deps.sh重写:直接取 kvlang 的install.sh一次装齐/usr;KVLANG_VERSION可钉版本、默认最新 release;版本号解析走带 token 的 GitHub API(匿名api.github.com常 403 限流,而 release 包公开、下载不需 token)ci.yml简化:不再git clonekvlang 源码构建,只跑./ci/deps.shMakefile的deps注释同步2.
lib/*.kv适配 kvlang 新规则kv·*→kvspace·*(跟进内建重命名)sys -> /tmp/esc/sys(原/tmp/esc·sys属「未声明容器的成员写」,被严格校验拒绝)noenv = map()→noenv:[int64]·[]char/utf32 = {};a = {...}补 map langtype3. 文档
doc/substrate.md、doc/jit-agent-reference.md随 kvlang-only 化更新agentbench/README.md、bench.py微调🤖 Generated with Claude Code