在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用setup-statusline
Setup Claude Code statusline configuration automatically (global)
星标0
分支0
更新时间2026年1月30日 03:48
文件资源管理器
3 个文件SKILL.md
readonly菜单
Setup Claude Code statusline configuration automatically (global)
| name | setup-statusline |
| description | Setup Claude Code statusline configuration automatically (global) |
| trigger | When the user instructs to "set up the statusline", "setup statusline", "configure statusline", "statusline setup", or similar in natural language such as "initialize the status bar", "set up status line", etc. |
MANDATORY: This skill MUST be used when the user requests Claude Code statusline configuration.
Automatically use this skill when any of the following instructions are given:
~/.claude/settings.json)~/.claude/statusline.sh)This skill is invoked using the Skill tool:
Skill(skill="setup-statusline")
No arguments are required.
.claude/skills/setup-statusline/setup.sh
This script automatically executes the following:
jq command installation~/.claude/ directory~/.claude/settings.json (preserving existing settings)~/.claude/statusline.sh and grant execute permissionConfiguration to be added (~/.claude/settings.json):
{
"statusLine": {
"type": "command",
"command": "~/.claude/statusline.sh",
"padding": 0
}
}
Script to be created (~/.claude/statusline.sh):
gendosu-claude-plugins (main) [Sonnet] | 📊 38.8K (In:37442 Out:0 Cache:0)
settings.json settings are preserved.backup files when updating configurationjq command is necessary for JSON operationsmacOS:
brew install jq
Ubuntu/Debian:
sudo apt-get install jq
Fedora/RHEL:
sudo dnf install jq
Check permissions for ~/.claude/ directory:
ls -ld ~/.claude/
chmod 755 ~/.claude/