survey-analytics

survey-analytics is a skill for Claude Code, Codex from piter902/survey-creator-skill. It costs 54 tokens per session (1,326 once invoked), scanned A, original, MIT.

A survey-results analysis workflow that compares answer data with a survey’s question-and-rule definition. It produces spreadsheets, statistics, charts, structured data, and a written findings report.

In plain words
What is it for?
Use it to summarize survey answers, find patterns, compare segments, and create recommendations. It accepts schema and answer files or equivalent inline data.
Why use it?
It removes the need to calculate question-level results and compare respondent groups by hand. It also keeps the analysis tied to the survey’s defined structure.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to summarize survey answers, find patterns, compare segments, and create recommendations. It accepts schema and answer files or equivalent inline data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/piter902/survey-creator-skill/survey-analytics
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add piter902/survey-creator-skill --skill survey-analytics
Clone the repo
git clone --depth 1 https://github.com/piter902/survey-creator-skill

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for survey-analytics

README.md
[![agentmods](https://agentmods.dev/badge/skills/piter902/survey-creator-skill/survey-analytics/github.svg)](https://agentmods.dev/skills/piter902/survey-creator-skill/survey-analytics)
Your own site
<a href="https://agentmods.dev/skills/piter902/survey-creator-skill/survey-analytics"><img src="https://agentmods.dev/badge/skills/piter902/survey-creator-skill/survey-analytics/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for survey-analytics

Your own site · 80×15
<a href="https://agentmods.dev/skills/piter902/survey-creator-skill/survey-analytics"><img src="https://agentmods.dev/badge/skills/piter902/survey-creator-skill/survey-analytics.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,326 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00054 $0.01326
Opus 5 $0.00027 $0.00663
Sonnet 5 $0.00011 $0.00265
Haiku 4.5 $0.00005 $0.00133

Measured 9d ago against content hash 41baddedb9f0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

survey-analytics scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (tools/analyze_survey_results.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/survey-analytics/SKILL.md · 218 lines

How it starts

The opening of the file, as written. The whole thing — 218 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Survey Analytics

This skill analyzes survey results.

It does not generate survey HTML. It consumes:

  • a survey schema
  • a survey answers dataset

Primary job

Take a validated survey schema plus answers and produce:

  • one Excel workbook where columns are questions and rows are submissions
  • per-question statistics and charts by question type
  • cross-question or logic-driven analysis tables
  • a machine-readable analysis JSON
  • a human-readable insight report

Read these first

Before analyzing, read:

  • ../../specs/analytics-input.md
  • ../../specs/answer-storage.md
  • ../../specs/submission-api.md
  • ./references/metrics-model.md
  • ./references/report-shape.md
  • ./docs/OUTPUTS.md

Expected input

Preferred input:

  • absolute path to a survey schema JSON file
  • absolute path to an answers JSON or JSONL file

Also acceptable:

  • inline schema JSON
  • inline answers JSON
  • a directory containing both schema and answers exports

Required execution mode

Do not stop at a prose-only analysis when local file execution is available.

Use the executable pipeline:

python3 <survey-analytics-root>/tools/analyze_survey_results.py \
  --schema /absolute/path/to/schema.json \
  --answers /absolute/path/to/answers.json \
  --out-dir /absolute/path/to/output-dir

When the user wants specific cross-question analysis, pass a config file:

python3 <survey-analytics-root>/tools/analyze_survey_results.py \
  --schema /absolute/path/to/schema.json \
  --answers /absolute/path/to/answers.json \
  --cross-config /absolute/path/to/cross-config.json \
  --out-dir /absolute/path/to/output-dir

The script generates:

  • <name>.analysis.xlsx
  • <name>.analysis.json
  • <name>.analysis.md

If the user only asks for insights and does not want files, you may summarize the generated report instead of returning file contents.

Analysis rules

  1. validate that every normalized answer document belongs to the provided surveyId
  2. ignore malformed records, but report how many were excluded and why
  3. compute distributions only from structurally valid answers
  4. preserve question ids and option ids in intermediate reasoning
  5. separate factual summary from interpretation
  6. call out low sample size before making strong conclusions
  7. do not invent respondent intent that is not grounded in the dataset
  8. when schema logic exists, use it to infer finish-path or segment-level analysis when possible

Read the full file on GitHub · 218 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 218 lines · 54 tokens per session scan A 41baddedb9f0

Subscribe to this mod's changes

survey-analytics is a skill published in the GitHub repository piter902/survey-creator-skill (6 stars, last pushed 3mo ago), licensed MIT. It adds 54 tokens to every session and 1,326 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

akf-trust-metadata

The AI native file format. EXIF for AI — stamps every file with trust scores, source provenance, and compliance metadata. Embeds into 20+ formats (DOCX, PDF, images, code). EU AI Act, SOX, HIPAA auditing.

sickn33/agentic-awesome-skills · 60 tokens

open-ontologies

AI-native ontology engineering using 50+ MCP tools backed by an in-memory Oxigraph triple store. Build, validate, query, and govern RDF/OWL ontologies with a generate-validate-iterate loop. Use when building ontologies, knowledge graphs, RDF data, SPARQL queries, BORO/4D modeling, SHACL validation, clinical…

fabio-rovai/open-ontologies · 110 tokens

review-trtmc-pr

Review a TensorRT-Model-Connect GitHub PR or local contributor branch against the current post-#1093 model-family isolation architecture, repository rules, behavioral correctness, and exact-head validation evidence. Use for contributor self-review before marking a PR ready, or when deciding whether a community PR is…

NVIDIA/TensorRT-Model-Connect · 98 tokens

submit-github-bug-issue

Use when converting QA findings, black-box failures, red-team reports, regression evidence, or local bug notes into GitHub Issues for NVIDIA/TensorRT-Model-Connect. Standardizes checking issue templates, checking labels, de-duplicating existing issues, drafting a bug report, creating the issue on GitHub, applying the…

NVIDIA/TensorRT-Model-Connect · 82 tokens

optimize-model-precision

Evaluate supported precision, quantization, or selected FP32-layer choices for one TensorRT-Model-Connect family with matched correctness and timing.

NVIDIA/TensorRT-Model-Connect · 34 tokens

transform-model

Add a Hugging Face or local checkpoint to TensorRT-Model-Connect as a self-contained family, or extend the family that already owns it.

NVIDIA/TensorRT-Model-Connect · 33 tokens