-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·63 lines (57 loc) · 2.66 KB
/
Copy pathindex.html
File metadata and controls
executable file
·63 lines (57 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>王敬一</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif; background: #fafafa; color: #222; line-height: 1.8; }
.container { max-width: 720px; margin: 0 auto; padding: 60px 24px; }
header { margin-bottom: 48px; }
h1 { font-size: 2em; font-weight: 700; }
.sub { color: #666; margin-top: 4px; font-size: 1em; }
section { margin-bottom: 40px; }
h2 { font-size: 1.1em; font-weight: 600; border-bottom: 2px solid #222; padding-bottom: 6px; margin-bottom: 16px; }
.card { background: #fff; border: 1px solid #e5e5e5; border-radius: 8px; padding: 20px 24px; margin-bottom: 12px; }
.card h3 { font-size: 1em; margin-bottom: 6px; }
.card h3 a { color: #222; text-decoration: none; }
.card h3 a:hover { text-decoration: underline; }
.card p { color: #555; font-size: 0.92em; }
.tag { display: inline-block; background: #f0f0f0; color: #555; padding: 2px 8px; border-radius: 4px; font-size: 0.8em; margin-right: 6px; }
footer { margin-top: 60px; color: #999; font-size: 0.85em; }
footer a { color: #999; }
</style>
</head>
<body>
<div class="container">
<header>
<h1>王敬一</h1>
<p class="sub">Agent / Harness / AI Coding · 北京 · 杭州</p>
</header>
<section>
<h2>项目</h2>
<div class="card">
<h3><a href="https://github.com/zengsidou/one-code">one-code</a></h3>
<p>从零实现的 Agent 框架,具备自进化引擎 L0-L4、Harness 六层架构、SWE-bench 自动化评测、52 项单元测试。全程使用 MiMo Code 开发。</p>
<span class="tag">Python</span><span class="tag">Agent</span><span class="tag">Harness</span>
</div>
</section>
<section>
<h2>研究 & 技术写作</h2>
<div class="card">
<h3><a href="papers/contract-first-paper.pdf">从步骤计划到产物预览:Plan-Then-Execute 范式下的契约先行多模态升级</a></h3>
<p>在 Plan-Then-Execute 范式内提出多模态契约升级方案——将验证对象从"步骤描述"变为"产物预览",让用户在 Agent 执行前就能快速判断方向。提出六种多模态契约类型学 + 逆向拆解执行策略,包含 Claude Code / Cursor / Windsurf / GitHub Copilot 四款主流 code agent 的验证机制实证调查。</p>
<span class="tag">2026.06</span>
</div>
</section>
<section>
<h2>链接</h2>
<p><a href="https://github.com/zengsidou">GitHub</a> · <a href="https://gitee.com/oneonichan">Gitee</a></p>
</section>
<footer>
<p>© 2026 王敬一</p>
</footer>
</div>
</body>
</html>