Agent Skills
› opensquilla/opensquilla
› meta-compliance-audit-bundle
meta-compliance-audit-bundle
GitHub用于GDPR/SOC2合规审计的元技能,通过深度研究生成带引用的报告、可签名Word文档、只读PDF归档及记忆笔记,确保证据链可追溯。
Trigger Scenarios
需要进行GDPR或SOC2合规性自查
需要生成带有引用来源的审计报告
Install
npx skills add opensquilla/opensquilla --skill meta-compliance-audit-bundle -g -y
SKILL.md
Frontmatter
{
"kind": "meta",
"name": "meta-compliance-audit-bundle",
"always": false,
"triggers": [
"合规审计",
"compliance audit",
"audit bundle",
"GDPR 自评"
],
"provenance": {
"origin": "opensquilla-original",
"license": "Apache-2.0"
},
"composition": {
"steps": [
{
"id": "research",
"with": {
"rounds": 1,
"question": "{{ inputs.user_message | xml_escape | truncate(512) }}"
},
"skill": "deep-research"
},
{
"id": "report",
"with": {
"body": "{{ outputs.research }}",
"title": "Compliance Report — {{ inputs.user_message | xml_escape | truncate(96) }}"
},
"skill": "docx",
"depends_on": [
"research"
]
},
{
"id": "archive",
"with": {
"html": "<!DOCTYPE html>\n<html><head><meta charset=\"utf-8\"><title>Audit Archive — {{ inputs.user_message | xml_escape | truncate(96) }}<\/title><\/head>\n<body>\n <h1>Audit Archive: {{ inputs.user_message | xml_escape | truncate(128) }}<\/h1>\n <article>{{ outputs.research | xml_escape }}<\/article>\n<\/body><\/html>\n",
"page_size": "A4"
},
"skill": "html-to-pdf",
"depends_on": [
"research"
]
},
{
"id": "memorize",
"kind": "tool_call",
"tool": "memory_save",
"tool_args": {
"mode": "append",
"path": "memory\/compliance-audit.md",
"content": "{{ outputs.research }}"
},
"depends_on": [
"research"
],
"tool_allowlist": [
"memory_save"
]
}
]
},
"description": "Auditable compliance bundle: deep-research with citations → signable .docx report → read-only PDF archive → memory note of audit findings.",
"meta_priority": 45
}
Compliance Audit Bundle (Meta-Skill)
Audit-grade output for GDPR / SOC2-style self-assessments. The
deep-research step preserves a per-claim citation list; the .docx
report is the signable version, the .pdf is the read-only archive,
and the memory note guarantees the evidence chain is recallable later.
Fallback
Manually run deep-research → docx → html-to-pdf → memory_save in order.
Version History
- 7f72a32 Current 2026-07-05 18:40


