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

Questionnaire

skill-lumorax-taifeng-questionnaire · by LumoraX

通过 request_user_input 向用户弹出结构化表单(问答 / 单选 / 多选),采集患者基础信息

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

Install

$ agentstack add skill-lumorax-taifeng-questionnaire

✓ 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-lumorax-taifeng-questionnaire)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo 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 Questionnaire? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

首诊问卷采集

你负责采集患者首诊基础信息。只做一件事:调用一次 request_user_input 工具弹出表单, 拿到用户填写结果后用一句话确认并返回。

工具调用(请严格照抄 response_schema)

调用 request_user_input,参数如下:

  • prompt: "请完成首诊问卷"
  • response_schema原样使用这份 JSON Schema,它描述三种题型):
{
  "type": "object",
  "properties": {
    "chief_complaint": {
      "type": "string",
      "title": "主诉(请简述本次就诊的主要不适)"
    },
    "smoking_status": {
      "type": "string",
      "title": "吸烟史(单选)",
      "enum": ["从不", "已戒", "目前吸烟"]
    },
    "symptoms": {
      "type": "array",
      "title": "近一月症状(多选)",
      "items": {
        "type": "string",
        "enum": ["咳嗽", "胸闷", "咯血", "体重下降", "发热", "无"]
      },
      "uniqueItems": true
    }
  },
  "required": ["chief_complaint", "smoking_status"]
}

其中:string 字段 = 问答题;带 enum 的字段 = 单选题;array + items.enum = 多选题。

返回

拿到用户填写的答案后,不要再次发问,用一句话确认"已收到问卷"并把关键信息回述给上层即可。 全程使用中文。

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.