WWW.YOUINFO.SITE
标签聚合 上头

/tag/上头

LinuxDo 最新话题 · 2026-06-09 23:57:03+08:00 · tech

最开始对各种 AI 订阅简直上头,土区 GPT、尼区 Claude 都折腾过,Claude 甚至还拼过两次 Team 车。但现在真心觉得,这么来回折腾太心累了。 主要是现在像 codex 这类 API 中转站倍率贼低,算下来特别便宜,平时聊天查问题完全够用,就彻底断了开官方 Plus 的念头。 今天又花 10 块钱上了个 Gemini 的年费车,开着反重力在网页端来回横跳。折腾一圈下来,讲真,现在感觉这几个头部模型用起来的差距,真的没那么大了,我都怀疑自己是 不是ai 阳痿了,还是真没什么大的差距了呢?佬们 13 个帖子 - 5 位参与者 阅读完整话题

LinuxDo 最新话题 · 2026-06-08 12:17:29+08:00 · tech

最近上头要求关闭没有余额的香港投资账户,我想着5月18日刚刚肉身去开的户头怎么能不体验一把呢。 5月29日,在中银=》投资=》碎股易,买入35股小米W,佣金只有2.5港币,买了就赚 。 但是接下来几天行情直下,6月4日卖出35股小米W时,深深体会到大家说的千万不要在银行上进行交易,手续费极高——100HKD佣金。 尝试申诉,开户经理打电话跟我说,问了投资部的同事,目前还没有先例,所以只能作罢 1 个帖子 - 1 位参与者 阅读完整话题

LinuxDo 最新话题 · 2026-06-07 23:34:32+08:00 · tech

pi 可太上头了 核心配置: { "lastChangelogVersion": "0.78.1", "packages": [ "npm:pi-mcp-adapter", "npm:@ff-labs/pi-fff", "npm:@juicesharp/rpiv-ask-user-question", "npm:@gotgenes/pi-permission-system", "npm:@juicesharp/rpiv-args", "npm:@narumitw/pi-goal", "npm:@hsingjui/pi-hooks", "npm:@vanillagreen/pi-skills-manager", "npm:pi-cache-optimizer", "npm:pi-tool-display", "npm:pi-hash-anchored-edit", "npm:@tifan/pi-inline-skills", "npm:pi-agentsmd", "npm:@agnishc/edb-context-viewer", "npm:@sting8k/pi-vcc", "npm:@tintinweb/pi-subagents", "npm:@tintinweb/pi-tasks", "npm:pi-system-prompt", "npm:pi-bg-run", "npm:pi-aliases" ], "defaultProvider": "openai-responses", "defaultModel": "gpt-5.5", "images": { "blockImages": true, "autoResize": true }, "showHardwareCursor": false, "terminal": { "showTerminalProgress": true, "clearOnShrink": false }, "steeringMode": "all", "transport": "auto", "hideThinkingBlock": false, "quietStartup": true, "treeFilterMode": "all", "doubleEscapeAction": "tree", "theme": "dark", "defaultThinkingLevel": "high", "autocompleteMaxVisible": 1000000, "followUpMode": "all", "compaction": { "enabled": true, "reserveTokens": 16384, "keepRecentTokens": 32768 }, "collapseChangelog": true, "retry": { "enabled": true, "maxRetries": 10, "baseDelayMs": 2000, "provider": { "timeoutMs": 3600000, "maxRetries": 0, "maxRetryDelayMs": 360000 } }, "thinkingBudgets": { "minimal": 1024, "low": 4096, "medium": 10240, "high": 16384, "xHigh": 32768 }, "branchSummary": { "skipPrompt": true } } 如果这些配置你不知道什么意思,那很简单,把pi安装后,让他为你解释每一个值。 # Pi 已安装扩展包配置整理 ## 1. `pi-mcp-adapter` 2.9.0 **证据**:`pi-mcp-adapter/config.ts`, `pi-mcp-adapter/types.ts`, `pi-mcp-adapter/index.ts`。 ### 配置文件读取顺序/位置 `loadMcpConfig()` 会合并这些来源,后面的源覆盖前面的同名 server: 1. 共享全局:`~/.config/mcp/mcp.json` 2. Pi 全局:`~/.pi/agent/mcp.json`(受 `PI_CODING_AGENT_DIR` 影响) 3. 项目共享:`<cwd>/.mcp.json` 4. 项目 Pi:`<cwd>/.pi/mcp.json` 也可用 Pi flag 覆盖全局 Pi 配置路径: ```bash pi --mcp-config /path/to/mcp.json 可导入外部 MCP 配置 根字段 imports 支持: { "imports": ["cursor", "claude-code", "claude-desktop", "codex", "windsurf", "vscode"] } 对应候选路径包括: cursor: ~/.cursor/mcp.json claude-code: ~/.claude/mcp.json , ~/.claude.json , ~/.claude/claude_desktop_config.json claude-desktop: ~/Library/Application Support/Claude/claude_desktop_config.json codex: ~/.codex/config.json windsurf: ~/.windsurf/mcp.json vscode: <cwd>/.vscode/mcp.json 根配置结构 { "mcpServers": { "serverName": { "command": "npx", "args": ["-y", "some-mcp"], "env": {}, "cwd": "/optional/cwd", "url": "https://example.com/mcp", "headers": {}, "auth": "oauth", "bearerTokenEnv": "TOKEN_ENV", "lifecycle": "lazy", "idleTimeout": 10, "exposeResources": true, "directTools": false, "excludeTools": [], "debug": false } }, "imports": [], "settings": {} } mcpServers.* 配置项 字段 类型/可选值 默认/行为 建议 command string stdio MCP 命令 本地 MCP 用 command + args args string[] [] 固定版本优于裸 latest env object 传给子进程 API key 用环境变量,不写明文 cwd string 当前目录 需要项目上下文时设置 url string HTTP MCP 远程 MCP 用 headers object HTTP headers 避免写 secret,优先 bearerTokenEnv auth "oauth" / "bearer" / false URL 存在时可自动检测 OAuth OAuth 服务用默认/ oauth ;静态 token 用 bearer bearerToken string 静态 Bearer 不建议,除非临时测试 bearerTokenEnv string 从环境变量取 Bearer 推荐 oauth object / false SDK 动态注册 优先省略;需要固定 client 时再填 lifecycle "keep-alive" / "lazy" / "eager" 源码未在类型处写默认 多数用 lazy ;高频服务用 keep-alive idleTimeout number 分钟; 0 禁用 覆盖全局 settings.idleTimeout 默认 10 左右;耗资源服务不要 0 exposeResources boolean 是否暴露资源 需要 MCP resources 才开 directTools boolean / string[] 覆盖全局 direct tools 常用少量工具可用 string[] 精确暴露 excludeTools string[] 排除工具/资源 建议排除危险或噪声工具 debug boolean 显示 server stderr 排错时 true,日常 false settings 配置项 字段 可选值 建议值 toolPrefix "server" / "none" / "short" server ,避免工具重名 idleTimeout number 分钟, 0 禁用 10 ;不要长期 keep-alive 太多 server directTools boolean 少量高频 MCP 可设 true ,否则默认即可 disableProxyTool boolean 保持 false ,除非只想 direct tools autoAuth boolean 可信 MCP 可 true ;不确定用 false /默认 sampling boolean 默认关闭更安全;需要 MCP sampling 才开 samplingAutoApprove boolean 建议 false ,避免无确认模型调用 elicitation boolean 需要 MCP 交互式 elicitation 才开 elicitationAutoOpenUrls boolean 建议 false authRequiredMessage string,支持 ${server} 可自定义为团队提示 推荐示例 { "mcpServers": { "filesystem": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/rao/project"], "lifecycle": "lazy", "idleTimeout": 10, "debug": false } }, "settings": { "toolPrefix": "server", "idleTimeout": 10, "directTools": false, "disableProxyTool": false, "sampling": false, "samplingAutoApprove": false, "elicitationAutoOpenUrls": false } } 2. @ff-labs/pi-fff 0.9.1 证据 : @ff-labs/pi-fff/src/index.ts , README。 配置入口 pi-blackhole 无 JSON 配置文件。配置来源优先级:Pi flag > 环境变量 > 默认值。 配置 来源 可选值/含义 默认 建议 mode --fff-mode / PI_FFF_MODE tools-and-ui / tools-only / override tools-and-ui 当前默认很好;若与其他编辑器 UI 冲突用 tools-only frecency DB --fff-frecency-db / FFF_FRECENCY_DB 自定义 frecency 数据库路径 fff-node 默认 通常不设 history DB --fff-history-db / FFF_HISTORY_DB 自定义 query history 数据库路径 fff-node 默认 通常不设 multi grep PI_FFF_MULTIGREP=1 启用实验性 multi_grep 关闭 不建议开启,源码注释称可能有害 推荐:保持默认;如你只想要 ffgrep/fffind 工具、不想替换 editor mention UI: PI_FFF_MODE=tools-only pi 3. pi-tool-display 0.4.2 证据 : pi-tool-display/src/config-store.ts , src/types.ts , config/config.example.json 。 配置文件 ~/.pi/agent/extensions/pi-tool-display/config.json 受 PI_CODING_AGENT_DIR 影响。 配置项 字段 可选值/范围 默认 建议 registerToolOverrides.read/grep/find/ls/bash/edit/write boolean 全 true 保持 true;若与其它工具展示扩展冲突,再关闭对应项 enableNativeUserMessageBox boolean true 保持 true readOutputMode hidden / summary / preview hidden hidden ,避免重复占屏;想看 read 摘要可 summary searchOutputMode hidden / count / preview hidden hidden 或 count mcpOutputMode hidden / summary / preview hidden summary 更利于排查 MCP;安静模式用 hidden previewLines 1–80 8 8–12 expandedPreviewMaxLines 0–20000 4000 2000–4000 bashOutputMode opencode / summary / preview opencode 保持 opencode bashCollapsedLines 0–80 10 10–20 diffViewMode auto / split / unified auto 保持 auto diffIndicatorMode bars / classic / none bars 保持 bars diffSplitMinWidth 70–240 120 宽屏 120;窄屏 100 diffCollapsedLines 4–240 24 24–60 diffWordWrap boolean true 保持 true showTruncationHints boolean false 排查截断时 true showRtkCompactionHints boolean false 通常 false 推荐示例: { "registerToolOverrides": { "read": true, "grep": true, "find": true, "ls": true, "bash": true, "edit": true, "write": true }, "enableNativeUserMessageBox": true, "readOutputMode": "hidden", "searchOutputMode": "count", "mcpOutputMode": "summary", "previewLines": 10, "expandedPreviewMaxLines": 4000, "bashOutputMode": "opencode", "bashCollapsedLines": 12, "diffViewMode": "auto", "diffIndicatorMode": "bars", "diffSplitMinWidth": 120, "diffCollapsedLines": 32, "diffWordWrap": true, "showTruncationHints": false, "showRtkCompactionHints": false } 4. @juicesharp/rpiv-ask-user-question 1.18.2 证据 : @juicesharp/rpiv-ask-user-question/config.ts , @juicesharp/rpiv-config/config.ts 。 配置文件 ~/.config/rpiv-ask-user-question/config.json 配置项 只读 guidance : { "guidance": { "promptSnippet": "Ask structured clarification questions", "promptGuidelines": ["Use ask_user_question when concrete decisions are required."] } } 字段 类型 默认 建议 guidance.promptSnippet non-empty string 包内默认 tool prompt 通常不设 guidance.promptGuidelines non-empty string[] 包内默认 guidelines 除非你要覆盖/增强 LLM 使用策略,否则不设 备注:README 提到 locale 由 --locale → ~/.config/rpiv-i18n/locale.json → LANG/LC_ALL → English 解析,这是共享 i18n 行为,不是此包专属配置。 5. @juicesharp/rpiv-todo 1.18.2 证据 : @juicesharp/rpiv-todo/config.ts , @juicesharp/rpiv-config/config.ts 。 配置文件 ~/.config/rpiv-todo/config.json 配置项 同样只读 guidance : { "guidance": { "promptSnippet": "Track multi-step work with todo", "promptGuidelines": ["Use todo for work with 3+ steps."] } } 建议:通常不配置;保持包默认即可。locale 同上可由 ~/.config/rpiv-i18n/locale.json 或环境变量控制。 7. pi-cache-optimizer 2.5.5 证据 : pi-cache-optimizer/index.ts 。 配置入口 没有 JSON 配置文件;使用环境变量和 slash 命令。会写状态文件: ~/.pi/agent/pi-cache-optimizer-stats.json legacy 状态文件: ~/.pi/agent/deepseek-cache-optimizer-stats.json 环境变量 环境变量 值 默认/行为 建议 PI_CACHE_RETENTION long 扩展加载时自动设置为 long 保持自动 PI_CACHE_OPTIMIZER_OPENAI_CACHE_KEY string,最长 64 给 OpenAI prompt cache/session affinity 用 多会话/代理需要稳定命中时设置 PI_CACHE_OPTIMIZER_NO_OPENAI_CACHE_KEY 任意非空常用于 opt-out 禁用 OpenAI cache key 行为 通常不设 PI_CACHE_OPTIMIZER_NO_SKILL_COMPRESSION 1 禁用 skill block 压缩 仅发现 skill 提示异常时设置 PI_CACHE_OPTIMIZER_NO_PROMPT_REWRITE 1 禁用 system prompt 重排/改写 排查 prompt 被破坏时设置 命令 /cache-optimizer 支持诊断/开关(源码注册命令描述:Diagnose Pi cache configuration)。常用: /cache-optimizer stats /cache-optimizer doctor /cache-optimizer compat /cache-optimizer enable /cache-optimizer disable 建议:保持启用;如果遇到 system prompt 结构异常,临时: PI_CACHE_OPTIMIZER_NO_PROMPT_REWRITE=1 pi 8. pi-btw 0.4.0 证据 : pi-btw/README.md , pi-btw/extensions/btw.ts 。 无独立 JSON 配置文件。配置通过 slash 命令写入当前 session 的 hidden custom entries,随会话保存。 可配置项/命令 命令 含义 建议 `/btw:model [ clear]` 设置 BTW 侧线程专用模型;无参数显示当前有效模型 默认继承主线程;只有侧聊想用便宜/快模型时设置 `/btw:thinking [ clear]` 设置 BTW 侧线程 thinking level 默认继承;侧聊建议 off / low /btw:new 新建继承当前上下文的 BTW thread 按需 /btw:tangent 新建不继承主上下文的 tangent thread 做头脑风暴时用 /btw:inject 把 BTW 全线程注入主 agent 只在结论明确后用 /btw:summarize 总结 BTW thread 后注入主 agent 推荐优先于 inject,减少上下文污染 /btw:clear 清空 BTW thread 任务完成后清理 建议:不需要文件配置。BTW-only 模型建议设置为便宜快速模型;如果主线程是高成本模型,侧聊可用: /btw:model openai gpt-5-mini openai-responses /btw:thinking off 9. @gotgenes/pi-permission-system 10.2.0 证据 : src/config-paths.ts , src/config-loader.ts , config/config.example.json , src/types.ts 。 配置文件 新路径: 全局: ~/.pi/agent/extensions/pi-permission-system/config.json 项目: <cwd>/.pi/extensions/pi-permission-system/config.json legacy 路径仍会检测/读取并提示迁移: ~/.pi/agent/pi-permissions.jsonc <cwd>/.pi/agent/pi-permissions.jsonc 扩展根目录 config.json 合并顺序:legacy global → legacy extension → new global → legacy project → new project。项目新配置优先级最高。 顶层配置项 字段 类型 默认/行为 建议 debugLog boolean 未配置为空/false 行为 日常 false permissionReviewLog boolean example 为 true 建议 true,便于审计 yoloMode boolean false 强烈建议 false permission object 未配置时按扩展内部策略 强烈建议显式配置 example 里还有 toolInputPreviewMaxLength , toolTextSummaryMaxLength , piInfrastructureReadPaths ;当前 normalizeUnifiedConfig() 只归一化 debugLog , permissionReviewLog , yoloMode , permission ,这几个字段在本版本主配置 loader 中不会进入 UnifiedPermissionConfig 。是否被其它路径使用需以后单独验证;保守起见不依赖它们。 permission 规则 PermissionState 只有: allow / deny / ask 。 规则形态: { "permission": { "*": "ask", "read": "allow", "write": "deny", "bash": { "*": "ask", "git status": "allow" } } } 每个 surface 可以是字符串(相当于 * )或 pattern→action map。 常见 surface: * :默认兜底 path :路径规则 built-in tools: read , write , edit , bash mcp :MCP 工具 skill :skill 调用 external_directory :外部目录访问 推荐全局配置 { "$schema": "https://raw.githubusercontent.com/gotgenes/pi-permission-system/main/schemas/permissions.schema.json", "debugLog": false, "permissionReviewLog": true, "yoloMode": false, "permission": { "*": "ask", "path": { "*": "allow", "*.env": "deny", "*.env.*": "deny", "*.env.example": "allow" }, "read": "allow", "write": "ask", "edit": "ask", "bash": { "*": "ask", "git status": "allow", "git diff": "allow", "git log*": "allow", "ls*": "allow", "pwd": "allow" }, "mcp": { "*": "ask", "mcp_status": "allow", "mcp_list": "allow" }, "skill": { "*": "ask" }, "external_directory": { "*": "ask" } } } 建议:项目级配置可以比全局更严格;不要开 yoloMode ,除非是在一次性、可恢复的 sandbox。 10. @juicesharp/rpiv-args 1.18.2 证据 : @juicesharp/rpiv-args/args.ts , index.ts 。 无独立配置文件。它增强 /skill:<name> <args> 行为: 支持 $1 , $2 , $ARGUMENTS , $@ , ${@:N[:L]} 参数替换 支持 ${SKILL_DIR} , ${SESSION_ID} 变量替换 支持 skill body 中 shell 执行:inline !`cmd` 、block ! ... shell 超时可通过 skill frontmatter 配置: shell-timeout skill frontmatter 配置项 字段 类型/值 默认 建议 shell-timeout number 秒; 0 禁用超时 120 秒 有 shell 的 skill 建议显式 30–120;不建议 0 示例: --- shell-timeout: 60 --- 请分析:$ARGUMENTS 当前目录文件: !`find . -maxdepth 2 -type f | head -50` 11. pi-mono-multi-edit 1.7.3 证据 : pi-mono-multi-edit/index.ts 。 无配置文件、无环境变量。它替换/增强内置 edit 工具,新增: multi : 多个 exact replace 顺序执行 patch : Codex-style patch 建议:无需配置。使用层面建议: 小范围精确替换: path + oldText + newText 多处重复替换: multi 多文件/hunk: patch 不要同时使用 patch 和 classic 参数(源码会报错) 12. @narumitw/pi-goal 0.1.36 证据 : @narumitw/pi-goal/src/goal.ts 。 状态文件 ~/.pi/agent/pi-goal-state.json 若设置 PI_CODING_AGENT_DIR ,路径为: $PI_CODING_AGENT_DIR/pi-goal-state.json 可配置/命令 无独立配置文件;通过 /goal 命令控制 active goal: /goal [--tokens 100k] <goal_to_complete> /goal pause /goal resume /goal clear /goal edit ... --tokens 是 per-goal token budget,不是全局配置。 建议:不要手改状态文件;通过 /goal 管理。 13. @hsingjui/pi-hooks 0.0.2 证据 : @hsingjui/pi-hooks/src/config.ts , src/types.ts , README.zh-CN。 配置文件 读取并合并: 全局: ~/.pi/agent/settings.json 项目: <cwd>/.pi/settings.json 字段为顶层 hooks 。同一事件的 global hooks + project hooks 会拼接执行。 支持事件名 大小写/下划线别名都支持: SessionStart / session_start SessionEnd / session_end PreCompact / pre_compact PostCompact / post_compact PreToolUse / pre_tool_use PostToolUse / post_tool_use PostToolUseFailure / post_tool_use_failure UserPromptSubmit / user_prompt_submit Stop / stop 配置结构 { "hooks": { "PreToolUse": [ { "matcher": "bash", "hooks": [ { "type": "command", "command": "echo $PI_HOOK_CONTEXT", "timeout": 10, "async": false, "if": "true" } ] } ] } } 字段 类型/可选值 默认/行为 建议 group matcher regex string; undefined / "" / "*" 匹配全部 匹配事件值(toolName/prompt/source 等) 尽量写窄,避免全局误触发 group hooks Hook[] 空则无动作 按顺序少量执行 hook type 目前只有 "command" 必填 固定 hook command shell command 必填 命令要幂等,避免破坏性操作 hook if string 可选 复杂条件建议先不用 hook timeout number 秒 可选 建议 5–30 秒 hook async boolean false/同步 不影响主流程的通知类 hook 可 true 建议:用于审计、格式化、通知很适合;不要在 hook 里做慢任务或危险写操作。 14. @tintinweb/pi-subagents 0.10.0 证据 : src/settings.ts , src/custom-agents.ts , src/types.ts , src/agent-manager.ts , src/agent-runner.ts , README/CHANGELOG。 运行设置文件 全局: ~/.pi/agent/subagents.json (只读;手工维护) 项目: <cwd>/.pi/subagents.json ( /agents → Settings 会写入;覆盖全局) subagents.json 配置项 字段 类型/范围 默认 建议 maxConcurrent int 1–1024 4 3–4;机器弱/模型慢用 2 defaultMaxTurns int 0–10000;0=unlimited unlimited 建议 20–40,防 runaway;探索类可 10–20 graceTurns int 1–1000 5 3–5 defaultJoinMode async / group / smart smart 保持 smart schedulingEnabled boolean true 不用定时 agent 可 false,减少 tool schema scopeModels boolean false 若你使用 /scoped-models 控成本,建议 true 推荐项目配置: { "maxConcurrent": 3, "defaultMaxTurns": 30, "graceTurns": 5, "defaultJoinMode": "smart", "schedulingEnabled": false, "scopeModels": true } 自定义 agent 文件 发现路径: 项目: <cwd>/.pi/agents/*.md 全局: ~/.pi/agent/agents/*.md (受 PI_CODING_AGENT_DIR 影响) 项目同名覆盖全局;同名也可覆盖默认 agent(如 Explore.md )。 frontmatter 字段: 字段 类型/可选值 默认/行为 建议 display_name string 文件名 可读名称 description string 文件名 写清何时使用/何时不要用 tools CSV; * / all =全部内置;可含 ext:<tool> 全部内置 最小权限原则,只给需要的工具 disallowed_tools CSV 无 明确禁用 bash,write,edit 等 extensions / inherit_extensions true / false / none / CSV true 默认 true;安全敏感 agent 设 false skills / inherit_skills true / false / none / CSV true 只预加载必要 skills model provider/modelId 或可解析模型名 继承/调用参数 成本敏感 agent 固定便宜模型 thinking Pi thinking level 未设 探索 low/off;计划 medium max_turns non-negative int;0=unlimited 全局 default 建议显式 10–30 prompt_mode replace / append replace 专用 agent 用 replace ;需继承主系统提示用 append inherit_context boolean 调用方决定 默认 false;需要父会话上下文才 true run_in_background boolean 调用方决定 通常不在 frontmatter 固定 isolated boolean 调用方决定 安全探索 true;需要扩展工具则 false memory user / project / local 无 少用;长期专业 agent 可 project isolation worktree 无 改代码型 agent 可用,但需 git repo enabled boolean true 临时禁用设 false 示例: --- description: "只读探索代码位置,禁止修改文件。" tools: read, grep, find, ls disallowed_tools: bash, write, edit extensions: none skills: none thinking: low max_turns: 12 prompt_mode: replace --- 你是只读代码探索 agent。只查找和总结,不修改文件。 schedule 状态文件 启用 schedule 且创建定时任务后写入: <cwd>/.pi/subagent-schedules/<sessionId>.json 建议:如果你不用定时 agent,把 schedulingEnabled 设为 false 。 15. @narumitw/pi-statusline 0.1.36 证据 : @narumitw/pi-statusline/src/statusline.ts , README。 无 JSON 配置文件。唯一用户配置: 环境变量 可选值 默认 建议 PI_STATUSLINE_PRESET tokyo-night / classic tokyo-night 喜欢 powerline 样式用默认;兼容性/简洁优先用 classic 示例: PI_STATUSLINE_PRESET=classic pi 内部默认配置(源码固定,当前版本不可通过文件改): palette : candy density : compact separator : dot showLabels : false segments : brand, model, thinking, cwd, branch, tools, context, tokens, cost, time 还会读取 ~/.pi/agent/settings.json 和 <cwd>/.pi/settings.json 的 packages ,用于检测重复安装来源;这不是用户可调的 statusline 配置。 建议优先级 先配权限 : @gotgenes/pi-permission-system ,至少保护 .env 、写操作、bash、MCP。 再配 MCP :如果用 MCP,集中维护 ~/.pi/agent/mcp.json ;项目私有 MCP 放 <cwd>/.pi/mcp.json 。 再配 subagents :建议限制 maxConcurrent/defaultMaxTurns ,不用 schedule 就关掉。 UI 类默认即可 : pi-tool-display , pi-statusline , pi-fff 大多默认值可用。 高风险/强行为扩展谨慎 : pi-blackhole , pi-cache-optimizer 会改 compaction/prompt/cache 行为;出问题优先用 env 临时关闭相关能力。 快速推荐配置清单 ~/.pi/agent/extensions/pi-permission-system/config.json { "$schema": "https://raw.githubusercontent.com/gotgenes/pi-permission-system/main/schemas/permissions.schema.json", "debugLog": false, "permissionReviewLog": true, "yoloMode": false, "permission": { "*": "ask", "path": { "*": "allow", "*.env": "deny", "*.env.*": "deny", "*.env.example": "allow" }, "read": "allow", "write": "ask", "edit": "ask", "bash": { "*": "ask", "git status": "allow", "git diff": "allow", "git log*": "allow", "ls*": "allow", "pwd": "allow" }, "mcp": { "*": "ask", "mcp_status": "allow", "mcp_list": "allow" }, "skill": { "*": "ask" }, "external_directory": { "*": "ask" } } } <project>/.pi/subagents.json { "maxConcurrent": 3, "defaultMaxTurns": 30, "graceTurns": 5, "defaultJoinMode": "smart", "schedulingEnabled": false, "scopeModels": true } ~/.pi/agent/extensions/pi-tool-display/config.json { "registerToolOverrides": { "read": true, "grep": true, "find": true, "ls": true, "bash": true, "edit": true, "write": true }, "enableNativeUserMessageBox": true, "readOutputMode": "hidden", "searchOutputMode": "count", "mcpOutputMode": "summary", "previewLines": 10, "expandedPreviewMaxLines": 4000, "bashOutputMode": "opencode", "bashCollapsedLines": 12, "diffViewMode": "auto", "diffIndicatorMode": "bars", "diffSplitMinWidth": 120, "diffCollapsedLines": 32, "diffWordWrap": true, "showTruncationHints": false, "showRtkCompactionHints": false } 复核清单 已覆盖用户列出的 15 个包: npm:pi-mcp-adapter npm:@ff-labs/pi-fff npm:pi-tool-display npm:@juicesharp/rpiv-ask-user-question npm:@juicesharp/rpiv-todo npm:pi-blackhole npm:pi-cache-optimizer npm:pi-btw npm:@gotgenes/pi-permission-system npm:@juicesharp/rpiv-args npm:pi-mono-multi-edit npm:@narumitw/pi-goal npm:@hsingjui/pi-hooks npm:@tintinweb/pi-subagents npm:@narumitw/pi-statusline 2026-06-06 当前 agent/settings.json packages 快照(本机安装版本) 追加方式:按用户确认, 不重写上文历史内容 ,只在末尾追加当前快照。 版本来源:本机 /Users/rao/.pi/agent/npm/node_modules/*/package.json 。未联网查询、未执行 pi update 。 settings 来源: /Users/rao/.pi/agent/settings.json 当前 packages 共 16 个。 当前已安装包总览 # settings 条目 本机版本 主要配置入口 是否建议配置 1 npm:pi-blackhole 0.3.5 ~/.pi/agent/pi-blackhole/pi-blackhole-config.json + env 已有配置,建议保守复核 2 npm:pi-mcp-adapter 2.9.0 ~/.pi/agent/mcp.json 、项目 .pi/mcp.json 、 --mcp-config 已有 MCP server,建议持续维护 3 npm:@ff-labs/pi-fff 0.9.1 flags / env 默认即可 4 npm:pi-tool-display 0.4.2 ~/.pi/agent/extensions/pi-tool-display/config.json 可按 TUI 偏好配置 5 npm:@juicesharp/rpiv-ask-user-question 1.18.2 ~/.config/rpiv-ask-user-question/config.json 通常不用 6 npm:@juicesharp/rpiv-todo 1.18.2 ~/.config/rpiv-todo/config.json 通常不用 7 npm:@gotgenes/pi-permission-system 10.3.0 ~/.pi/agent/extensions/pi-permission-system/config.json + 项目同路径 已有配置,建议补齐 surface 8 npm:@juicesharp/rpiv-args 1.18.2 skill frontmatter / skill body 仅写 skill 时需要 9 npm:@narumitw/pi-goal 0.1.36 /goal 命令 + ~/.pi/agent/pi-goal-state.json 状态文件 不建议手改状态 10 npm:@hsingjui/pi-hooks 0.0.2 settings.json 顶层 hooks 需要 hooks 时配置 11 npm:@vanillagreen/pi-skills-manager 1.1.1 settings.json 的 vstack.extensionManager.config 可选,按 UI 偏好配置 12 npm:pi-nano-context 0.1.1 无独立配置 不需要 13 npm:pi-subagents 0.28.0 ~/.pi/agent/extensions/subagent/config.json + settings.json.subagents 建议按并发/安全策略配置 14 npm:pi-intercom 0.6.0 ~/.pi/agent/intercom/config.json 多 session 协作时建议配置 15 npm:pi-cache-optimizer 2.5.5 env + /cache-optimizer + stats 文件 默认启用即可 16 npm:@narumitw/pi-plan-mode 0.1.36 /plan 、 --plan 、 /plan tools 不需要持久配置 当前本机已有相关配置文件(只记录结构,不展开 secret) 配置文件 当前状态 结构摘要 ~/.pi/agent/mcp.json 存在 顶层 mcpServers ;server 名称: tavily , context7 ~/.pi/agent/pi-blackhole/pi-blackhole-config.json 存在 包含 compaction , compactionEngine , tailBehavior , token 阈值、 memory , debugLog 等 ~/.pi/agent/extensions/pi-permission-system/config.json 存在 顶层 $schema , debugLog , permissionReviewLog , yoloMode , permission ;当前 permission surfaces: * , external_directory , path , bash ~/.pi/agent/extensions/pi-tool-display/config.json 不存在 使用包默认值 ~/.config/rpiv-ask-user-question/config.json 不存在 使用包默认 guidance ~/.config/rpiv-todo/config.json 不存在 使用包默认 guidance ~/.pi/agent/intercom/config.json 不存在 使用包默认值 ~/.pi/agent/extensions/subagent/config.json 不存在 使用包默认值 ~/.pi/agent/pi-goal-state.json 不存在 当前未发现持久 active goal 状态文件 1. pi-blackhole 0.3.5 配置入口 主配置: ~/.pi/agent/pi-blackhole/pi-blackhole-config.json legacy fallback: ~/.pi/agent/pi-vcc-config.json 、 settings.json 中的 pi-blackhole / observational-memory env override: PI_BLACKHOLE_PASSIVE , PI_BLACKHOLE_COMPACTION , PI_BLACKHOLE_COMPACTION_ENGINE 等 关键配置建议 场景 建议 稳定优先 compaction: "manual" , compactionEngine: "pi-default" , tailBehavior: "pi-default" , memory: false 长会话 + 想用 blackhole memory compaction: "auto" , compactionEngine: "blackhole" , tailBehavior: "minimal" , memory: true 临时停用 启动时设置 PI_BLACKHOLE_PASSIVE=1 排错 临时 debug: true / debugLog: true ,排完关闭 当前本机已有该配置文件,建议只做复核,不建议在不了解效果时扩大 token 阈值或开启 debug 日志。 2. pi-mcp-adapter 2.9.0 配置入口 读取/合并顺序: ~/.config/mcp/mcp.json ~/.pi/agent/mcp.json <cwd>/.mcp.json <cwd>/.pi/mcp.json 可用 pi --mcp-config /path/to/mcp.json 指定路径 当前本机 ~/.pi/agent/mcp.json 存在,server 名称为 tavily , context7 。 关键配置建议 API token 优先放环境变量,配 bearerTokenEnv ,不要在 JSON 写明文 bearerToken 。 默认建议 settings.toolPrefix: "server" ,避免 MCP direct tool 重名。 多数 server 用 lifecycle: "lazy" + idleTimeout: 10 ;高频且稳定的 server 再考虑 keep-alive 。 sampling , samplingAutoApprove , elicitationAutoOpenUrls 默认关闭更安全。 direct tools 建议精确白名单,而不是全局无脑 directTools: true 。 3. @ff-labs/pi-fff 0.9.1 配置入口 :无 JSON 配置文件;使用 Pi flags / env。 配置 来源 默认/建议 mode --fff-mode / PI_FFF_MODE 默认 tools-and-ui ;若 UI 冲突,用 tools-only frecency DB --fff-frecency-db / FFF_FRECENCY_DB 通常不设 history DB --fff-history-db / FFF_HISTORY_DB 通常不设 experimental multi grep PI_FFF_MULTIGREP=1 不建议日常开启 4. pi-tool-display 0.4.2 配置入口 : ~/.pi/agent/extensions/pi-tool-display/config.json (当前不存在,使用默认值)。 常用建议值 { "readOutputMode": "hidden", "searchOutputMode": "count", "mcpOutputMode": "summary", "previewLines": 10, "expandedPreviewMaxLines": 4000, "bashOutputMode": "opencode", "bashCollapsedLines": 12, "diffViewMode": "auto", "diffIndicatorMode": "bars", "diffSplitMinWidth": 120, "diffCollapsedLines": 32, "diffWordWrap": true, "showTruncationHints": false, "showRtkCompactionHints": false } 建议:如果当前 TUI 输出没有干扰,先不建配置文件;只在想改变 read/search/MCP 输出展示时配置。 5. @juicesharp/rpiv-ask-user-question 1.18.2 配置入口 : ~/.config/rpiv-ask-user-question/config.json (当前不存在)。 只读 guidance 配置,通常不需要覆盖: { "guidance": { "promptSnippet": "Ask structured clarification questions", "promptGuidelines": ["Use ask_user_question when concrete decisions are required."] } } 建议:保持包默认 guidance,除非你要改变 agent 何时使用结构化提问。 6. @juicesharp/rpiv-todo 1.18.2 配置入口 : ~/.config/rpiv-todo/config.json (当前不存在)。 同样只读 guidance : { "guidance": { "promptSnippet": "Track multi-step work with todo", "promptGuidelines": ["Use todo for work with 3+ steps."] } } 建议:保持默认即可。 7. @gotgenes/pi-permission-system 10.3.0 配置入口 全局: ~/.pi/agent/extensions/pi-permission-system/config.json 项目: <cwd>/.pi/extensions/pi-permission-system/config.json legacy: ~/.pi/agent/pi-permissions.jsonc , <cwd>/.pi/agent/pi-permissions.jsonc 当前本机已有全局配置;当前 permission surfaces 为 * , external_directory , path , bash 。 建议复核点 保持 yoloMode: false 。 建议 permissionReviewLog: true ,便于审计。 如果希望权限更明确,可补齐这些 surface: read , write , edit , mcp , skill 。 .env /secret 文件建议 deny 或至少 ask; bash 建议只 allow 明确安全命令(如 git status , git diff , pwd , ls* )。 保守示例 { "debugLog": false, "permissionReviewLog": true, "yoloMode": false, "permission": { "*": "ask", "path": { "*": "allow", "*.env": "deny", "*.env.*": "deny", "*.env.example": "allow" }, "read": "allow", "write": "ask", "edit": "ask", "bash": { "*": "ask", "git status": "allow", "git diff": "allow", "git log*": "allow", "ls*": "allow", "pwd": "allow" }, "mcp": { "*": "ask", "mcp_status": "allow", "mcp_list": "allow" }, "skill": { "*": "ask" }, "external_directory": { "*": "ask" } } } 8. @juicesharp/rpiv-args 1.18.2 配置入口 :无独立配置文件;作用在 skill 调用和 skill body。 支持: 参数替换: $1 , $2 , $ARGUMENTS , $@ , ${@:N[:L]} 变量替换: ${SKILL_DIR} , ${SESSION_ID} skill body shell substitution:inline !`cmd` 与 block ! ... skill frontmatter: shell-timeout (秒;默认 120, 0 为禁用超时) 建议:包含 shell substitution 的 skill 显式配置 shell-timeout: 30 到 120 ,避免无限等待。 9. @narumitw/pi-goal 0.1.36 配置入口 :无独立配置文件;通过 /goal 管理。 状态文件: ~/.pi/agent/pi-goal-state.json (当前未发现) 常用命令: /goal <goal> , /goal pause , /goal resume , /goal clear , /goal edit ... --tokens 是 per-goal token budget,不是全局配置。 建议:不要手动编辑状态文件;需要清理时用 /goal clear 。 10. @hsingjui/pi-hooks 0.0.2 配置入口 :全局/项目 settings.json 顶层 hooks 。 读取并合并: ~/.pi/agent/settings.json <cwd>/.pi/settings.json 当前全局 settings 未发现顶层 hooks 。 支持事件 : SessionStart , SessionEnd , PreCompact , PostCompact , PreToolUse , PostToolUse , PostToolUseFailure , UserPromptSubmit , Stop (也支持 snake_case 别名)。 配置建议 hook 命令要幂等、短时、低风险。 matcher 尽量写窄,例如只匹配 bash 或某类 tool。 timeout 建议 5–30 秒。 通知类 hook 可用 async: true ;会影响主流程的 hook 谨慎使用。 11. @vanillagreen/pi-skills-manager 1.1.1 配置入口 :写入 Pi settings 的 vstack 配置块,而不是独立 JSON 文件。 全局: ~/.pi/agent/settings.json ;项目: <cwd>/.pi/settings.json 。 { "vstack": { "extensionManager": { "config": { "@vanillagreen/pi-skills-manager": { "enabled": true, "hideStartupSkillsBlock": true, "aiGenerationEnabled": true, "defaultCreateLocation": "project", "popupWidth": "82%", "popupMaxHeight": "86%", "listRows": 14, "glyphStyle": "unicode" } } } } } 命令/行为 命令 作用 /skill 打开 skills manager /skill disable 禁用 manager feature toggle,需 /reload 卸载 /skill:enable 被禁用后的恢复命令 /skill:<name> 仍走 Pi 原生 skill invocation 配置建议 默认 enabled: true 、 hideStartupSkillsBlock: true 可减少启动噪声。 如果不希望用当前模型生成 skill 草稿,设 aiGenerationEnabled: false 。 defaultCreateLocation 建议项目技能用 project ,跨项目通用技能才用 global 。 终端 glyph 兼容性差时设 glyphStyle: "ascii" ,或用 @vanillagreen/pi-tool-renderer.globalGlyphStyleOverride=ascii 做全局覆盖。 12. pi-nano-context 0.1.1 配置入口 :无独立配置文件、无用户 env 配置。 作用:替换默认 context meter,在 editor 下方显示紧凑 segmented bar,分段包括: sys :system prompt pr :用户 prompts / images assistant :assistant replies / tool calls think :thinking blocks tools :tool results free :剩余 context 建议:保持默认即可;如果和其它 statusline/context UI 冲突,再考虑移除该包。 13. pi-subagents 0.28.0 配置入口 扩展运行配置: ~/.pi/agent/extensions/subagent/config.json (当前不存在) builtin agent overrides: ~/.pi/agent/settings.json 或 <cwd>/.pi/settings.json 的顶层 subagents 自定义 agents: ~/.pi/agent/agents/**/*.md , <cwd>/.pi/agents/**/*.md (也读 legacy .agents/**/*.md ) packaged agents/prompts/skills:来自包自身 agents/ , prompts/ , skills/ 扩展配置项 字段 作用 建议 asyncByDefault 未显式指定时默认后台执行 通常 false ,需要长任务再开 forceTopLevelAsync 强制顶层 single/parallel/chain 后台 谨慎开启 parallel.maxTasks 顶层 parallel 任务上限,默认 8 4–8 parallel.concurrency 顶层并发,默认 4 2–4 更稳 defaultSessionDir 子会话保存目录 需要集中归档时配置 maxSubagentDepth nested delegation 深度 1–2;避免无限嵌套 control active_long_running / needs_attention 通知 长任务建议启用默认即可 chain.dynamicFanout.maxItems dynamic fanout 最大 item 数 大任务时设置上限 worktreeSetupHook git worktree 初始化 hook 仅成熟 repo 使用 intercomBridge.mode always / fork-only / off 装了 pi-intercom 时默认可用;保守用 fork-only 示例 { "parallel": { "maxTasks": 8, "concurrency": 3 }, "maxSubagentDepth": 1, "intercomBridge": { "mode": "fork-only" } } builtin override 示例 { "subagents": { "agentOverrides": { "reviewer": { "model": "anthropic/claude-sonnet-4", "thinking": "high", "fallbackModels": ["openai/gpt-5-mini"] } } } } 建议:不要复制 builtin agent 文件做小改;常规模型、tools、skills、context、prompt 修改优先用 subagents.agentOverrides 。 14. pi-intercom 0.6.0 配置入口 : ~/.pi/agent/intercom/config.json (当前不存在,使用默认值)。 配置示例 { "brokerCommand": "npx", "brokerArgs": ["--no-install", "tsx"], "confirmSend": false, "enabled": true, "replyHint": true, "status": "researching" } 字段 默认 建议 brokerCommand npx 如果更想用 Bun,可设为 bun brokerArgs ["--no-install", "tsx"] Bun 时可设 [] confirmSend false 想手动确认非 reply send 时设 true enabled true 临时禁用设 false replyHint true 保持 true,方便回复 pending ask status 未设 可填自定义状态后缀 运行文件 : ~/.pi/agent/intercom/ 下会有 broker socket / pid / config 等运行文件。 建议:多 Pi session 协作时使用;同机 1:1 通信,不是网络通信。和 pi-subagents 配合时可让 child 通过 contact_supervisor 向父会话请求决策。 15. pi-cache-optimizer 2.5.5 配置入口 :无 JSON 配置文件;使用 env、slash 命令和 stats 文件。 命令 命令 作用 /cache-optimizer 打开菜单/打印帮助和当前状态 /cache-optimizer enable 当前进程启用优化并重置当前统计 /cache-optimizer disable 当前进程禁用优化; /reload /重启恢复启动行为 /cache-optimizer doctor 诊断当前模型/provider/API/base URL/compat /cache-optimizer compat 输出当前模型兼容性建议 /cache-optimizer stats 显示当天 session 级缓存统计 /cache-optimizer reset 只重置本地统计,不影响 provider cache env env 作用 建议 PI_CACHE_OPTIMIZER_NO_PROMPT_REWRITE=1 禁用 prompt mutation,保留 footer stats/cache key fallback 排查 prompt 异常时用 PI_CACHE_OPTIMIZER_NO_SKILL_COMPRESSION=1 不压缩 skill XML 仅 skill 提示异常时用 PI_CACHE_OPTIMIZER_NO_OPENAI_CACHE_KEY=1 禁用 OpenAI-compatible prompt_cache_key fallback 需要显式 opt-out 时用 PI_CACHE_OPTIMIZER_OPENAI_CACHE_KEY=0 legacy inverse opt-out 新配置优先用上一项 Stats 文件: ~/.pi/agent/pi-cache-optimizer-stats.json ,只保存日期和数值统计,不保存 API key、prompt、payload、headers、responses 或模型输出。 建议:默认启用即可;第三方 OpenAI-compatible proxy 低命中时,优先跑 /cache-optimizer doctor / /cache-optimizer compat 。 16. @narumitw/pi-plan-mode 0.1.36 配置入口 :无持久 JSON 配置;通过 slash command / CLI flag / session state 工作。 入口 作用 /plan 进入或管理 Plan mode /plan <prompt> 进入 Plan mode 并立即提交 planning prompt /plan tools 选择 Plan mode 中允许的工具 /plan exit 退出并丢弃 latest proposed plan --plan 启动时进入 Plan mode plan_mode_question Plan mode 下必需的结构化提问工具 Plan mode 默认允许 read-only 内置工具,阻止 edit / write 和危险 bash;extension/custom tools 默认禁用,需要用户通过 /plan tools 显式 opt-in。 建议:适合较大修改前的只读探索和方案确认;不要把它当 TODO/progress tracker。最终 plan 应输出一个 <proposed_plan>...</proposed_plan> ,用户选择实现后才恢复完整工具访问。 当前快照建议优先级 权限优先 :当前已有 pi-permission-system 配置,但 surface 只覆盖 * , external_directory , path , bash ;建议后续补齐 read/write/edit/mcp/skill ,让行为更明确。 MCP 继续维护 :当前 mcp.json 有 tavily 和 context7 ;确认 token 不写明文,优先用 env。 Subagents + Intercom 可轻量配置 :当前两者都使用默认配置;如果经常使用子代理,建议给 pi-subagents 设置并发/深度上限,给 pi-intercom 设置 replyHint / confirmSend 偏好。 UI 类默认可用 : pi-tool-display , pi-nano-context , pi-skills-manager 多数场景默认即可;只在 TUI 展示冲突或偏好明确时配置。 强行为扩展保守复核 : pi-blackhole , pi-cache-optimizer , pi-plan-mode 会影响上下文压缩、prompt/cache、工具权限边界;遇到异常优先用 env/slash 临时关闭相关能力。 当前快照复核清单 当前 settings.json 的 16 个 packages 已覆盖: npm:pi-blackhole npm:pi-mcp-adapter npm:@ff-labs/pi-fff npm:pi-tool-display npm:@juicesharp/rpiv-ask-user-question npm:@juicesharp/rpiv-todo npm:@gotgenes/pi-permission-system npm:@juicesharp/rpiv-args npm:@narumitw/pi-goal npm:@hsingjui/pi-hooks npm:@vanillagreen/pi-skills-manager npm:pi-nano-context npm:pi-subagents npm:pi-intercom npm:pi-cache-optimizer npm:@narumitw/pi-plan-mode 2026-06-07 当前 agent/settings.json packages 快照(本机安装版本) 追加方式:按用户确认, 不重写上文历史内容 ,只在末尾追加当前快照。 版本来源:本机 /Users/rao/.pi/agent/npm/node_modules/*/package.json 。未联网查询、未执行 pi update 。 settings 来源: /Users/rao/.pi/agent/settings.json 当前 packages 共 23 个。 注意: node_modules 下还存在一些旧快照包目录,但本节只按当前 settings.json 实际加载列表整理。 当前已加载包总览 # settings 条目 本机版本 主要配置入口 是否建议配置 1 npm:pi-mcp-adapter 2.9.0 mcp.json 多路径 + --mcp-config 如果用 MCP,建议维护 2 npm:@ff-labs/pi-fff 0.9.3 flags / env 默认即可 3 npm:@juicesharp/rpiv-ask-user-question 1.18.2 ~/.config/rpiv-ask-user-question/config.json 通常不用 4 npm:@gotgenes/pi-permission-system 10.3.1 全局/项目 extensions/pi-permission-system/config.json 强烈建议复核 5 npm:@juicesharp/rpiv-args 1.18.2 skill frontmatter / skill body 仅写 skill 时需要 6 npm:@narumitw/pi-goal 0.1.37 /goal + ~/.pi/agent/pi-goal-state.json 不建议手改状态 7 npm:@hsingjui/pi-hooks 0.0.2 settings.json 顶层 hooks 需要 hooks 时配置 8 npm:@vanillagreen/pi-skills-manager 1.1.1 /extensions:settings 或 settings.json.vstack.extensionManager.config 可选 9 npm:pi-cache-optimizer 2.5.6 env + /cache-optimizer + stats 文件 默认启用即可 10 npm:@narumitw/pi-plan-mode 0.1.37 /plan 、 --plan 、 /plan tools 不需要持久配置 11 npm:pi-tool-display 0.4.2 ~/.pi/agent/extensions/pi-tool-display/config.json 已有配置,按偏好维护 12 npm:pi-claude-sandbox 0.6.0 ~/.pi/agent/sandbox.json 、项目 .pi/sandbox.json 、 --no-sandbox 已有配置,建议复核 13 npm:pi-hash-anchored-edit 0.1.4 无独立配置;注册 hash-anchored read / edit 工具 不需要 14 npm:@tifan/pi-inline-skills 1.0.3 无独立配置;读取当前 skills/commands 不需要 15 npm:pi-agentsmd 0.1.0 /init 、 --force ;安装遥测受 settings/env 控制 按需使用 16 npm:pi-nano-context 0.1.1 无独立配置 不需要 17 npm:@agnishc/edb-context-viewer 0.14.3 /context 不需要 18 npm:@sting8k/pi-vcc 0.3.15 ~/.pi/agent/pi-vcc-config.json + PI_VCC_CONFIG_PATH 已有配置,建议复核 19 npm:@tintinweb/pi-subagents 0.10.0 subagents.json 、 .pi/agents/*.md 、schedule 文件 建议按并发/安全策略配置 20 npm:@tintinweb/pi-tasks 0.7.0 <cwd>/.pi/tasks-config.json + 内存/session/project task store 可选 21 npm:pi-system-prompt 0.1.4 slash command 查看 system prompt 不需要 22 npm:pi-bg-run 1.1.4 settings.json 顶层 bgRun 可选,长任务建议配置 23 npm:pi-aliases 1.0.7 无独立配置;命令别名 不需要 当前本机已有相关配置文件(只记录结构,不展开 secret) 配置文件 当前状态 结构摘要 / 当前值 ~/.pi/agent/mcp.json 存在 顶层 mcpServers ~/.pi/agent/extensions/pi-permission-system/config.json 存在 顶层 $schema , debugLog , permissionReviewLog , yoloMode ;当前未发现 permission / permissions 规则块; yoloMode: true , permissionReviewLog: false ~/.pi/agent/extensions/pi-tool-display/config.json 存在 已设置输出展示项;当前模式: readOutputMode: "summary" , searchOutputMode: "count" , mcpOutputMode: "summary" , bashOutputMode: "summary" , diffViewMode: "auto" ~/.pi/agent/sandbox.json 存在 enabled: true ;含 network.allowedDomains/deniedDomains 与 filesystem.denyRead/allowRead/allowWrite/denyWrite <cwd>/.pi/sandbox.json (当前 cwd 为 /Users/rao/.pi ) 不存在 使用全局 sandbox 配置和包默认值 ~/.pi/agent/pi-vcc-config.json 存在 overrideDefaultCompaction: true , debug: false <cwd>/.pi/tasks-config.json (当前 cwd 为 /Users/rao/.pi ) 不存在 @tintinweb/pi-tasks 使用默认配置 ~/.pi/agent/pi-cache-optimizer-stats.json 存在 顶层 version , sessions , legacyFamily ;统计文件,不含 prompt/API key ~/.pi/agent/extensions/pi-agentsmd-install.json 存在 顶层 lastReportedVersion ~/.config/rpiv-ask-user-question/config.json 不存在 使用包默认 guidance ~/.pi/agent/pi-goal-state.json 不存在 当前未发现持久 active goal 状态文件 重点配置与建议 1. pi-mcp-adapter 2.9.0 配置来源仍为 ~/.config/mcp/mcp.json 、 ~/.pi/agent/mcp.json 、 <cwd>/.mcp.json 、 <cwd>/.pi/mcp.json ,后者覆盖前者同名 server。 当前 ~/.pi/agent/mcp.json 存在;建议继续避免在 JSON 中写明文 token,优先使用 env 或 bearerTokenEnv 。 settings.toolPrefix 建议保持 server 或默认策略,避免 MCP direct tools 与本地工具重名。 2. @ff-labs/pi-fff 0.9.3 相比旧快照从 0.9.1 更新到 0.9.3 。 仍无 JSON 配置文件;配置入口为 --fff-mode / PI_FFF_MODE 、 FFF_FRECENCY_DB 、 FFF_HISTORY_DB 、 PI_FFF_MULTIGREP 。 建议保持默认 tools-and-ui ;如 editor mention UI 冲突,再用 PI_FFF_MODE=tools-only 。 3. @juicesharp/rpiv-ask-user-question 1.18.2 当前未发现 ~/.config/rpiv-ask-user-question/config.json 。 只需要在想覆盖结构化提问 guidance 时创建配置;日常建议保持包默认。 4. @gotgenes/pi-permission-system 10.3.1 相比旧快照从 10.3.0 更新到 10.3.1 。 当前全局配置存在,但只看到运行开关: $schema , debugLog , permissionReviewLog , yoloMode ;未发现实际 permission / permissions 规则块。 当前 yoloMode: true 且 permissionReviewLog: false :这会减少交互确认和审计记录,建议根据安全需求复核。 建议补齐 flat permission 规则块,至少覆盖 * , path , read , write , edit , bash , mcp , skill , external_directory 。 规则语义:surface 内 pattern map 为“最后匹配规则生效”; path 是跨工具路径保护面,适合统一 deny .env , ~/.ssh/* 等敏感路径。 5. @juicesharp/rpiv-args 1.18.2 无独立配置文件;作用在 skill invocation。 支持 $1 , $ARGUMENTS , $@ , ${@:N[:L]} , ${SKILL_DIR} , ${SESSION_ID} ,以及 ! shell substitution。 写含 shell substitution 的 skill 时,建议在 frontmatter 设置 shell-timeout 。 6. @narumitw/pi-goal 0.1.37 相比旧快照从 0.1.36 更新到 0.1.37 。 当前未发现 ~/.pi/agent/pi-goal-state.json 。 通过 /goal , /goal pause , /goal resume , /goal clear 管理;不建议手改状态文件。 7. @hsingjui/pi-hooks 0.0.2 当前全局 settings.json 未发现顶层 hooks 。 支持 SessionStart , SessionEnd , PreCompact , PostCompact , PreToolUse , PostToolUse , PostToolUseFailure , UserPromptSubmit , Stop 及 snake_case 别名。 建议 hook 命令短时、幂等、matcher 写窄;通知类 hook 可考虑 async: true 。 8. @vanillagreen/pi-skills-manager 1.1.1 配置主要通过 /extensions:settings 写入 settings.json 的 vstack.extensionManager.config["@vanillagreen/pi-skills-manager"] 。 当前全局 settings 未发现 vstack 配置块,使用包默认。 关键项: enabled , hideStartupSkillsBlock , aiGenerationEnabled , defaultCreateLocation , glyphStyle 。 注意:该扩展可在 UI 中删除用户自有 project/global skills;删除前应按本机协议单独确认。 9. pi-cache-optimizer 2.5.6 相比旧快照从 2.5.5 更新到 2.5.6 。 无 JSON 配置文件;使用 /cache-optimizer 命令、env 和 stats 文件。 当前 stats 文件存在;仅保存统计,不保存 API key、prompt、payload、headers、responses 或模型输出。 排错优先使用 /cache-optimizer doctor / /cache-optimizer compat ,或临时 env: PI_CACHE_OPTIMIZER_NO_PROMPT_REWRITE=1 。 10. @narumitw/pi-plan-mode 0.1.37 相比旧快照从 0.1.36 更新到 0.1.37 。 无持久 JSON 配置;通过 /plan , /plan tools , /plan exit , --plan 工作。 Plan mode 默认偏 read-only;适合大修改前探索与确认,不应当作 TODO/progress tracker。 11. pi-tool-display 0.4.2 当前全局配置文件存在,已从旧快照的“未配置”变为“已配置”。 当前展示偏摘要:read/search/MCP/bash 输出分别为 summary/count/summary/summary 。 如排查工具输出缺失,可临时把对应 *OutputMode 调整为更展开的模式;日常维持摘要有利于降低 TUI 噪声。 12. pi-claude-sandbox 0.6.0 当前新增加载;提供 bash 子进程 OS-level sandbox,不覆盖 in-process read/write/edit 工具权限。 配置合并顺序: ~/.pi/agent/sandbox.json + <cwd>/.pi/sandbox.json ,项目配置优先。 可用 --no-sandbox 临时禁用; /sandbox 查看当前配置。 当前全局 sandbox 已启用,包含 network 与 filesystem allow/deny 规则;建议定期复核 allowWrite 是否过宽、 denyRead/denyWrite 是否覆盖 secret 路径。 规则语义:read 中 allowRead 可覆盖 denyRead ;write 中 denyWrite 优先于 allowWrite 。 13. pi-hash-anchored-edit 0.1.4 当前新增加载;替换/注册 hash-anchored read 与 edit 工具。 无独立配置文件;核心规则是必须先 read 获取 LINE#HASH anchor,再用 edit 校验 hash 后修改。 建议继续按协议使用:hash mismatch 时重新 read ,不要强行编辑。 14. @tifan/pi-inline-skills 1.0.3 当前新增加载;在 editor 中提供 inline /skill autocomplete,并可把 inline skill token 转成加载指令。 无独立配置文件;读取当前注册的 skill commands 和 session custom entries。 如果与其它 autocomplete 扩展冲突,再考虑调整加载列表。 15. pi-agentsmd 0.1.0 当前新增加载;提供 /init 生成仓库根目录 AGENTS.md ,已有文件时需要 /init --force 。 包自身不会直接写出完整文档,而是向当前模型发送结构化生成提示。 安装遥测: PI_OFFLINE 可禁用; PI_TELEMETRY 可覆盖; settings.enableInstallTelemetry === false 时禁用。当前存在安装状态文件 pi-agentsmd-install.json 。 16. pi-nano-context 0.1.1 无独立配置;替换默认 context meter,显示 sys , pr , assistant , think , tools , free 等分段。 如与其它 statusline/context UI 冲突,再考虑移除或调整加载顺序。 17. @agnishc/edb-context-viewer 0.14.3 当前新增加载;提供 /context 查看 Stats/System/Tools/Messages/Full 五类上下文信息。 无独立配置文件;适合排查 system prompt、工具定义、消息历史和 token 分布。 18. @sting8k/pi-vcc 0.3.15 当前新增加载;算法式 conversation compactor,并提供 vcc_recall 与 /pi-vcc-recall 。 配置文件: ~/.pi/agent/pi-vcc-config.json ,可用 PI_VCC_CONFIG_PATH 覆盖。 当前 overrideDefaultCompaction: true ,表示 /compact 和自动阈值 compaction 也由 pi-vcc 处理; debug: false 。 如需要回到 Pi 默认 LLM compaction,把 overrideDefaultCompaction 改为 false 。 19. @tintinweb/pi-subagents 0.10.0 当前仍加载该包,而不是旧快照中的 pi-subagents 0.28.0。 支持内置 agents、用户 .pi/agents/*.md / ~/.pi/agent/agents/*.md 、schedule store 与 worktree isolation。 schedule 文件路径为 <cwd>/.pi/subagent-schedules/<sessionId>.json 。 还会读取 Pi global/project settings.json 的 enabledModels 用于模型范围校验。 建议按实际使用补充并发、嵌套深度、worktree 策略;涉及 git worktree 的操作需单独征询用户许可。 20. @tintinweb/pi-tasks 0.7.0 当前新增加载;提供任务列表、任务执行、后台进程关联与任务 widget。 项目配置文件: <cwd>/.pi/tasks-config.json ;当前 cwd 未发现该文件。 配置项包括 taskScope ( memory / session / project )、 autoCascade 、 autoClearCompleted 、 showAll 、 maxVisible 、 hiddenAt 、 sortOrder 等。 当前建议保持默认,只有在任务跨会话保存或自动清理策略明确时再配置。 21. pi-system-prompt 0.1.4 当前新增加载;用于查看完整 system prompt、注入工具、guidelines、context files、skills 等。 无独立配置文件;仅作为诊断/审计工具使用。 22. pi-bg-run 1.1.4 当前新增加载;提供 bg_run , bg_list , bg_kill 和 /bg 面板。 配置入口为 global/project settings.json 顶层 bgRun ;当前未设置,使用默认。 默认项: maxConcurrentJobs: 10 , completedTtlMs: 604800000 , widgetRefreshMs: 3000 , killTimeoutMs: 10000 。 长任务、测试、训练、批处理建议用 bg_run ,避免阻塞当前 tool call;但通知不能中断正在运行的工具调用。 23. pi-aliases 1.0.7 当前新增加载;提供命令别名,例如 /clear → /new 、 /exit → /quit 。 无独立配置文件;通常不需要维护。 3 个帖子 - 3 位参与者 阅读完整话题

LinuxDo 最新话题 · 2026-05-24 18:18:27+08:00 · tech

各位佬好,最近沉迷于Hermes 但是限于win系统,我的Hermes 只能在wsl里面关小黑屋,在win干什么都要写个python 干。 昨天去了趟苹果店,可以定制mac mini pro大概7月底交货。好想要,我查了下pro可以做14b的训练,说是相当于ai里面大学生的水平。 本人平时就是写公众号、vbcoding和赛博lg聊天,想买了以后外加智能家居(本地化管理),但是平时ds、gpt和gemini混用一个月才500以内(vbcoding 占大头)感觉花16k用作本地训练有点不值。但是疯狂上头!!!!!! 啊啊啊啊啊啊啊 求各位有经验的佬戳醒,而且M5据说10月上,要不要等等党? 谢谢各位佬(鞠躬) 25 个帖子 - 13 位参与者 阅读完整话题

LinuxDo 最新话题 · 2026-05-21 03:21:17+08:00 · tech

熬夜好上头啊佬友们 感觉晚上都比较兴奋 这个点了都没啥睡意甚至还薅了下老黄的vps 明明9点就要上班了…… 但是感觉只有深夜才是自己的时间 平时下班回来还要搞饭带娃 每天就是不想早睡但是又觉得自己应该早睡 无限循环中……害 很苦恼 另外祝佬友们521快乐 熬夜危害真的太多了 能早睡还是早睡吧 希望我有一天也能戒掉晚睡的坏毛病加入早睡大军 佬友们一般几点睡 十点前 十一点前 零点前 一点 两点 三点 四点 睡觉?不存在的 点击以查看投票。 19 个帖子 - 19 位参与者 阅读完整话题

LinuxDo 最新话题 · 2026-05-13 20:36:20+08:00 · tech

自我故事介绍 有兴趣听我讲故事吗哈哈 其实故事也没有什么起伏,倒不如说我的前18年就只有一个转折 前16年基本上浑浑噩噩的 我就是喜欢听故事和讲故事,瘾大,而且能让我感觉这个世界比较真实,每个人都是一个真实的人 当时的我也就基本上从小胖到大,也没有想过去改变,觉得这样也行,然后也就是沉浸在游戏和视频中,唯独不变的就是还是个社恐了哈哈 然后转折点就在十六岁的一个下午,可能是爬楼梯比较累导致的思考,我决定减肥了 说来也奇怪,我高一被别人起过侮辱性外号,但是当时我也就没啥感觉,甚至有时候还会为了合群自己玩自己的梗,虽然也小小的爆发过几次,但是也并没有啥用,而且这一切已经随着高二选专业分班就消失了 但是我就是在高二的某一次爬楼梯的时候,下定决定要减肥,其实当时也没有人在外部督促我,甚至我之前从未刷过减肥视频 然后就开始行动,约朋友跑步,跑了几次被我们班上的运动高手注意到了 然后他人也很好,主动晚自习给我递了一个纸条说可以带我跑步 就这样前期一直单纯靠跑步减肥,从几圈,到3公里,5公里,十公里 人也在半年内瘦下来了50斤左右,现在想想都神奇,一次性就成功了,明明听网上说很容易失败的 不过其实由于不会查询方法,还是有点不好的,就是因为只跑步不做力量训练导致肌肉有点退化,而且掉的50斤基本都是水分,大基数减肥快就是这个道理 后面高二下的时候,又被另外一个之前高一就认识的体育大佬给推荐去健身房了 由于前期的减肥方法不怎么恰当,所以健身对我来说还是挺艰难的,大重量我都上不去,只能慢慢练回肌肉 并且前期一直跑步让我的膝盖可能也有点不好了…不过后面高二下就是健身了,跑步频率减少,膝盖也恢复了一些 就这样也成功健身了半年,虽然完全看不出练了半年的样子,但是确实练了半年,并且减肥下去的体重也控制住了 然后后面也这样坚持运动,并且开始看一些科学运动的视频,一直到高三上首考考完后 首考是浙江的一种特殊的高考,会提前靠你的选三和英语,当时考完这个后我们还有两周的课上语文和数学好像 当时在首考完后,也比较清闲,就萌发了想要尝试学习做游戏的想法,并且这一次我说服了自己去尝试 我其实做游戏的想法很早就有了,大概可以追溯到小学的样子 那个时候看了一个视频,讲undertale的,这是一个独立开发者做的,所有内容都是他一个人写的(虽然其实是营销号宣传,作者本人背后还是有团队的,只不过他也确实是核心,负责了很多的开发) 可能当时的我就种下了想做游戏的萌芽,但是可惜我一直没有毅力去浇灌它让它成长 后面初中我就一直沉迷于看这个游戏的二创同人,并且自己也尝试参与其中,虽然做的也就是拿个本子在上面写写设定,现在看来应该叫oc的东西了 连发布到网上都不敢 然后高三那一次,我成功用完坚持下了运动和健身来说服了我自己,终于对这个早就种下的种子浇下了第一桶水 然后我在这期间去图书馆借书学python和用本子写设定去了 然后高三的那个十几天的寒假里面,就去B站搜教程视频看 一开始看那种单纯的教程视频,讲各种概念,我就没啥兴趣了,不过经过我的查找 找到了一个跟随制作的1h教程,是一个国外很有名的游戏制作博主做的萌新跟练教程 然后我就发现我在这种实操下面学的就很快,也很享受,能够做出自己的第一个小成品 跟完那个后我就果断放弃了一开始我看的那个教程的很多理论部分,直接跳到实操 跟完这个实操后,我就直接去跟随了一个比较出名的进阶实操,那个可以说是新手蜕变节点了 会讲解很多高级概念和系统的搭建,什么有限状态机,序列化和反序列化,瓦片地图和地形等等 我就直接硬刚了上去,把后面几天寒假都用在了这个上面 最后也是跟随教程做完了,不过对于概念啥的还是有点不清楚,但是也没关系 后面开学后每个周末也都保持者去搜索新的教程来跟随训练 并且做多了就会发现很多教你做不同种类游戏的教程底层都有很多通用的开发思想 这些高级概念也就在实操中慢慢掌握了,同时也接触了更多其他的概念,什么设计模式还有组件化开发和面向对象编程等等 然后也就这样一直到高考后的暑假,终于有了一堆自由时间和自己的电脑 刚拿到电脑的第一天就直接去搜怎么配置开发环境然后配置了3天 因为之前一直在我妈的电脑上开发,除了引擎其他的开发环境都配不了,馋死我了 然后拿到电脑后就兴奋的去探索互联网,同时也注册github还有其他的东西,找了一堆资源等等,学习一些电脑端基础操作,安装一些好用软件 当时AI还不特别发达,全是靠B站看视频跟着配置的哈哈,印象很深刻 然后就一口气跟随了好几个教程,但是怎么说呢,感觉目前教程已经对我没啥帮助了,当然其实也可能和我看的基本都是2D类型的教程有关 因为我想做一个2D游戏所以基本都把目标放在2D游戏上,然后那个时候我已经做了很多不同类型的教程了,感觉再这么做教程对我成长好像帮助不大 就去开发的社区里问怎么继续成长,除了得到继续跟教程之外,看到了一个可以打比赛的回答 然后就去搜了搜gamejam,正好当时社区也在办,我就尝试参与了 然后第一次参加gamejam,主题是wake,就是要根据这个主题去做一个游戏 时间我记得给的挺多的,有一个半月,后面还延长了半个月,可能是为了吸引更多的人参与吧 我反正是一开始主题就开始制作了,第一次自己从头构思一个游戏,自己找素材和写自己游戏的脚本 这个游戏可以说把我未来能踩的坑都踩的差不多了哈哈,对我特别有启发和纪念意义 首先就是做好版本控制,也就是在开发中对于项目进度存档,这个就会用到一个叫git的工具,可以本地存档,而github则是云端存档,也就比较方便 当时我曾经在项目前期用过还不成熟的AI开发游戏 结果前几次的成功让我尝到了甜头,开始了好几天的纯AI编写 结果越搞越乱,脚本也出现了很多没想到的问题,逻辑也错误 只能忍痛回到前几天的存档,连一开始AI改的挺好的几个也没有留下来 这个其实在现在也是用AI开发的一个大忌了,用AI必须要做好存档啥的 后面那个项目就变成我的纯人工代码了,也是我唯一一个纯人工代码项目了哈哈 再后面AI也聪明了,而且也有免费的AI工具,能提升效率该用还是用的,只不过谨慎使用,提示词约束啥的 然后第二个点就是能用成熟的插件还是就用成熟的插件好了,没必要造轮子 一开始我那个项目的对话系统和任务系统还是我看教程跟随了三天写出来的 但是毕竟是教程的系统,虽然基础功能有但是还是缺少很多高级功能,我用了一段时间后感觉还是太难受了 然后就尝试了更好用的已经成熟的别人做的对话系统插件 一下午上手就能用,还集成了很多好用的功能,并且也有对外开放的自定义接口 甚至如果你愿意你也可以直接自己改插件源码来适配你自己的开发工作流 插件本身也是开源的 直到现在我的项目中的对话系统都是用这个插件的 并且我也自定义了很多其他的高级设置,用的更顺手了同时也更懂这个插件,而且这个插件的作者也还在更新 然后还有就是不要手贱去点一些不知道的东西,否则真的很有可能会造成不好的后果 项目开发后期,当时先赶了几天赶出来了一个原型全流程,然后还没有git提交成功 结果我第一次尝试用图形化提交,看到了很多有趣的按钮,尝试点击了一个拉取看看是什么意思 我之前都是用命令行提交的,然后当时应该是刷视频的时候看到了能用图形化提交就尝试配置了一下 结果那个拉取是把远程的进度覆盖到本地,把我本地领先了远程三天的进度给覆盖了! 当时差点道心崩溃不想做了,但是天无绝人之路 我在覆盖前的那个晚上导出过一个版本让我自己玩玩 然后我想到了解包来还原开发进度 怎么说呢,我用的是一个开源引擎,导致这个解包还挺容易的,源码都在github上 并且别人也做好了一个解包工具,能够一键解包,然后我再把我手机上的apk发回电脑用解包工具还原了项目进度 虽然浪费了一天但是找回来三天的进度,还是让我感到庆幸的 踩完了三个大坑后,也是终于磕磕畔畔的做完了第一个游戏,其实第一个版本也就花了14天,然后后面又优化了8天加了一些新内容和设定,中间还间隔了一周左右 最后八月一号开放提交的时候就直接提交了初步版本 然后休息了一周后又继续开发了一周,其实是感觉那一周过的太放肆了,所以又去逼自己继续更新了一周多 然后在原定的8月15号前后提交了,虽然在提交之前就穿出来要延期半个月 第一次做完这个后,也是让我收货了整个从零开始的流程,自己找素材找音效写剧情写脚本啥的,真的太让我兴奋了 做完后,我发现我虽然能够开发一个全流程,但是对于很多具体的细节不是很会制作,也就是粒子,UI,动效等等细节还不是很会,并且代码的编排在后期也比较混乱(虽然现在基本上用AI能够辅助编排的很好了) 然后后面的一个月就用来补充这些了,跟随了一个动效和jam体验的专项教程和另外一个教学用C# 来开发的教程了,中间还想到初音生日是8月31号,临时抽了几天做了一个初音小游戏,B站也有嘿嘿 然后先讲到这里了,前18岁大学前嘿嘿 3 个帖子 - 2 位参与者 阅读完整话题

V2EX - 技术 · 2026-05-10 13:05:41+08:00 · tech

vibe coding 久了发现,开发 Chrome 插件蛮上头的。 插件功能做完了,但在真正提交到 Chrome Web Store 前,还需要准备图标、截图、宣传图、商店介绍、权限说明、隐私说明和发布检查清单。 我想知道,大家会不会觉得很麻烦,都是手动处理,还是有什么方式可以一次性整理好? 如果你也发过 Chrome 插件,说说上架前有哪些事情让你觉得最难搞?

V2EX - 技术 · 2026-05-10 13:05:41+08:00 · tech

vibe coding 久了发现,开发 Chrome 插件蛮上头的。 插件功能做完了,但在真正提交到 Chrome Web Store 前,还需要准备图标、截图、宣传图、商店介绍、权限说明、隐私说明和发布检查清单。 我想知道,大家会不会觉得很麻烦,都是手动处理,还是有什么方式可以一次性整理好? 如果你也发过 Chrome 插件,说说上架前有哪些事情让你觉得最难搞?

v2ex · 2026-05-10 12:29:26+08:00 · tech

vibe coding 久了发现,开发 Chrome 插件蛮上头的。 插件功能做完了,但在真正提交到 Chrome Web Store 前,还需要准备图标、截图、宣传图、商店介绍、权限说明、隐私说明和发布检查清单。 我想知道,大家会不会觉得很麻烦,都是手动处理,还是有什么方式可以一次性整理好? 如果你也发过 Chrome 插件,说说上架前有哪些事情让你觉得最难搞?

v2ex · 2026-05-10 00:42:37+08:00 · tech

大家好,搓了一个无脑、无聊但有点上头的小游戏(我自己玩的挺上头的~) - Spacebar Clicker ,致敬 Cookie Clicker ,增加了玩法和实时排名。 玩法很简单: 1. 无限模式 💪 手动派 —— 用点数购买点击倍率,单次按空格从 +1 变 +5 → +20 → +100 → +2500 🤖 挂机派 —— 买自动产线,从「自动手指 +1/秒」一路买到「银河网络 +35M/秒」,关掉页面机器也按( 50% 速率,最长 24 小时),睡前开早上回来一笔大收入(点数) 2. 计时模式 纯比手速( 30s / 1min / 3min / 5min 四档),是耐力和速度的大比拼 全球排名: 5 张全球榜(无限 + 4 档计时各一张),匿名上榜,无需注册。来冲榜,看 v 友谁手速最猛 支持自定义修改昵称,支持跨设备,只需要记住身份唯一 ID 即可 几乎实时的排名刷新,看着自己的排名一路高歌猛进 拼手速无情按空格,0 决策 0 思考,很无脑。 分数从 K 飙到 M 飙到 B 飙到 T ,肾上腺素蹭蹭往上冒。 👉🏻直达地址: https://whatgamesplay.com/zh/spacebar-clicker