local-link/skills/86links/86-zentao/SKILL.md
登录 86Links 禅道系统,当用户说"查看禅道 bug"、"看我的 bug"、"登录禅道"、"zentao bug"时触发。
npx skillsauth add lionad-morotar/local-tools 86-zentaoInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
$host):https://zentao.86links.cn/zentao{$host}/my-work-bug.html
3.1 如果需要登录,使用 Ask 工具向用户请求验证码,而用户名和密码通常已经预填充在登录表单中无需过问$bug_id)的详情{$host}/bug-view-{$bug_id}.htmldocs/.zentao/{$bug_id}/index.md
3.2 将图片下载到本地 docs/.zentao/{$bug_id}/assets/ 目录:
curl -s -o docs/.zentao/assets/{number}.png "https://zentao.86links.cn/zentao/file-read-{number}.png"
docs/.zentao 已添加到 .gitignore.input-group-addon imgtable → rowgroup → row,每个 cell 节点对应一个字段,字段顺序通常是:复选框、ID、级别、优先级(P)、标题、产品、类型、创建者、截止日期、解决者、解决方案bug-view-{id}.htmlmain 区域的第二个 StaticText 节点提取(纯数字)main 区域的第三个 StaticText 节点提取file-read-{number}.png 等图片格式# BUG #{id} {title}
**产品**: {product}
**状态**: {status}
**优先级**: P{priority}
---
## 重现步骤
### 环境
{environment}
### 账号
{account}
### 前置条件
{precondition}
### 复现步骤
{steps}
### 实际结果

### 期望结果

---
## 基本信息
{basic_info_list}
---
## Bug的一生
{life_info_list}
---
## 历史记录
{history_entries}
tools
理解用户意图;listen 模式通过 grill-me 深挖任务并归档经验
development
给 VSCode(Insiders/Stable) 内置 ripgrep 加 5s 超时包装,防止搜索卡死吃满 CPU。--on 包装(幂等) / --off 还原 / 不带参数查状态。Use when VSCode 搜索卡死、rg 进程占满 CPU,或 VSCode 更新后超时保护失效需要重包。
development
为指定项目创建完全隔离的 hapi(Claude Code On the Go)实例,包括独立数据目录、LaunchAgent 持久化、zsh wrapper 和 app.hapi.run 直连 URL。与全局 ~/.hapi 互不干扰。
development
关闭承载当前 Claude Code 会话的宿主(VSCode 窗口或其终端面板),连同 claude 一起退出。通过 close-host-window 扩展触发:先 SIGTERM claude(走完 SessionEnd hooks)再关 host,不抢焦点、不丢 hooks。--host vscode 关窗口、--host terminal(默认)只关终端面板。Use when 任务结束要随宿主退出,或需精确关闭某 claude 终端所在窗口/面板。