vscode-templete/index.html

55 lines
2.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>__USERNAME__ · AbleFlow 工作区</title>
<style>
:root { --fg:#1a1a1a; --muted:#6b7280; --line:#e5e7eb; --accent:#b45309; --bg:#fafaf9; }
* { box-sizing:border-box; margin:0; }
body { font-family:-apple-system,"PingFang SC","Microsoft YaHei",sans-serif; background:var(--bg); color:var(--fg); max-width:880px; margin:0 auto; padding:48px 24px; line-height:1.7; }
h1 { font-size:22px; font-weight:600; letter-spacing:.02em; }
h1 small { color:var(--muted); font-weight:400; font-size:14px; margin-left:10px; }
.rule { border-top:2px solid var(--fg); margin:14px 0 28px; }
h2 { font-size:15px; font-weight:600; color:var(--accent); margin:28px 0 10px; }
table { width:100%; border-collapse:collapse; font-size:14px; }
th,td { text-align:left; padding:8px 10px; border-bottom:1px solid var(--line); }
th { color:var(--muted); font-weight:500; font-size:13px; }
code { background:#f3f4f6; padding:1px 6px; border-radius:4px; font-size:13px; }
.links a { display:inline-block; margin:0 16px 8px 0; color:var(--accent); text-decoration:none; font-size:14px; }
.links a:hover { text-decoration:underline; }
footer { margin-top:40px; color:var(--muted); font-size:12px; border-top:1px solid var(--line); padding-top:12px; }
</style>
</head>
<body>
<h1>__USERNAME__ 的工作区<small>AbleFlow · flow.ablemind.cc</small></h1>
<div class="rule"></div>
<h2>目录约定</h2>
<table>
<tr><th>目录</th><th>用途</th></tr>
<tr><td><code>workspace/YYMMDD/</code></td><td>按日期组织data/ 中间数据output/ 产物README.md 记录进展)</td></tr>
<tr><td><code>wiki/{topic}/</code></td><td>知识沉淀auto-wiki</td></tr>
<tr><td><code>scripts/</code></td><td>常用脚本</td></tr>
</table>
<h2>平台入口</h2>
<div class="links">
<a href="https://ablemind.cc" target="_blank">门户</a>
<a href="https://skill.ablemind.cc" target="_blank">技能市场</a>
<a href="https://git.ablemind.cc" target="_blank">代码仓库</a>
<a href="https://api.ablemind.cc" target="_blank">API 中转站</a>
<a href="https://docs.ablemind.cc" target="_blank">使用手册</a>
</div>
<h2>常用操作</h2>
<table>
<tr><td>启动 Claude Code</td><td>终端输入 <code>claude</code></td></tr>
<tr><td>提交工作成果</td><td><code>git add -A && git commit -m "..." && git push</code></td></tr>
<tr><td>修改模型配置</td><td>flow.ablemind.cc 设置页(或联系管理员)</td></tr>
</table>
<footer>工作边界:所有操作限于本工作区内 · 详见 CLAUDE.md</footer>
</body>
</html>