Extracted from
versions/2.1.52/cli.js(Claude Code v2.1.52, built 2026-02-24) Purpose: Enable a local CLI agent session to be accessed/controlled from a web UI (claude.ai/code)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "description": "Change right_command to hyper key (f19 when alone). Change right_option to fn.", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "right_option", | |
| "modifiers": { | |
| "optional": [ | |
| "any" | |
| ] |
Reverse-engineered from Claude Code CLI v2.1.34. This document provides a complete blueprint for implementing a multi-agent teammate coordination system in another code agent.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name linuxdo保活优化版(高性能版) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.6.0 | |
| // @description Linux.do 自动浏览 + 点赞 + 实时统计面板 + 面板控制启动/停止/暂停(性能优化版) | |
| // @author levi & ChatGPT | |
| // @match https://linux.do/* | |
| // @grant GM_setValue | |
| // @grant GM_getValue | |
| // @license MIT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # TypeScript Project Setup Prompt | |
| Set up a modern TypeScript project with the following structure and configurations: | |
| ## Project Requirements | |
| 1. **Package Manager**: pnpm@10.24.0 | |
| 2. **Runtime Management**: Volta for Node.js version pinning | |
| 3. **Build Tool**: Bun for fast bundling | |
| 4. **Code Quality**: Biome for formatting and linting |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Inline Name Editing on /me Page | |
| **Date:** 2025-11-11 | |
| **Feature:** Support user to update name inline on the /me page | |
| --- | |
| ## Requirements | |
| - **Interaction Pattern:** Always editable input field with auto-save on blur |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Add Slash Commands: /spec and /plan | |
| ## Overview | |
| This design document outlines the addition of two new built-in slash commands to Takumi's command system: `/spec` and `/plan`. These commands enhance the AI-assisted development workflow by providing structured approaches to idea refinement and implementation planning. | |
| **Purpose:** | |
| - `/spec`: Interactive brainstorming command that helps transform rough ideas into fully-formed design specifications through guided questioning | |
| - `/plan`: Planning command that generates comprehensive, bite-sized implementation plans from specifications |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getTerminal() { | |
| if (process.env.CURSOR_TRACE_ID) return 'cursor'; | |
| if (process.env.VSCODE_GIT_ASKPASS_MAIN?.includes('/.cursor-server/bin/')) | |
| return 'cursor'; | |
| if (process.env.VSCODE_GIT_ASKPASS_MAIN?.includes('/.windsurf-server/bin/')) | |
| return 'windsurf'; | |
| let A = process.env.__CFBundleIdentifier?.toLowerCase(); | |
| if (A?.includes('vscodium')) return 'codium'; | |
| if (A?.includes('windsurf')) return 'windsurf'; | |
| if (A?.includes('pycharm')) return 'pycharm'; |