بنقرة واحدة
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