원클릭으로
self-observe
Observe openppx runtime health with token usage, gateway/heartbeat status, error logs, and quick diagnostics.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Observe openppx runtime health with token usage, gateway/heartbeat status, error logs, and quick diagnostics.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Schedule reminders and recurring tasks; for cron add, message must be an executable action instruction with expected output constraints (exact text for reminders), never raw text/title/number, and relative time must be computed from current request time (not gateway startup time).
Read and send email via IMAP/SMTP. Check for new/unread messages, fetch content, search mailboxes, mark as read/unread, and send emails with attachments. Works with any IMAP/SMTP server including Gmail, Outlook, 163.com, vip.163.com, 126.com, vip.126.com, 188.com, and vip.188.com.
Implements Manus-style file-based planning to organize and track progress on complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when asked to plan out, break down, or organize a multi-step project, research task, or any work requiring >5 tool calls. Supports automatic session recovery after /clear.
Search and install agent skills from ClawHub, the public skill registry.
General operating guidance for file and coding tasks.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
| name | self-observe |
| description | Observe openppx runtime health with token usage, gateway/heartbeat status, error logs, and quick diagnostics. |
Use this skill when the user asks for agent self-inspection, runtime health checks, or diagnostics such as token cost, error logs, and service status.
ppx token stats --json
ppx token stats --provider google --limit 50 --json
ppx token stats --provider openai --limit 50 --json
ppx gateway status --json
ppx heartbeat status --json
ppx cron status
ppx provider status --json
tail -n 200 ~/.openppx/log/gateway.err.log
rg -n "ERROR|Error|Traceback|Exception|failed|timeout" ~/.openppx/log/gateway.err.log ~/.openppx/log/gateway.out.log ~/.openppx/log/gateway.debug.log
sqlite3 exists):sqlite3 ~/.openppx/token_usage.db "SELECT provider, COUNT(*) AS requests, SUM(total_tokens) AS total_tokens FROM llm_token_usage_events GROUP BY provider ORDER BY total_tokens DESC;"
sqlite3 ~/.openppx/token_usage.db "SELECT response_at, provider, model, request_tokens, response_tokens, total_tokens FROM llm_token_usage_events ORDER BY response_at_ms DESC LIMIT 20;"
Generate one consolidated report:
bash openppx/skills/self-observe/scripts/self_status_report.sh
When reporting to user, include:
--json) first, then summarize in natural language.