-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevlog.html
More file actions
208 lines (204 loc) · 6.55 KB
/
devlog.html
File metadata and controls
208 lines (204 loc) · 6.55 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<link rel="canonical" href="https://thedecklab.com/devlog.html" />
<link rel="icon" href="/image/favicon.png" type="image/png" sizes="64x64" />
<title>开发日志 · SBKPI</title>
<meta name="description" content="SBKPI / AITI 相关开发动机、实现复盘与站外长文索引。" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="zh_CN" />
<meta property="og:title" content="开发日志 · SBKPI" />
<meta property="og:description" content="SBKPI / AITI 相关开发动机、实现复盘与站外长文索引。" />
<meta property="og:url" content="https://thedecklab.com/devlog.html" />
<meta name="twitter:card" content="summary" />
<style>
:root {
--bg: #f6faf6;
--panel: #ffffff;
--text: #1e2a22;
--muted: #6a786f;
--line: #dbe8dd;
--accent-strong: #4d6a53;
--safe-b: env(safe-area-inset-bottom, 0px);
--safe-t: env(safe-area-inset-top, 0px);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
background: radial-gradient(circle at top left, #f8fff8 0, #f6faf6 40%, #f2f7f3 100%);
color: var(--text);
min-height: 100vh;
min-height: 100dvh;
padding-top: var(--safe-t);
}
.shell {
max-width: 720px;
margin: 0 auto;
padding: 16px 14px calc(28px + var(--safe-b));
}
.page-head {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
justify-content: space-between;
gap: 12px;
margin-bottom: 20px;
}
.page-head h1 {
margin: 0;
font-size: clamp(1.35rem, 4.5vw, 1.75rem);
letter-spacing: -0.02em;
line-height: 1.25;
}
.back-link {
display: inline-flex;
align-items: center;
padding: 10px 14px;
border-radius: 12px;
border: 1px solid var(--line);
background: var(--panel);
color: var(--accent-strong);
font-size: 0.88rem;
font-weight: 600;
text-decoration: none;
}
.back-link:hover {
background: #fafcfb;
border-color: #c5d8c9;
}
.intro {
margin: 0 0 18px;
font-size: 0.9rem;
line-height: 1.65;
color: var(--muted);
}
.log-list {
display: flex;
flex-direction: column;
gap: 14px;
}
.log-card {
background: var(--panel);
border: 1px solid var(--line);
border-radius: 16px;
padding: 18px 18px 16px;
box-shadow: 0 12px 32px rgba(47, 73, 55, 0.06);
}
.log-card h2 {
margin: 0 0 10px;
font-size: 1.05rem;
line-height: 1.35;
}
.log-card h2 a {
color: var(--accent-strong);
text-decoration: none;
font-weight: 700;
}
.log-card h2 a:hover {
text-decoration: underline;
text-underline-offset: 3px;
}
.log-meta {
font-size: 0.8rem;
color: var(--muted);
margin-bottom: 8px;
}
.log-card p {
margin: 0;
font-size: 0.9rem;
line-height: 1.7;
color: #304034;
}
.site-footer {
margin-top: 28px;
padding-top: 18px;
border-top: 1px solid var(--line);
text-align: center;
font-size: 0.86rem;
color: var(--muted);
line-height: 1.65;
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
}
.site-footer-nav,
.site-footer-meta {
display: flex;
flex-wrap: wrap;
gap: 6px 10px;
justify-content: center;
align-items: center;
}
.site-footer-meta { font-size: 0.82rem; }
.site-footer a {
color: var(--accent-strong);
font-weight: 600;
text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-footer-sep {
color: #b8c9bc;
font-weight: 700;
user-select: none;
}
@media (min-width: 480px) {
.shell { padding-left: 20px; padding-right: 20px; }
}
</style>
</head>
<body>
<div class="shell">
<header class="page-head">
<h1>开发日志</h1>
<a class="back-link" href="/">← 返回首页</a>
</header>
<p class="intro">随手记</p>
<div class="log-list">
<article class="log-card">
<div class="log-meta">第一篇 · 站外</div>
<h2>
<a href="https://xmanyou.com/sbti-test-for-ai/" target="_blank" rel="noopener noreferrer">好奇 AI Agent 会是什么 SBTI 人格,我 vibe 了一个给 AI 用的 SBTI 测试</a>
</h2>
<p>纯好奇:AI 要是也来测一卦,能测出个啥?</p>
</article>
<article class="log-card">
<div class="log-meta">第二篇 · 站外</div>
<h2>
<a href="https://xmanyou.com/ai-sbti-test-for-openclaw/" target="_blank" rel="noopener noreferrer">给 AI 的 SBTI 测试:如何知道你的小龙虾是什么人格?</a>
</h2>
<p>没想到小龙虾居然是双重人格……</p>
</article>
</div>
<footer class="site-footer" role="contentinfo">
<nav class="site-footer-nav" aria-label="主要页面">
<a href="/">首页</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/sbti">SBTI 测验</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/aiti.html">AITI 简易</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/aiti-wizard.html">完整向导</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/wiki">人格图鉴</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/sbkpi">搭子图鉴</a>
</nav>
<div class="site-footer-meta">
<a href="https://thedecklab.com/">thedecklab.com</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="https://github.com/cloudcreate-ai/SBKPI" target="_blank" rel="noopener noreferrer">GitHub</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/devlog.html" aria-current="page">开发日志</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/privacy">隐私说明</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/terms">服务条款</a>
</div>
</footer>
</div>
</body>
</html>