survey-creator-skill

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

A generator for HTML survey pages from plain-language requirements. It first builds and checks the survey’s question structure, then creates a submittable page for desktop and mobile use.

In plain words
What is it for?
Use it to create, design, prototype, render, or generate questionnaire pages with structured questions and answer options.
Why use it?
It reduces the need to manually design question data, form behavior, accessibility details, and submitted answers. Validation helps ensure submitted choices belong to the intended survey.

Skill for Claude CodeCodex

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

Good fit Use it to create, design, prototype, render, or generate questionnaire pages with structured questions and answer options.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/piter902/survey-creator-skill/survey-creator
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-creator
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-creator-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/piter902/survey-creator-skill/survey-creator/github.svg)](https://agentmods.dev/skills/piter902/survey-creator-skill/survey-creator)
Your own site
<a href="https://agentmods.dev/skills/piter902/survey-creator-skill/survey-creator"><img src="https://agentmods.dev/badge/skills/piter902/survey-creator-skill/survey-creator/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-creator-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/piter902/survey-creator-skill/survey-creator"><img src="https://agentmods.dev/badge/skills/piter902/survey-creator-skill/survey-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,854 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.00094 $0.05854
Opus 5 $0.00047 $0.02927
Sonnet 5 $0.00019 $0.01171
Haiku 4.5 $0.00009 $0.00585

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

Security

Grade A, and why

survey-creator-skill 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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (evals/real-world/run_real_world_evals.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-creator/SKILL.md · 578 lines

How it starts

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

Survey Creator

Generate HTML survey pages only.

Treat skills/survey-creator/ as the canonical generator root for this skill. All generator-private references, templates, validators, tests, examples, and docs live under this directory.

The workflow is:

  1. understand the user's intent
  2. analyze the prompt and infer the survey structure
  3. generate a schema draft from references/
  4. validate that schema against the reference formats and field rules
  5. render a submittable HTML page from the validated schema
  6. verify the HTML does not blank-screen in desktop and mobile browser runtimes
  7. verify basic accessibility and form semantics
  8. make the generated submit payload conform to the submission contract
  9. validate the submit payload against the concrete schema so every questionId / optionId / childId / score belongs to that exact survey

Do not return raw JSON schema by default. Use the schema as an internal generation artifact unless the user explicitly asks to inspect it.

Load these references first

Before generating output, read only the files you need from:

  • references/schema-notes.md
  • references/field-guide-overview.md
  • references/id-rules.md
  • references/survey-welcom.json
  • references/survey-fields.md
  • references/question-radio.json
  • references/radio-fields.md
  • references/question-checkbox.json
  • references/checkbox-fields.md
  • references/question-input.json
  • references/input-fields.md
  • references/question-score.json
  • references/score-fields.md
  • references/question-nps.json
  • references/nps-fields.md
  • references/question-finish.json
  • references/finish-fields.md
  • references/rich-text-rules.md
  • references/pagination-rules.md
  • references/submission-contract.md
  • references/child-input-rules.md
  • references/local-cache-rules.md
  • references/logic-rules.md
  • references/logic-specification.md
  • references/logic-example-library.md
  • references/toc-survey-ui-rules.md
  • references/toc-style-system.md
  • validators/README.md
  • validators/validate_reference_consistency.py
  • validators/validate_survey_schema.py
  • validators/validate_survey_payload.py
  • validators/validate_payload_against_schema.py
  • validators/validate_survey_html_runtime.py
  • validators/validate_survey_html_interaction_e2e.py
  • validators/validate_survey_html_accessibility.py
  • validators/render_survey_html.py
  • validators/build_validated_survey.py
  • validators/generate_sample_payload.py
  • docs/LEGALITY_GUARANTEE.md
  • docs/LEGALITY_MATRIX.md
  • tests/contract/README.md
  • run_all_legality_checks.sh

Read the full file on GitHub · 578 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 578 lines · 94 tokens per session scan A 147aa3f99fc9

Subscribe to this mod's changes

survey-creator-skill is a skill published in the GitHub repository piter902/survey-creator-skill (6 stars, last pushed 3mo ago), licensed MIT. It adds 94 tokens to every session and 5,854 once invoked, about $0.0005 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

design-system-reference

Style guides and implementation rules for frontend design. Works with design-discovery agent which handles context gathering and VS-based style recommendations. Contains detailed style guides, anti-patterns, and implementation checklists.

wigtn/wigtn-plugins · 43 tokens

aep

Use this skill whenever working with AEP (Agent Element Protocol) 2.8, dynAEP (main AEP event runtime), Base Node, Composer Lite, CCA / setup agent, component registry, CAW, UCB, Path A/B connect, dynAEP-TA, dynAEP-TA-P or any AEP governance feature. Triggers include 'AEP', 'dynAEP', 'dynAEP-TA', 'dynAEP-TA-P'…

thePM001/AEP-agent-element-protocol · 411 tokens

taste-bank-contribute

How to distill a frontend style from an existing project and submit it to the Taste Bank library. Covers the full contribution SOP: identity setup, sampling, packing, desensitization, and CLI submission. Invoke when the user wants to contribute/submit a new style, or distill a project's visual design into a reusable…

QuasarG/taste-bank · 87 tokens

taste-bank

The front-end style library for coding agents. Use the taste-bank CLI to browse curated design styles (design tokens + rules + templates) and inject them into the current project. Invoke when the user wants design/style guidance, references, or to apply a saved visual style to a frontend. Commands: taste-bank list /…

QuasarG/taste-bank · 75 tokens

aep-caw-policy-create

Use when creating a new AepCaw security policy, including agent sandboxes, CI pipelines, development environments, HTTP service gateways, or Postgres-family database access policies.

thePM001/AEP-agent-element-protocol · 41 tokens

ui-reviewer

UI visual review skill. Uses a 4-layer review framework (code static audit → visual defect scan → aesthetic evaluation → AI-generated code typical issues), combined with browser preview verification, to systematically diagnose UI and output specific actionable fix suggestions. Triggers when user says "review UI"…

korbinjoe/TeemAI · 118 tokens