Install
$ agentstack add skill-lumorax-taifeng-questionnaire ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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.
- Author: LumoraX
- Source: LumoraX/taifeng
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.