-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
901 lines (831 loc) · 31.9 KB
/
index.html
File metadata and controls
901 lines (831 loc) · 31.9 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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Codex 入门教程 | 像素风指南</title>
<meta name="description" content="根据 README 重构的 Codex 入门教程首页,包含获取方式、核心概念、功能配置、Plan 模式与快速参考卡。">
<style>
:root {
--bg: #120f1d;
--panel: #221c35;
--panel-2: #2c2445;
--text: #f7f3e9;
--muted: #c8bfdc;
--cyan: #62f3ff;
--pink: #ff6bd6;
--yellow: #ffd84d;
--green: #7dff8a;
--red: #ff7c7c;
--border: #0a0812;
--shadow: 0 0 0 4px var(--border);
--grid: rgba(255, 255, 255, 0.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: "Courier New", "Monaco", monospace;
color: var(--text);
background:
linear-gradient(var(--grid) 1px, transparent 1px),
linear-gradient(90deg, var(--grid) 1px, transparent 1px),
linear-gradient(180deg, #0d0a15 0%, #120f1d 100%);
background-size: 24px 24px, 24px 24px, auto;
line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
width: min(1120px, calc(100% - 32px));
margin: 0 auto;
}
.pixel-box {
background: var(--panel);
border: 4px solid var(--border);
box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.35);
}
.topbar {
position: sticky;
top: 0;
z-index: 20;
background: rgba(18, 15, 29, 0.92);
backdrop-filter: blur(8px);
border-bottom: 4px solid var(--border);
}
.topbar-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 14px 0;
}
.brand {
display: inline-flex;
align-items: center;
gap: 12px;
font-weight: 700;
letter-spacing: 1px;
}
.brand-badge,
.mini-badge {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 42px;
height: 42px;
padding: 0 10px;
background: var(--yellow);
color: #241300;
border: 4px solid var(--border);
box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
text-transform: uppercase;
}
.nav {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: 10px;
}
.nav a,
.button,
.chip {
padding: 8px 12px;
border: 4px solid var(--border);
background: var(--panel-2);
box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
transition: transform 0.15s ease;
}
.nav a:hover,
.button:hover,
.chip:hover { transform: translate(-2px, -2px); }
.button-primary { background: var(--cyan); color: #03131a; }
.button-secondary { background: var(--pink); color: #23061d; }
.chip { display: inline-block; padding: 4px 10px; }
.chip-green { background: var(--green); color: #0e240f; }
.chip-yellow { background: var(--yellow); color: #2a1b00; }
.chip-pink { background: var(--pink); color: #29081e; }
.hero {
padding: 56px 0 36px;
}
.hero-grid {
display: grid;
grid-template-columns: 1.25fr 0.9fr;
gap: 24px;
align-items: stretch;
}
.hero-main,
.hero-side { padding: 28px; }
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
font-size: clamp(32px, 5vw, 64px);
line-height: 1.1;
margin-bottom: 16px;
}
h2 {
font-size: clamp(24px, 3.6vw, 40px);
margin-bottom: 14px;
}
h3 {
font-size: 22px;
margin-bottom: 14px;
}
.lead {
font-size: 18px;
color: var(--muted);
max-width: 720px;
}
.accent-cyan { color: var(--cyan); }
.accent-pink { color: var(--pink); }
.accent-yellow { color: var(--yellow); }
.accent-green { color: var(--green); }
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 24px;
}
.stats,
.grid-2,
.grid-3,
.grid-4,
.compare-grid,
.footer-grid {
display: grid;
gap: 18px;
}
.stats { grid-template-columns: repeat(3, 1fr); margin-top: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.compare-grid { grid-template-columns: 1fr 1fr; }
.footer-grid { grid-template-columns: 1.2fr 0.9fr 0.9fr; }
.stat,
.card,
.step,
.command,
.footer-card,
.timeline-item,
.compare-card,
.tip,
.table-wrap,
.quote {
padding: 20px;
}
.stat strong,
.big-number {
display: block;
font-size: 28px;
margin-bottom: 8px;
}
.section {
padding: 32px 0;
}
.section-title {
margin-bottom: 20px;
}
.muted { color: var(--muted); }
ul.pixel-list {
padding-left: 20px;
margin: 0;
}
ul.pixel-list li { margin-bottom: 8px; }
.step-index,
.tiny-tag {
display: inline-block;
padding: 4px 10px;
margin-bottom: 12px;
border: 4px solid var(--border);
background: var(--yellow);
color: #241300;
box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.tiny-tag { background: var(--cyan); color: #06181a; }
.code {
padding: 14px;
border: 4px solid var(--border);
background: #130f21;
color: var(--green);
white-space: pre-wrap;
word-break: break-word;
box-shadow: inset 0 0 0 2px rgba(255,255,255,0.05);
}
table {
width: 100%;
border-collapse: collapse;
min-width: 720px;
}
th, td {
padding: 14px;
border: 4px solid var(--border);
text-align: left;
background: var(--panel);
vertical-align: top;
}
th {
background: var(--panel-2);
color: var(--yellow);
}
.table-wrap {
overflow-x: auto;
}
.timeline {
display: grid;
gap: 16px;
}
.timeline-item {
position: relative;
padding-left: 72px;
}
.timeline-item::before {
content: attr(data-step);
position: absolute;
left: 20px;
top: 20px;
width: 34px;
height: 34px;
display: grid;
place-items: center;
background: var(--pink);
color: #240818;
border: 4px solid var(--border);
box-shadow: 4px 4px 0 rgba(0,0,0,0.25);
font-weight: 700;
}
.image-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin-top: 18px;
}
.image-grid.image-grid-3 {
grid-template-columns: repeat(3, 1fr);
}
.image-card {
padding: 12px;
background: #1a1528;
}
.image-card img {
width: 100%;
border: 4px solid var(--border);
box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
background: #000;
}
.image-card p {
margin: 10px 0 0;
font-size: 14px;
color: var(--muted);
}
.link-list {
display: grid;
gap: 10px;
margin-top: 12px;
}
.blue-link {
color: #7cc7ff;
text-decoration: underline;
word-break: break-all;
}
.blue-link:hover {
color: #a8dbff;
}
.footer {
padding: 32px 0 48px;
}
.footer small { color: var(--muted); }
@media (max-width: 960px) {
.hero-grid,
.grid-2,
.grid-3,
.grid-4,
.stats,
.compare-grid,
.footer-grid {
grid-template-columns: 1fr;
}
.topbar-inner {
align-items: flex-start;
flex-direction: column;
}
.nav { justify-content: flex-start; }
}
</style>
</head>
<body>
<header class="topbar">
<div class="container topbar-inner">
<div class="brand">
<span class="brand-badge">CODEx</span>
<span>全网最详细的 Codex 入门教程</span>
</div>
<nav class="nav">
<a href="#overview">概览</a>
<a href="#get">获取方式</a>
<a href="#concepts">核心概念</a>
<a href="#features">功能配置</a>
<a href="#workflow">使用方法</a>
<a href="#summary">总结</a>
<a href="https://github.com/xianyu110/gpt-codex" target="_blank" rel="noopener noreferrer" title="GitHub 仓库">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor" style="vertical-align: middle;">
<path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"/>
</svg>
</a>
</nav>
</div>
</header>
<main>
<section class="hero" id="overview">
<div class="container hero-grid">
<div class="hero-main pixel-box">
<span class="chip chip-yellow">2026-03 最新整理</span>
<h1>Codex 入门教程</h1>
<p class="muted">更新时间:2026-03 | 作者:MaynorAI</p>
<p class="lead">内容简介:这版首页基于 README 重组,重点覆盖 Codex 的定位、获取方式、核心概念、功能配置和使用流程,帮助你快速建立对 Thread、Plan、Skills 等机制的整体理解。</p>
<div class="hero-actions">
<a class="button button-primary" href="#get">立即查看获取方式</a>
<a class="button button-secondary" href="#workflow">开始上手</a>
<a class="button" href="#quickref">查看速查卡</a>
</div>
<div class="card pixel-box" style="margin-top: 22px; background: #2f1f12;">
<span class="chip chip-yellow">重点</span>
<h3 style="margin-top: 14px;">如何获取 Codex</h3>
<div class="grid-2">
<div>
<p><strong class="accent-yellow">方式一:官网订阅</strong></p>
<p class="muted">codex 20刀充值链接(自备魔法)</p>
<div class="link-list">
<a class="blue-link" href="https://maynorai.tqfk.xyz/item/10" target="_blank" rel="noopener noreferrer">官网订阅</a>
</div>
</div>
<div>
<p><strong class="accent-cyan">方式二:安装 cc-switch</strong></p>
<ul class="pixel-list muted">
<li><a class="blue-link" href="https://github.com/farion1231/cc-switch/releases/" target="_blank" rel="noopener noreferrer">下载安装</a></li>
<li><a class="blue-link" href="https://maynorai.tqfk.xyz/item/15" target="_blank" rel="noopener noreferrer">配置中转</a></li>
<li><a class="blue-link" href="https://ai.feishu.cn/wiki/JnefwEQRKiNyg6kTnN4cNphnnSh?from=from_copylink" target="_blank" rel="noopener noreferrer">配置教程</a></li>
</ul>
</div>
</div>
</div>
<div class="stats">
<div class="stat pixel-box">
<strong class="accent-green">GPT-5.3-codex</strong>
<span class="muted">README 中强调的 Codex 核心编程模型</span>
</div>
<div class="stat pixel-box">
<strong class="accent-yellow">2 层结构</strong>
<span class="muted">工作区文件夹 + Thread 任务线,降低上下文污染</span>
</div>
<div class="stat pixel-box">
<strong class="accent-cyan">Plan + Skills</strong>
<span class="muted">先规划、再开发,复杂项目更稳</span>
</div>
</div>
</div>
<aside class="hero-side pixel-box">
<h3>README 提炼</h3>
<div class="timeline">
<div class="timeline-item pixel-box" data-step="1">
<strong>定位</strong>
<div class="muted">Codex 是 OpenAI 面向编程场景的 Agent 产品,对标 Claude Code。</div>
</div>
<div class="timeline-item pixel-box" data-step="2">
<strong>核心价值</strong>
<div class="muted">把“写代码”扩展成通用任务执行能力,线程化管理让项目更可控。</div>
</div>
<div class="timeline-item pixel-box" data-step="3">
<strong>推荐习惯</strong>
<div class="muted">大项目先用 Plan Mode,涉及前端则明确强调前端设计要求。</div>
</div>
</div>
</aside>
</div>
</section>
<section class="section" id="get">
<div class="container">
<div class="section-title">
<span class="tiny-tag">01 获取方式</span>
<h2>先知道它是什么,再决定怎么接入</h2>
<p class="muted">README 给了官网订阅、cc-switch 方案和桌面端安装路径。这里按用途拆开。</p>
</div>
<div class="grid-3">
<article class="card pixel-box">
<h3>Codex 是什么</h3>
<p class="muted">它是 OpenAI 的编程 Agent 产品,和 Claude Code 一样不是单纯聊天,而是围绕项目目录、线程、执行能力来做任务推进。</p>
<div class="code">Codex = 编程 Agent
更强工程执行感
更接近通用 Agent</div>
<div class="image-grid">
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358257887_image.png#imgIndex=8" alt="Codex 模型介绍配图">
<p>模型介绍配图</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358264919_image.png#imgIndex=11" alt="Codex 首页界面">
<p>Codex 首页界面</p>
</div>
</div>
</article>
<article class="card pixel-box">
<h3>方式一:官网订阅</h3>
<p class="muted">codex 20刀充值链接(自备魔法)</p>
<div class="link-list">
<a class="blue-link" href="https://maynorai.tqfk.xyz/item/10" target="_blank" rel="noopener noreferrer">官网订阅</a>
</div>
<div class="image-grid">
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358235775_image.png#imgIndex=9" alt="下载应用按钮">
<p>下载应用按钮</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358277038_image.png#imgIndex=10" alt="Mac 安装包界面">
<p>Mac 安装包界面</p>
</div>
</div>
</article>
<article class="card pixel-box">
<h3>方式二:安装 cc-switch</h3>
<table>
<thead>
<tr>
<th>步骤</th>
<th>说明</th>
<th>链接</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>下载安装</td>
<td><a class="blue-link" href="https://github.com/farion1231/cc-switch/releases/" target="_blank" rel="noopener noreferrer">GitHub</a></td>
</tr>
<tr>
<td>2</td>
<td>配置中转API(每天100刀额度)</td>
<td><a class="blue-link" href="https://maynorai.tqfk.xyz/item/15" target="_blank" rel="noopener noreferrer">中转额度</a></td>
</tr>
<tr>
<td>3</td>
<td>详细配置教程</td>
<td><a class="blue-link" href="https://ai.feishu.cn/wiki/JnefwEQRKiNyg6kTnN4cNphnnSh?from=from_copylink" target="_blank" rel="noopener noreferrer">飞书文档</a></td>
</tr>
</tbody>
</table>
</article>
</div>
</div>
</section>
<section class="section" id="concepts">
<div class="container">
<div class="section-title">
<span class="tiny-tag">02 核心概念</span>
<h2>理解 Threads,才算真正会用 Codex</h2>
<p class="muted">README 的重点不是安装命令,而是这套工作组织方式:文件夹是工作区,Thread 是具体任务线。</p>
</div>
<div class="compare-grid">
<article class="compare-card pixel-box">
<h3>两层结构</h3>
<table>
<thead>
<tr>
<th>层级</th>
<th>名称</th>
<th>作用</th>
</tr>
</thead>
<tbody>
<tr>
<td>第一层</td>
<td>文件夹 / 工作区</td>
<td>承载项目目录、资料和代码</td>
</tr>
<tr>
<td>第二层</td>
<td>Thread</td>
<td>围绕单一目标推进的任务对话线</td>
</tr>
</tbody>
</table>
</article>
<article class="compare-card pixel-box">
<h3>为什么这样设计</h3>
<ul class="pixel-list">
<li>不同任务拆进不同 Thread,减少上下文串味</li>
<li>文件和过程分离,查找路径更清晰</li>
<li>中断后容易续写,不容易整锅乱掉</li>
<li>适合一个项目里并行推进多个目标</li>
</ul>
<p class="muted">黄金法则:同一个文件夹只做一个大方向,同一个 Thread 只推进一件具体的事。</p>
</article>
</div>
<div class="image-grid image-grid-3">
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358264919_image.png#imgIndex=11" alt="Threads 首页界面">
<p>Threads 首页界面</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358266229_image.png#imgIndex=15" alt="添加项目文件夹入口">
<p>添加项目文件夹入口</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358248581_image.png#imgIndex=16" alt="添加项目后开 Thread">
<p>添加项目后开 Thread</p>
</div>
</div>
</div>
</section>
<section class="section" id="projects">
<div class="container">
<div class="section-title">
<span class="tiny-tag">03 项目管理</span>
<h2>先把文件夹分清,再谈后续效率</h2>
<p class="muted">README 明确建议先做好目录分层,例如学习资料、真实项目、沙盒和通用工具分开。</p>
</div>
<div class="grid-2">
<article class="card pixel-box">
<h3>推荐结构</h3>
<div class="code">dev/
├── Learning/
├── notes/
├── Projects/
├── sandbox/
└── tools/</div>
</article>
<article class="card pixel-box">
<h3>管理原则</h3>
<ul class="pixel-list">
<li>不要什么对话都乱开新 Thread</li>
<li>真实开发项目集中放在 Projects</li>
<li>工作区负责文件,Thread 负责目标推进</li>
<li>前期分类做好,后面才不会越用越乱</li>
</ul>
</article>
</div>
<div class="image-grid image-grid-3">
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358310568_image.png#imgIndex=12" alt="推荐文件夹结构">
<p>推荐文件夹结构</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358254412_image.png#imgIndex=13" alt="Projects 示例">
<p>Projects 示例</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358297085_image.png#imgIndex=14" alt="飞书机器人案例">
<p>飞书机器人案例</p>
</div>
</div>
</div>
</section>
<section class="section" id="features">
<div class="container">
<div class="section-title">
<span class="tiny-tag">04 功能配置</span>
<h2>图形化能力,是 README 反复强调的优势</h2>
<p class="muted">Codex 不只是命令执行,还把定时任务、Skills、全局规则和权限配置做成了图形化入口。</p>
</div>
<div class="grid-4">
<article class="card pixel-box">
<h3>定时任务</h3>
<p class="muted">可定时巡检服务器、自动修错并通过机器人发送摘要。</p>
</article>
<article class="card pixel-box">
<h3>Skills</h3>
<p class="muted">支持图形化管理技能,比纯命令行方式更容易理解与维护。</p>
</article>
<article class="card pixel-box">
<h3>Skill Creator</h3>
<p class="muted">可直接通过自然语言创建技能,README 把这一点当作明显优势。</p>
</article>
<article class="card pixel-box">
<h3>Personalization</h3>
<p class="muted">相当于图形界面的 `AGENTS.md`,可设置全局规则与工作偏好。</p>
</article>
</div>
<div class="grid-3" style="margin-top: 18px;">
<article class="tip pixel-box">
<h3>General 推荐</h3>
<ul class="pixel-list">
<li>保持电脑开机:打开</li>
<li>Follow-up behavior:`steer`</li>
</ul>
</article>
<article class="tip pixel-box">
<h3>权限建议</h3>
<ul class="pixel-list">
<li>首页权限改成 `Full access`</li>
<li>减少频繁确认,提升连贯执行效率</li>
</ul>
</article>
<article class="tip pixel-box">
<h3>推理深度</h3>
<ul class="pixel-list">
<li>日常开发:`High`</li>
<li>难活 / 硬活 / 大活:`Extra High`</li>
</ul>
</article>
</div>
<div class="image-grid image-grid-3">
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358230424_image.png#imgIndex=17" alt="定时任务界面">
<p>定时任务界面</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358321275_image.png#imgIndex=18" alt="定时任务效果">
<p>定时任务效果</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358326352_image.png#imgIndex=19" alt="Skills 界面">
<p>Skills 界面</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358326136_image.png#imgIndex=20" alt="New Skill 按钮">
<p>New Skill 按钮</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358309454_image.png#imgIndex=21" alt="Skill Creator 输入界面">
<p>Skill Creator 输入界面</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358287646_image.png#imgIndex=22" alt="General 设置">
<p>General 设置</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358223960_image.png#imgIndex=23" alt="Personalization 设置">
<p>Personalization 设置</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358260172_image.png#imgIndex=24" alt="Full access 权限设置">
<p>Full access 权限设置</p>
</div>
</div>
</div>
</section>
<section class="section" id="workflow">
<div class="container">
<div class="section-title">
<span class="tiny-tag">05 使用方法</span>
<h2>推荐工作流:先 Plan,再开发,再盯前端效果</h2>
<p class="muted">这一段严格按 README 的使用习惯来组织,而不是继续沿用旧页面的 CLI 教程写法。</p>
</div>
<div class="grid-2">
<article class="step pixel-box">
<span class="step-index">STEP 1</span>
<h3>Plan Mode</h3>
<p class="muted">大型项目起始阶段先进入 `/plan`,只做规划,不急着写代码。等实现计划稳定后,再确认执行。</p>
<div class="code">大型项目
-> 先规划
-> 形成规范与实现计划
-> 再正式开发</div>
</article>
<article class="step pixel-box">
<span class="step-index">STEP 2</span>
<h3>Status 与推理档位</h3>
<p class="muted">用 `/status` 看当期用量;常规任务用 High,需要更稳时再拉到 Extra High。</p>
<div class="code">/status
Low / Medium / High / Extra High</div>
</article>
<article class="step pixel-box">
<span class="step-index">STEP 3</span>
<h3>语音 / 文字描述需求</h3>
<p class="muted">README 明确建议直接“用嘴描述需求”,尤其在复杂任务里,把要求讲清楚比堆 prompt 更重要。</p>
</article>
<article class="step pixel-box">
<span class="step-index">STEP 4</span>
<h3>前端要单独盯</h3>
<p class="muted">README 特别指出前端效果要第一时间看;效果不好就重做,而不是将就。</p>
</article>
</div>
<div class="image-grid image-grid-3">
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358329472_image.png#imgIndex=26" alt="Plan Mode 图标">
<p>Plan Mode 图标</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358329359_image.png#imgIndex=27" alt="Plan Mode 案例">
<p>Plan Mode 案例</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358281596_image.png#imgIndex=28" alt="计划产出结果">
<p>计划产出结果</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358293804_image.png#imgIndex=29" alt="进入开发状态">
<p>进入开发状态</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358245009_image.png#imgIndex=31" alt="推理深度界面">
<p>推理深度界面</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358337645_image.png#imgIndex=32" alt="语音输入开发方式">
<p>语音输入开发方式</p>
</div>
</div>
</div>
</section>
<section class="section" id="commands">
<div class="container">
<div class="section-title">
<span class="tiny-tag">06 命令速览</span>
<h2>常用斜杠命令与并行开发习惯</h2>
</div>
<div class="grid-3">
<article class="command pixel-box">
<h3>`/plan`</h3>
<p class="muted">进入规划模式,适合从 0 到 1 的大任务。</p>
</article>
<article class="command pixel-box">
<h3>`/status`</h3>
<p class="muted">查看用量和剩余额度,判断当前周期资源情况。</p>
</article>
<article class="command pixel-box">
<h3>多 Thread 并行</h3>
<p class="muted">README 提到可以同时推进多个 Thread,提高并行开发效率。</p>
</article>
</div>
<div class="image-grid image-grid-3">
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358312531_image.png#imgIndex=25" alt="斜杠命令界面">
<p>斜杠命令界面</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358301530_image.png#imgIndex=30" alt="Status 用量界面">
<p>Status 用量界面</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358284315_image.png#imgIndex=34" alt="多 Thread 并行开发">
<p>多 Thread 并行开发</p>
</div>
<div class="image-card pixel-box">
<img src="https://upload.maynor1024.live/file/1774358238088_image.png#imgIndex=33" alt="前端能力问题示意">
<p>前端能力问题示意</p>
</div>
</div>
</div>
</section>
<section class="section" id="summary">
<div class="container">
<div class="section-title">
<span class="tiny-tag">08 总结</span>
<h2>会用 AI 写代码,会变成像会用 Excel 一样基础</h2>
</div>
<div class="quote pixel-box">
<p class="lead">README 的结论很明确:对程序员来说,Codex 是提效工具;对非程序员来说,它更像是把原本跨不过去的门槛直接铲平。真正关键的不是会不会写 prompt,而是会不会组织任务、约束目标、检查结果。</p>
</div>
</div>
</section>
<section class="section" id="quickref">
<div class="container">
<div class="section-title">
<span class="tiny-tag">09 快速参考卡</span>
<h2>把 README 最后那张速查卡直接做成页面模块</h2>
</div>
<div class="table-wrap pixel-box">
<table>
<thead>
<tr>
<th>项目</th>
<th>推荐值 / 结论</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>核心模型</td>
<td>GPT-5.3-codex</td>
<td>README 中作为 Codex 主打编程模型出现</td>
</tr>
<tr>
<td>Follow-up behavior</td>
<td>steer</td>
<td>便于开发过程中持续微调任务方向</td>
</tr>
<tr>
<td>权限</td>
<td>Full access</td>
<td>减少反复确认,更接近持续执行模式</td>
</tr>
<tr>
<td>日常推理档位</td>
<td>High</td>
<td>速度与稳定性相对平衡</td>
</tr>
<tr>
<td>复杂任务档位</td>
<td>Extra High</td>
<td>用于难活、硬活、大活</td>
</tr>
<tr>
<td>常用命令</td>
<td>`/plan`、`/status`</td>
<td>一个管规划,一个看资源使用</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
</main>
</body>
</html>