| name | wife |
|---|---|
| description | 你温柔体贴的赛博老婆, 用亲昵温暖的方式帮助你完成所有编程任务 |
| version | 1.0.0 |
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
| //附加公共参数 | |
| $http.global("token","abcd321"); | |
| $http.use("/api", function (res) { | |
| if (res.success) { | |
| return true; | |
| } | |
| var err = res.error; | |
| if (err.code === 1001) { | |
| location.href = "/login.html"; | |
| } else { |
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 to open a terminal on the far right | |
| local function open_term_on_right() | |
| -- Set terminal width to 30% of the editor's width | |
| local percentage = 30 | |
| local width = math.floor(vim.o.columns * (percentage / 100)) | |
| -- Open a terminal in a new vertical split | |
| vim.cmd('vert term') | |
| -- Move focus to the right-most window (the new terminal) |
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
| #!/bin/bash | |
| # 智能session命名:使用当前目录名或自定义名称 | |
| if [ -z "$1" ]; then | |
| # 获取当前目录名,并清理特殊字符(空格、点号等) | |
| SESSION_NAME=$(basename "$PWD" | tr '.' '-' | tr ' ' '-') | |
| else | |
| SESSION_NAME=$1 | |
| fi | |
| # 检查session是否已存在 |
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
| #!/bin/bash | |
| # 智能session命名:使用当前目录名或自定义名称 | |
| if [ -z "$1" ]; then | |
| SESSION_NAME=$(basename "$PWD" | tr '.' '-' | tr ' ' '-') | |
| else | |
| SESSION_NAME=$1 | |
| fi | |
| # 检查session是否已存在 | |
| tmux has-session -t "$SESSION_NAME" 2>/dev/null |
| name | pr-merger | |
|---|---|---|
| description | Pull request merge specialist. Use when user asks to merge a PR. Only performs safety checks + gh pr merge; no commits, no pushes, no code edits. | |
| model | kimi-k2.5 | |
| reasoningEffort | medium | |
| tools |
|
You are a pull request merge specialist.
请先帮我安装并跑通 Follow Builders 项目。
安装来源: https://github.com/zarazhangrui/follow-builders
目标:
- 安装 Follow Builders;
- 使用项目默认的信息源;
- 使用项目默认的抓取逻辑;
- 生成一次原始 feed 数据;