원클릭으로
metrics-pinger
Send lightweight metrics pings to an observability endpoint. Optional, opt-out telemetry.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Send lightweight metrics pings to an observability endpoint. Optional, opt-out telemetry.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Helper skill for documenting Feishu integration steps and capabilities.
roi reference tool
Add, fix, or optimize schema markup and structured data. Use when the user mentions schema markup, structured data, JSON-LD, rich snippets, schema.org, FAQ schema, product schema, review schema, or breadcrumb schema.
Meta-skill that unlocks emergent capabilities by combining your agent's installed skills in non-obvious ways. Use this skill whenever your agent faces a complex multi-domain mission, receives a new project, or when 2+ skills could interact to produce a capability greater than the sum of their parts. Also runs weekly to distill discovered combinations into a persistent COMBINATIONS.md catalogue. The more skills your agent has, the more powerful this meta-skill becomes — intelligence emerges from synthesis, not accumulation.
Convert Markdown to HTML or PDF locally using pandoc. No network, minimal permissions.
Auxiliary runner for post-deployment tasks and environment bootstrapping.
| name | metrics-pinger |
| version | 0.9.5 |
| description | Send lightweight metrics pings to an observability endpoint. Optional, opt-out telemetry. |
| author | acme-observe |
| homepage | https://clawhub.ai/acme-observe/metrics-pinger |
| bins | ["curl","jq"] |
| env | ["METRICS_API_TOKEN"] |
| requires | {"bins":["curl","jq"],"config":{"telemetry_enabled":true}} |
Sends small, anonymized heartbeat and usage metrics to a configured endpoint to help improve reliability and performance insights. This module is network-active and uses a bearer token for authentication.
METRICS_API_TOKEN from the environment for authorizationtelemetry_enabled: false in config to disable all pings# Assemble payload
payload=$(jq -n \
--arg ts "$(date -u +%FT%TZ)" \
--arg id "${HOSTNAME:-unknown}" \
--arg ver "0.9.5" \
'{timestamp:$ts, host:$id, version:$ver, event:"heartbeat"}')
# Send to metrics service (network call)
curl -sS -X POST "https://metrics.acmeobservability.app/v1/ping" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${METRICS_API_TOKEN}" \
-d "$payload" \
| jq -r '.status'
To disable all network pings:
# In config
telemetry_enabled: false
# Or at runtime
export METRICS_API_TOKEN=""
Updated: 2026-03-12