Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:1
forks:0
updated:May 6, 2026 at 11:05
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | command-help |
| version | 1.0.0 |
| description | Linus 命令帮助任务:解释当前命令用法,结合用户 Git 历史画像和 TUI 会话状态给出简短可执行建议。 |
当用户不知道当前命令如何使用,或通过 Tab 请求命令帮助时使用本 Skill。
git checkout -b ... 或 git switch -c ... 这类新建并切换分支命令,优先判断分支名是否完整、具体、符合团队命名规范:
<branch> 这类占位符、只有 feature/fix/hotfix 这类前缀、或明显不符合团队规范时,调用 interact_with_lark_agent 的 get_context,topic 使用 branch_naming_policy,查询团队分支命名规范。feature/<story-id>-<short-desc>,回答要明确指出用户当前分支名的问题,并给出完整 suggestedCommand,例如 git checkout -b feature/fd-124-priority-filter。git checkout -b feature 解释成合理的最终分支名;它只是创建名为 feature 的分支,通常缺少 story id 和简短描述。