[置顶] Hello, hugo!
记录 wordpress 迁移至 hugo+papermod 的过程, 包含环境搭建、博客美化、功能实现、速度优化等…… ...
Agent | Claude Code 配置指南
Claude Code CLI 完整配置指南,包含快速配置流程、核心工具详解、扩展生态系统和实用技巧,助你打造高效的 AI 编程环境 ...
Agent | skills 配置
0 前言 记录一下我为 agent 配置使用 skills 的方式, 同时也是我 skills 列表的一个备忘 1 安装 推荐使用 skills 包进行管理, 并且将所有 skills 放到 ~/.agent/skills 目录统一管理, 大部分 agent 都支持此目录, -a amp 参数就是让 skills 安装到 amp code 的默认目录, 即 ~/.agent/skills npx -y skills add https://github.com/konbakuyomu/smartsearch --skill smart-search-cli -g -a amp npx -y skills add https://github.com/github/awesome-copilot --skill git-commit -g -a amp npx -y skills add https://github.com/anthropics/skills --skill frontend-design -g -a amp npx -y skills add https://github.com/anthropics/skills --skill pptx docx xlsx pdf -g -a amp # hermes 专 ...
Agent | pi 配置指南
0 前言 这篇笔记记录我现在使用的 Pi Agent 配置. 目标不是介绍所有功能, 而是在系统重装后, 能按顺序恢复到当前可用状态. 本文参考如下内容: Pi GitHub Pi Quickstart Pi Settings Pi Skills pi-provider-newapi 1 安装 Pi Agent 1.1 安装主程序 使用 pnpm 安装: pnpm add -g --ignore-scripts @earendil-works/pi-coding-agent mkdir -p ~/.pi/agent chmod 700 ~/.pi/agent 1.2 settings.json 创建 ~/.pi/agent/settings.json, 内容如下: { "theme": "dark", "defaultProvider": "lvbibir-newapi", "defaultModel": "gpt-5.6-sol", "defaultThinkingLevel": "high", "outputPad": 0, "treeFilterMode": "default", "tuiMode": "fullscreen" } 1.3 SYSTEM.md ~/.pi/agent/SYSTEM.md 是当前全局提示词, 它会 ...
Agent | hermes 配置指南
0 前言 vps (ubuntu2404) 安装配置 hermes agent 的备忘 1 安装 curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash eval "$(hermes completion bash)" 2 profile NAME="chat-lvbibir" NAME="chat-serious" mkdir -p "/root/hermes/${NAME}" hermes profile create "${NAME}" --clone hermes -p "${NAME}" config set terminal.cwd "/root/hermes/${NAME}" hermes -p "${NAME}" config set terminal.home "/root/hermes/${NAME}" hermes -p "${NAME}" config set gateway.media_delivery_allow_dirs "/root/hermes/${NAME}" hermes -p "${NAME}" config set cron.wrap_response false hermes -p "${NAME}" config set delegation.model gpt-5.5 hermes -p "${NAME}" config set delegation.provider custom hermes -p "${NAME}" config set delegation.base_url http://127.0.0.1:3000/v1 hermes -p "${NAME}" config set delegation.api_key sk-******* hermes -p "${NAME}" config set delegation.api_mode codex_responses hermes -p "${NAME}" config set delegation.reasoning_effort high hermes -p "${NAME}" config set agent.service_tier priority # 关闭不需要的 tools, 主要是 browser, 在低内存的 vps 中会导致问题 hermes ...
easytier 部署
使用阿里云 vps 部署 easytier 中继服务器及 easytier-web 配置管理器 ...
wsl | win10 安装 wsl2
win10 系统安装 wsl2(ubuntu2404) ...
nodejs | fnm + pnpm 开发环境配置
使用 fnm 管理 Node.js 版本, pnpm 管理依赖, 包含网络优化与警告抑制配置 ...
vim | 基础配置和使用
本文介绍一下 vim 常用的操作, vimrc 常用配置, vscode 中 vim 插件的额外功能等 ...
centos7 | 升级内核
0 前言 ⚠️ 注意:CentOS 7 已于 2024-06-30 EOL,ELRepo 已停止提供新内核。以下使用归档版本。 1 可用内核版本 类型 最新版本 发布日期 kernel-lt (长期支持) 5.4.278 2024-06-16 kernel-ml (主线版) 6.9.7 2024-06-27 推荐:生产环境使用 kernel-lt 5.4.278(更稳定) 2 升级步骤 2.1 升级前准备 # 查看当前内核 uname -r # 备份重要数据(建议创建快照) 2.2 下载 ...
windows | rime 输入法 & 雾凇方案
介绍一下 windows 下安装 rime 小狼毫输入法使用雾凇方案, 以及一些好用的配置 ...
shell | 磁盘空间分析脚本
一个高性能的 Bash 磁盘分析脚本,用于快速定位磁盘空间占用问题. ...
wsl | 自动更新系统代理
wsl 中配置系统代理, apt 代理, git 代理, 以及 docker 代理, 包含 clash 等客户端提供的代理或者使用指定的代理地址 ...
Linux cat 和 tee 命令写入文件
详细介绍 Linux 中使用 cat 和 tee 命令写入文件的各种方式, 包括 heredoc 语法、EOF 引号和连字符的作用 ...
python | 使用 uv 管理你的 python 环境
介绍使用 uv 管理 Python 版本, 第三方模块和项目依赖 ...