用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeenie-ai/OpenCompany --skill bash-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to generate well-branded interfaces and assets for OpenCompany (opencompany.sh), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Read, search, and write raw local data (files, CSV, JSON, PDF, HTML, XLSX, images) across the workspace and operator-mounted folders. Use when the user asks about local files, documents, spreadsheets, logs, or data on disk.
Understand images (describe content, answer questions about them, extract text/OCR) via a vision model. Use when the user asks what an image, screenshot, chart, scan, or photo contains.
基于 SOC 职业分类
正在显示 SKILL.md
| name | bash-skill |
| description | Linux/macOS Bash commands and patterns for process management, file operations, and system administration. |
| allowed-tools | process_manager shell |
| metadata | {"author":"opencompany","version":"1.0","category":"terminal"} |
Use this skill when the host system is Linux or macOS. Commands run via the process_manager tool (which has full PATH access).
Before using Bash commands, verify the OS:
{"operation": "start", "name": "os-check", "command": "uname -s"}
Linux = Linux, Darwin = macOS. If neither, use the powershell skill.
npm:
{"operation": "start", "name": "npm-install", "command": "npm install express"}
pip:
{"operation": "start", "name": "pip-install", "command": "pip3 install flask"}
apt (Debian/Ubuntu):
{"operation": "start", "name": "apt-install", "command": "sudo apt-get install -y curl jq"}
brew (macOS):
{"operation": "start", "name": "brew-install", "command": "brew install jq"}
{"operation": "start", "name": "dev-server", "command": "npm run dev"}
{"operation": "start", "name": "port-check", "command": "lsof -ti :3000"}
{"operation": "start", "name": "find-py", "command": "find . -name '*.py' -type f"}
{"operation": "start", "name": "grep-todo", "command": "grep -rn 'TODO' --include='*.py' ."}
{"operation": "start", "name": "disk", "command": "df -h && echo '---' && du -sh ./*"}
{"operation": "start", "name": "env", "command": "echo $PATH | tr ':' '\\n'"}
{"operation": "start", "name": "kill-port", "command": "kill -9 $(lsof -ti :8080)"}
{"operation": "start", "name": "download", "command": "curl -fsSL -o file.zip https://example.com/file.zip"}
{"operation": "start", "name": "tail-log", "command": "tail -f /var/log/app.log"}
| Task | Command |
|---|---|
| Open in Finder | open . |
| System info | sw_vers |
| Package manager | brew install/uninstall |
| Services | launchctl list |
| Task | Command |
|---|---|
| Package manager (Debian) | apt-get install |
| Package manager (RHEL) | dnf install |
| Services | systemctl status/start/stop |
| System info | cat /etc/os-release |
&& to chain commands (second runs only if first succeeds)|| for fallbacks (command1 || command2)command 2>&1& does NOT work in process_manager -- use a separate start call insteadset -e at the start of multi-line scripts to fail fast$() over backticks for command substitution