一键导入
github-api
GitHub API operations via gh CLI: create repositories, manage collaborators, create releases. Used by the deployer agent to publish generated systems.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
GitHub API operations via gh CLI: create repositories, manage collaborators, create releases. Used by the deployer agent to publish generated systems.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | github-api |
| version | 1.0.0 |
| description | GitHub API operations via gh CLI: create repositories, manage collaborators, create releases. Used by the deployer agent to publish generated systems. |
| user-invocable | false |
| metadata | {"openclaw":{"requires":{"bins":["gh"],"env":["GITHUB_TOKEN"]},"primaryEnv":"GITHUB_TOKEN"}} |
GitHub operations for the deployer agent using the gh CLI.
gh repo create ${GITHUB_ORG}/<system-name> \
--public \
--description "<system description>" \
--source output/<system-name> \
--push
gh repo view ${GITHUB_ORG}/<system-name> --json name 2>/dev/null && echo "exists" || echo "not_found"
cd output/<system-name>
gh release create v1.0.0 \
--title "v1.0.0 - Initial Release" \
--notes "Auto-generated multi-agent system.
Skills: <skill-list>
Workflow: <workflow-name>
Data ingestion: wired for read/write"
gh api repos/${GITHUB_ORG}/<system-name>/collaborators/<username> \
-X PUT -f permission=push
gh repo view ${GITHUB_ORG}/<system-name> --json url -q .url
Playbook for designing and shipping high-quality digital employees on the openclaw-ruh-enterprise platform. Use when helping the user build a new agent, improve the Architect agent itself, review an architecture.json or SKILL.md, or refactor an agent's workspace files (SOUL.md, PRD.md, TRD.md, skills/*/SKILL.md). Covers the full Think → Plan → Build → Review → Test → Ship → Reflect pipeline and encodes the Claude Code patterns (progressive disclosure, description-first matching, strict tool scopes) that produce agents that actually work in production.
Playbook for designing and shipping high-quality digital employees on the openclaw-ruh-enterprise platform. Use when helping the user build a new agent, improve the Architect agent itself, review an architecture.json or SKILL.md, or refactor an agent's workspace files (SOUL.md, PRD.md, TRD.md, skills/*/SKILL.md). Covers the full Think → Plan → Build → Review → Test → Ship → Reflect pipeline and encodes the Claude Code patterns (progressive disclosure, description-first matching, strict tool scopes) that produce agents that actually work in production.
Manage the production GCP infrastructure for openclaw-ruh-enterprise. SSH into VMs, check resource usage (CPU, RAM, disk), view Docker containers, read logs, restart services, clean up disk, and run server maintenance. Use when asked to "check the server", "server health", "disk usage", "restart backend", "clean docker", "server logs", "SSH into prod", or any production infrastructure task.
Read logs and telemetry for openclaw-ruh-enterprise in local dev. Backend HTTP + gateway-proxy logs (/tmp/backend.log), per-sandbox gateway logs (/tmp/openclaw-gateway.log inside each container), OpenClaw structured JSON subsystem logs (/tmp/openclaw/openclaw-YYYY-MM-DD.log), Postgres state queries, and richer telemetry (Langfuse, OTEL, GlitchTip) when available. Use when asked to "check the logs", "why is the agent stuck", "what's the backend doing", "grep the gateway log", "look at the trace", or any local-dev log investigation task. For production (GCP VM) logs, use the /gcp-server skill instead.
Knowledge base maintenance and agent access for openclaw-ruh-enterprise. Five modes: read (orient before any task), spec (create a feature spec), link (verify and fix wikilink graph), audit (full KB health check), update (update existing notes after code changes). Use when asked to "check the KB", "create a spec", "update the knowledge base", "audit KB health", or at the start of any development task. Proactively suggest at Think phase and Ship phase of the gstack sprint.
Create and monitor Hermes tasks through the queue API with reproducible curl commands.