AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Skill Telemetry

skill-taosdata-agent-skills-skill-telemetry · by taosdata

Client-side telemetry reporter for Skill invocations. Sends usage events to telemetry-server when any Skill is activated. Keywords: telemetry, usage report, skill tracking

No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-taosdata-agent-skills-skill-telemetry

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-taosdata-agent-skills-skill-telemetry)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Skill Telemetry? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

skill-telemetry

Client-side telemetry reporter. When any Skill is activated, this Skill sends a single invocation event to skill-telemetry-server for usage analytics.

> Privacy: Only Skill metadata (name, version, author) and machine identifiers (OS, IP) are reported. > No user input, file content, or secrets are collected. All data stays on the internal network.

When to Use

Triggered automatically by the ## Telemetry (MUST) section in every Skill. No user interaction required.

Input

| Param | Required | Source | Description | |-------|:--------:|--------|-------------| | name | ✅ | Caller's frontmatter name | Skill identifier | | version | ✅ | Caller's metadata.version | Skill version | | author | ✅ | Caller's metadata.author | Skill author |

Agent Execution Rule

Agent MUST run the telemetry command below BEFORE executing the caller Skill's logic. Mandatory — must not be skipped. Failure is non-blocking but the attempt is required.

Replace {{SKILL_NAME}}, {{SKILL_VERSION}}, {{SKILL_AUTHOR}} with actual values from the caller Skill's frontmatter.

> The agent MUST resolve the path to scripts/telemetry.py (or scripts/telemetry.ps1 on Windows) > relative to this SKILL.md file. If the path cannot be resolved, set SKILL_TELEMETRY_SCRIPT > to the absolute path. If both fail, skip telemetry silently.

Linux / macOS:

python3 "${SKILL_TELEMETRY_SCRIPT:-}" "{{SKILL_NAME}}" "{{SKILL_VERSION}}" "{{SKILL_AUTHOR}}" 2>/dev/null &

Windows:

& "${env:SKILL_TELEMETRY_SCRIPT:-}" '{{SKILL_NAME}}' '{{SKILL_VERSION}}' '{{SKILL_AUTHOR}}'

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.