This repository was archived by the owner on Jul 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.html
More file actions
341 lines (303 loc) · 9.08 KB
/
Copy pathlibrary.html
File metadata and controls
341 lines (303 loc) · 9.08 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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Workspace | phd.ai.log</title>
<meta name="description" content="phd.ai.log의 프롬프트, 기록, 저장소, support 링크.">
<style>
:root {
--bg: #07090c;
--ink: #eef3f8;
--muted: #a3adb9;
--quiet: #707b88;
--line: rgba(238, 243, 248, 0.14);
--line-soft: rgba(238, 243, 248, 0.08);
--panel: rgba(238, 243, 248, 0.052);
--blue: #78b7ff;
--green: #8de6c0;
--amber: #d9b76f;
}
* { box-sizing: border-box; }
html { background: var(--bg); }
body {
margin: 0;
min-height: 100vh;
color: var(--ink);
background:
linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.021) 1px, transparent 1px),
linear-gradient(180deg, rgba(7, 9, 12, 0.2), rgba(7, 9, 12, 0.98)),
var(--bg);
background-size: 34px 34px, 34px 34px, auto, auto;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Apple SD Gothic Neo", "Noto Sans KR", monospace;
letter-spacing: 0;
}
a {
color: inherit;
text-decoration: none;
}
.page {
width: min(820px, calc(100vw - 32px));
margin: 0 auto;
padding: 38px 0 42px;
}
.top {
display: flex;
justify-content: space-between;
gap: 16px;
align-items: center;
color: var(--quiet);
font-size: 12px;
}
.home {
color: var(--muted);
border: 1px solid var(--line-soft);
border-radius: 999px;
padding: 9px 12px;
background: rgba(255,255,255,0.025);
}
.home:hover {
color: var(--ink);
border-color: var(--line);
}
header {
margin: 76px 0 44px;
}
.kicker {
margin: 0 0 15px;
color: var(--green);
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
}
h1 {
margin: 0;
font-size: clamp(38px, 8vw, 74px);
line-height: 1;
letter-spacing: 0;
font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}
.intro {
max-width: 590px;
margin: 22px 0 0;
color: var(--muted);
font-size: 15px;
line-height: 1.8;
word-break: keep-all;
font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}
section {
margin-top: 38px;
scroll-margin-top: 30px;
}
h2 {
margin: 0 0 14px;
color: var(--quiet);
font-size: 12px;
font-weight: 800;
text-transform: uppercase;
}
.section-links {
display: flex;
flex-wrap: wrap;
gap: 9px;
margin-top: 26px;
}
.section-links a {
padding: 9px 11px;
border: 1px solid var(--line-soft);
border-radius: 999px;
color: var(--muted);
background: rgba(255,255,255,0.025);
font-size: 12px;
}
.section-links a:hover {
color: var(--ink);
border-color: var(--line);
}
.stack {
display: grid;
gap: 10px;
}
.item {
display: grid;
grid-template-columns: 44px minmax(0, 1fr) auto;
gap: 16px;
align-items: center;
min-height: 92px;
padding: 18px;
border: 1px solid var(--line-soft);
border-radius: 12px;
background: var(--panel);
transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}
.item:hover {
transform: translateY(-2px);
border-color: rgba(120,183,255,0.36);
background: rgba(238, 243, 248, 0.072);
}
.num {
color: var(--green);
font-size: 13px;
font-weight: 800;
}
.title {
margin: 0;
font-size: 18px;
line-height: 1.35;
word-break: keep-all;
font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}
.copy {
margin: 6px 0 0;
color: var(--muted);
font-size: 14px;
line-height: 1.65;
word-break: keep-all;
font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}
.arrow {
color: var(--blue);
font-size: 18px;
}
.note {
color: var(--amber);
}
.blue {
color: var(--blue);
}
footer {
margin-top: 52px;
padding-top: 18px;
border-top: 1px solid var(--line-soft);
color: var(--quiet);
font-size: 11px;
line-height: 1.8;
}
@media (max-width: 620px) {
.page {
width: min(100vw - 24px, 820px);
padding-top: 26px;
}
.top {
align-items: flex-start;
flex-direction: column;
}
header {
margin: 58px 0 34px;
}
.item {
grid-template-columns: 34px minmax(0, 1fr);
gap: 12px;
padding: 16px;
}
.arrow {
display: none;
}
}
</style>
</head>
<body>
<main class="page">
<nav class="top" aria-label="상단 이동">
<span>Moon / phd.ai.log</span>
<a class="home" href="./">← home</a>
</nav>
<header>
<p class="kicker">workspace</p>
<h1>필요한 곳으로 바로 들어가기.</h1>
<p class="intro">
지금은 Research Wiki 묶음부터 열어둔다.
앞으로 써볼 프롬프트는 주제별로 조금씩 쌓아간다.
</p>
<nav class="section-links" aria-label="섹션 이동">
<a href="#prompts">prompts</a>
<a href="#notes">notes</a>
<a href="#github">github</a>
<a href="#support">support</a>
</nav>
</header>
<section id="prompts" aria-labelledby="prompts-title">
<h2 id="prompts-title">prompts</h2>
<div class="stack">
<a class="item" href="https://paper-recall-kit.pages.dev/" target="_blank" rel="noopener">
<span class="num">01</span>
<div>
<p class="title">paper recall kit</p>
<p class="copy">Research Wiki를 처음 설계하는 완전 자세한 가이드.</p>
</div>
<span class="arrow" aria-hidden="true">↗</span>
</a>
<a class="item" href="https://research-wiki-skill-kit.pages.dev/" target="_blank" rel="noopener">
<span class="num">02</span>
<div>
<p class="title">research wiki skill kit</p>
<p class="copy">내 위키를 Codex / Claude Code가 먼저 찾아보게 만드는 스킬화 가이드.</p>
</div>
<span class="arrow" aria-hidden="true">↗</span>
</a>
<a class="item" href="./prompts/research-wiki-design-prompt.md" target="_blank" rel="noopener">
<span class="num">03</span>
<div>
<p class="title">research wiki prompt</p>
<p class="copy">가이드에 들어간 위키 설계 프롬프트 원문.</p>
</div>
<span class="arrow" aria-hidden="true">→</span>
</a>
<a class="item" href="./prompts/research-wiki-skill-prompt.md" target="_blank" rel="noopener">
<span class="num">04</span>
<div>
<p class="title">wiki skill prompt</p>
<p class="copy">스킬화 가이드에 들어간 연결 프롬프트 원문.</p>
</div>
<span class="arrow" aria-hidden="true">→</span>
</a>
</div>
</section>
<section id="notes" aria-labelledby="notes-title">
<h2 id="notes-title">notes</h2>
<div class="stack">
<a class="item" href="https://www.instagram.com/phd.ai.log/p/DZRS25rj9gd/" target="_blank" rel="noopener">
<span class="num note">log</span>
<div>
<p class="title">dynamic workflows</p>
<p class="copy">Claude Code의 Dynamic workflows를 직접 써보고 남긴 기록.</p>
</div>
<span class="arrow" aria-hidden="true">→</span>
</a>
</div>
</section>
<section id="github" aria-labelledby="github-title">
<h2 id="github-title">github</h2>
<div class="stack">
<a class="item" href="https://github.com/moonweave" target="_blank" rel="noopener">
<span class="num blue">git</span>
<div>
<p class="title">moonweave</p>
<p class="copy">도구, 실험 코드, 공개 저장소.</p>
</div>
<span class="arrow" aria-hidden="true">↗</span>
</a>
</div>
</section>
<section id="support" aria-labelledby="support-title">
<h2 id="support-title">support</h2>
<div class="stack">
<a class="item" href="https://ko-fi.com/phdailog" target="_blank" rel="noopener">
<span class="num note">kofi</span>
<div>
<p class="title">Ko-fi</p>
<p class="copy">가볍게 열어둔 support 링크.</p>
</div>
<span class="arrow" aria-hidden="true">↗</span>
</a>
</div>
</section>
<footer>
<div>prompts / notes / github / support</div>
<div>Moon · @phd.ai.log</div>
</footer>
</main>
</body>
</html>