{
  "schemaVersion": "1.0",
  "item": {
    "slug": "standards-compliance-checker",
    "name": "Standards Compliance Checker",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/datadrivenconstruction/standards-compliance-checker",
    "canonicalUrl": "https://clawhub.ai/datadrivenconstruction/standards-compliance-checker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/standards-compliance-checker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=standards-compliance-checker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "claw.json",
      "instructions.md",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/standards-compliance-checker"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/standards-compliance-checker",
    "agentPageUrl": "https://openagent3.xyz/skills/standards-compliance-checker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/standards-compliance-checker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/standards-compliance-checker/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Problem Statement",
        "body": "Construction data compliance challenges:\n\nMultiple standards to meet\nComplex validation rules\nInconsistent implementations\nManual checking is error-prone"
      },
      {
        "title": "Solution",
        "body": "Automated compliance checking against major construction data standards including ISO 19650, IFC, COBie, and UniFormat."
      },
      {
        "title": "Technical Implementation",
        "body": "from typing import Dict, Any, List, Optional\nfrom dataclasses import dataclass, field\nfrom enum import Enum\nimport re\n\n\nclass Standard(Enum):\n    ISO_19650 = \"iso_19650\"\n    IFC = \"ifc\"\n    COBIE = \"cobie\"\n    UNIFORMAT = \"uniformat\"\n    OMNICLASS = \"omniclass\"\n    MASTERFORMAT = \"masterformat\"\n\n\nclass ComplianceLevel(Enum):\n    COMPLIANT = \"compliant\"\n    MINOR_ISSUES = \"minor_issues\"\n    MAJOR_ISSUES = \"major_issues\"\n    NON_COMPLIANT = \"non_compliant\"\n\n\n@dataclass\nclass ComplianceIssue:\n    rule_id: str\n    rule_name: str\n    severity: str  # error, warning, info\n    message: str\n    field: str = \"\"\n    value: Any = None\n\n\n@dataclass\nclass ComplianceReport:\n    standard: Standard\n    total_rules: int\n    passed: int\n    failed: int\n    warnings: int\n    compliance_level: ComplianceLevel\n    issues: List[ComplianceIssue] = field(default_factory=list)\n\n\nclass StandardsComplianceChecker:\n    \"\"\"Check compliance with construction data standards.\"\"\"\n\n    def __init__(self):\n        self.rules: Dict[Standard, List[Dict]] = self._load_rules()\n\n    def _load_rules(self) -> Dict[Standard, List[Dict]]:\n        \"\"\"Load compliance rules for each standard.\"\"\"\n\n        return {\n            Standard.ISO_19650: [\n                {\"id\": \"ISO-001\", \"name\": \"File naming convention\", \"field\": \"filename\",\n                 \"pattern\": r\"^[A-Z]{2,6}-[A-Z]{2,4}-[A-Z]{2,3}-[A-Z0-9]{2,4}-[A-Z]{2,3}-[A-Z]{2,4}-[A-Z0-9]{3,8}$\"},\n                {\"id\": \"ISO-002\", \"name\": \"Status code valid\", \"field\": \"status\",\n                 \"values\": [\"WIP\", \"S0\", \"S1\", \"S2\", \"S3\", \"S4\", \"A\", \"B\", \"CR\"]},\n                {\"id\": \"ISO-003\", \"name\": \"Revision format\", \"field\": \"revision\",\n                 \"pattern\": r\"^P[0-9]{2}|C[0-9]{2}$\"},\n            ],\n            Standard.IFC: [\n                {\"id\": \"IFC-001\", \"name\": \"GUID format\", \"field\": \"global_id\",\n                 \"pattern\": r\"^[0-9A-Za-z_$]{22}$\"},\n                {\"id\": \"IFC-002\", \"name\": \"Name required\", \"field\": \"name\", \"required\": True},\n                {\"id\": \"IFC-003\", \"name\": \"ObjectType defined\", \"field\": \"object_type\", \"required\": True},\n            ],\n            Standard.COBIE: [\n                {\"id\": \"COB-001\", \"name\": \"Facility name\", \"field\": \"facility_name\", \"required\": True},\n                {\"id\": \"COB-002\", \"name\": \"Space name format\", \"field\": \"space_name\",\n                 \"pattern\": r\"^[A-Z0-9]{2,10}[-_]?[A-Z0-9]{0,10}$\"},\n                {\"id\": \"COB-003\", \"name\": \"Component type\", \"field\": \"component_type\", \"required\": True},\n                {\"id\": \"COB-004\", \"name\": \"Manufacturer info\", \"field\": \"manufacturer\", \"required\": True},\n            ],\n            Standard.UNIFORMAT: [\n                {\"id\": \"UNI-001\", \"name\": \"Level 1 code\", \"field\": \"level1\",\n                 \"values\": [\"A\", \"B\", \"C\", \"D\", \"E\", \"F\", \"G\", \"Z\"]},\n                {\"id\": \"UNI-002\", \"name\": \"Code format\", \"field\": \"code\",\n                 \"pattern\": r\"^[A-G][0-9]{4}$\"},\n            ],\n            Standard.MASTERFORMAT: [\n                {\"id\": \"MF-001\", \"name\": \"Division format\", \"field\": \"division\",\n                 \"pattern\": r\"^[0-9]{2}$\"},\n                {\"id\": \"MF-002\", \"name\": \"Section format\", \"field\": \"section\",\n                 \"pattern\": r\"^[0-9]{2}\\s?[0-9]{2}\\s?[0-9]{2}(\\.[0-9]{2})?$\"},\n            ]\n        }\n\n    def check_compliance(self, data: Dict[str, Any],\n                        standard: Standard) -> ComplianceReport:\n        \"\"\"Check data against specified standard.\"\"\"\n\n        rules = self.rules.get(standard, [])\n        issues = []\n        passed = 0\n        failed = 0\n        warnings = 0\n\n        for rule in rules:\n            result = self._check_rule(data, rule)\n            if result:\n                issues.append(result)\n                if result.severity == \"error\":\n                    failed += 1\n                else:\n                    warnings += 1\n            else:\n                passed += 1\n\n        # Determine compliance level\n        if failed == 0 and warnings == 0:\n            level = ComplianceLevel.COMPLIANT\n        elif failed == 0:\n            level = ComplianceLevel.MINOR_ISSUES\n        elif failed <= len(rules) * 0.3:\n            level = ComplianceLevel.MAJOR_ISSUES\n        else:\n            level = ComplianceLevel.NON_COMPLIANT\n\n        return ComplianceReport(\n            standard=standard,\n            total_rules=len(rules),\n            passed=passed,\n            failed=failed,\n            warnings=warnings,\n            compliance_level=level,\n            issues=issues\n        )\n\n    def _check_rule(self, data: Dict[str, Any], rule: Dict) -> Optional[ComplianceIssue]:\n        \"\"\"Check single compliance rule.\"\"\"\n\n        field = rule.get('field', '')\n        value = data.get(field)\n\n        # Required check\n        if rule.get('required') and (value is None or value == ''):\n            return ComplianceIssue(\n                rule_id=rule['id'],\n                rule_name=rule['name'],\n                severity=\"error\",\n                message=f\"Required field '{field}' is missing\",\n                field=field\n            )\n\n        # Skip other checks if value is empty\n        if value is None or value == '':\n            return None\n\n        # Pattern check\n        if 'pattern' in rule:\n            if not re.match(rule['pattern'], str(value)):\n                return ComplianceIssue(\n                    rule_id=rule['id'],\n                    rule_name=rule['name'],\n                    severity=\"error\",\n                    message=f\"Field '{field}' does not match required format\",\n                    field=field,\n                    value=value\n                )\n\n        # Allowed values check\n        if 'values' in rule:\n            if value not in rule['values']:\n                return ComplianceIssue(\n                    rule_id=rule['id'],\n                    rule_name=rule['name'],\n                    severity=\"error\",\n                    message=f\"Field '{field}' must be one of: {rule['values']}\",\n                    field=field,\n                    value=value\n                )\n\n        return None\n\n    def check_multiple_standards(self, data: Dict[str, Any],\n                                  standards: List[Standard]) -> Dict[str, ComplianceReport]:\n        \"\"\"Check data against multiple standards.\"\"\"\n\n        reports = {}\n        for standard in standards:\n            reports[standard.value] = self.check_compliance(data, standard)\n        return reports\n\n    def check_batch(self, records: List[Dict[str, Any]],\n                    standard: Standard) -> Dict[str, Any]:\n        \"\"\"Check multiple records against standard.\"\"\"\n\n        all_issues = []\n        compliant_count = 0\n\n        for i, record in enumerate(records):\n            report = self.check_compliance(record, standard)\n            if report.compliance_level == ComplianceLevel.COMPLIANT:\n                compliant_count += 1\n            for issue in report.issues:\n                all_issues.append({\n                    'record_index': i,\n                    'rule_id': issue.rule_id,\n                    'field': issue.field,\n                    'message': issue.message\n                })\n\n        return {\n            'standard': standard.value,\n            'total_records': len(records),\n            'compliant_records': compliant_count,\n            'compliance_rate': round(compliant_count / len(records) * 100, 1) if records else 0,\n            'total_issues': len(all_issues),\n            'issues': all_issues\n        }\n\n    def add_custom_rule(self, standard: Standard, rule: Dict):\n        \"\"\"Add custom compliance rule.\"\"\"\n\n        if standard not in self.rules:\n            self.rules[standard] = []\n        self.rules[standard].append(rule)\n\n    def generate_report_summary(self, report: ComplianceReport) -> str:\n        \"\"\"Generate human-readable report summary.\"\"\"\n\n        lines = [\n            f\"Compliance Report: {report.standard.value.upper()}\",\n            \"=\" * 40,\n            f\"Total Rules: {report.total_rules}\",\n            f\"Passed: {report.passed}\",\n            f\"Failed: {report.failed}\",\n            f\"Warnings: {report.warnings}\",\n            f\"Status: {report.compliance_level.value.upper()}\",\n            \"\",\n            \"Issues:\"\n        ]\n\n        for issue in report.issues:\n            lines.append(f\"  [{issue.severity.upper()}] {issue.rule_id}: {issue.message}\")\n\n        return \"\\n\".join(lines)"
      },
      {
        "title": "Quick Start",
        "body": "# Initialize checker\nchecker = StandardsComplianceChecker()\n\n# Check ISO 19650 compliance\ndata = {\n    \"filename\": \"PRJ-ARC-MOD-0001-DWG-PLAN-001\",\n    \"status\": \"S3\",\n    \"revision\": \"P01\"\n}\n\nreport = checker.check_compliance(data, Standard.ISO_19650)\nprint(f\"Compliance: {report.compliance_level.value}\")\nprint(f\"Passed: {report.passed}/{report.total_rules}\")"
      },
      {
        "title": "1. COBie Validation",
        "body": "cobie_data = {\n    \"facility_name\": \"Building A\",\n    \"space_name\": \"OFFICE-101\",\n    \"component_type\": \"HVAC_Unit\",\n    \"manufacturer\": \"Carrier\"\n}\nreport = checker.check_compliance(cobie_data, Standard.COBIE)"
      },
      {
        "title": "2. Batch Validation",
        "body": "records = [{\"filename\": \"...\", \"status\": \"...\"}, ...]\nbatch_report = checker.check_batch(records, Standard.ISO_19650)\nprint(f\"Compliance rate: {batch_report['compliance_rate']}%\")"
      },
      {
        "title": "3. Multiple Standards",
        "body": "reports = checker.check_multiple_standards(\n    data,\n    [Standard.ISO_19650, Standard.IFC]\n)"
      },
      {
        "title": "Resources",
        "body": "DDC Book: Chapter 2.5 - Data Models and Standards\nISO 19650: Information management using BIM\nWebsite: https://datadrivenconstruction.io"
      }
    ],
    "body": "Standards Compliance Checker\nBusiness Case\nProblem Statement\n\nConstruction data compliance challenges:\n\nMultiple standards to meet\nComplex validation rules\nInconsistent implementations\nManual checking is error-prone\nSolution\n\nAutomated compliance checking against major construction data standards including ISO 19650, IFC, COBie, and UniFormat.\n\nTechnical Implementation\nfrom typing import Dict, Any, List, Optional\nfrom dataclasses import dataclass, field\nfrom enum import Enum\nimport re\n\n\nclass Standard(Enum):\n    ISO_19650 = \"iso_19650\"\n    IFC = \"ifc\"\n    COBIE = \"cobie\"\n    UNIFORMAT = \"uniformat\"\n    OMNICLASS = \"omniclass\"\n    MASTERFORMAT = \"masterformat\"\n\n\nclass ComplianceLevel(Enum):\n    COMPLIANT = \"compliant\"\n    MINOR_ISSUES = \"minor_issues\"\n    MAJOR_ISSUES = \"major_issues\"\n    NON_COMPLIANT = \"non_compliant\"\n\n\n@dataclass\nclass ComplianceIssue:\n    rule_id: str\n    rule_name: str\n    severity: str  # error, warning, info\n    message: str\n    field: str = \"\"\n    value: Any = None\n\n\n@dataclass\nclass ComplianceReport:\n    standard: Standard\n    total_rules: int\n    passed: int\n    failed: int\n    warnings: int\n    compliance_level: ComplianceLevel\n    issues: List[ComplianceIssue] = field(default_factory=list)\n\n\nclass StandardsComplianceChecker:\n    \"\"\"Check compliance with construction data standards.\"\"\"\n\n    def __init__(self):\n        self.rules: Dict[Standard, List[Dict]] = self._load_rules()\n\n    def _load_rules(self) -> Dict[Standard, List[Dict]]:\n        \"\"\"Load compliance rules for each standard.\"\"\"\n\n        return {\n            Standard.ISO_19650: [\n                {\"id\": \"ISO-001\", \"name\": \"File naming convention\", \"field\": \"filename\",\n                 \"pattern\": r\"^[A-Z]{2,6}-[A-Z]{2,4}-[A-Z]{2,3}-[A-Z0-9]{2,4}-[A-Z]{2,3}-[A-Z]{2,4}-[A-Z0-9]{3,8}$\"},\n                {\"id\": \"ISO-002\", \"name\": \"Status code valid\", \"field\": \"status\",\n                 \"values\": [\"WIP\", \"S0\", \"S1\", \"S2\", \"S3\", \"S4\", \"A\", \"B\", \"CR\"]},\n                {\"id\": \"ISO-003\", \"name\": \"Revision format\", \"field\": \"revision\",\n                 \"pattern\": r\"^P[0-9]{2}|C[0-9]{2}$\"},\n            ],\n            Standard.IFC: [\n                {\"id\": \"IFC-001\", \"name\": \"GUID format\", \"field\": \"global_id\",\n                 \"pattern\": r\"^[0-9A-Za-z_$]{22}$\"},\n                {\"id\": \"IFC-002\", \"name\": \"Name required\", \"field\": \"name\", \"required\": True},\n                {\"id\": \"IFC-003\", \"name\": \"ObjectType defined\", \"field\": \"object_type\", \"required\": True},\n            ],\n            Standard.COBIE: [\n                {\"id\": \"COB-001\", \"name\": \"Facility name\", \"field\": \"facility_name\", \"required\": True},\n                {\"id\": \"COB-002\", \"name\": \"Space name format\", \"field\": \"space_name\",\n                 \"pattern\": r\"^[A-Z0-9]{2,10}[-_]?[A-Z0-9]{0,10}$\"},\n                {\"id\": \"COB-003\", \"name\": \"Component type\", \"field\": \"component_type\", \"required\": True},\n                {\"id\": \"COB-004\", \"name\": \"Manufacturer info\", \"field\": \"manufacturer\", \"required\": True},\n            ],\n            Standard.UNIFORMAT: [\n                {\"id\": \"UNI-001\", \"name\": \"Level 1 code\", \"field\": \"level1\",\n                 \"values\": [\"A\", \"B\", \"C\", \"D\", \"E\", \"F\", \"G\", \"Z\"]},\n                {\"id\": \"UNI-002\", \"name\": \"Code format\", \"field\": \"code\",\n                 \"pattern\": r\"^[A-G][0-9]{4}$\"},\n            ],\n            Standard.MASTERFORMAT: [\n                {\"id\": \"MF-001\", \"name\": \"Division format\", \"field\": \"division\",\n                 \"pattern\": r\"^[0-9]{2}$\"},\n                {\"id\": \"MF-002\", \"name\": \"Section format\", \"field\": \"section\",\n                 \"pattern\": r\"^[0-9]{2}\\s?[0-9]{2}\\s?[0-9]{2}(\\.[0-9]{2})?$\"},\n            ]\n        }\n\n    def check_compliance(self, data: Dict[str, Any],\n                        standard: Standard) -> ComplianceReport:\n        \"\"\"Check data against specified standard.\"\"\"\n\n        rules = self.rules.get(standard, [])\n        issues = []\n        passed = 0\n        failed = 0\n        warnings = 0\n\n        for rule in rules:\n            result = self._check_rule(data, rule)\n            if result:\n                issues.append(result)\n                if result.severity == \"error\":\n                    failed += 1\n                else:\n                    warnings += 1\n            else:\n                passed += 1\n\n        # Determine compliance level\n        if failed == 0 and warnings == 0:\n            level = ComplianceLevel.COMPLIANT\n        elif failed == 0:\n            level = ComplianceLevel.MINOR_ISSUES\n        elif failed <= len(rules) * 0.3:\n            level = ComplianceLevel.MAJOR_ISSUES\n        else:\n            level = ComplianceLevel.NON_COMPLIANT\n\n        return ComplianceReport(\n            standard=standard,\n            total_rules=len(rules),\n            passed=passed,\n            failed=failed,\n            warnings=warnings,\n            compliance_level=level,\n            issues=issues\n        )\n\n    def _check_rule(self, data: Dict[str, Any], rule: Dict) -> Optional[ComplianceIssue]:\n        \"\"\"Check single compliance rule.\"\"\"\n\n        field = rule.get('field', '')\n        value = data.get(field)\n\n        # Required check\n        if rule.get('required') and (value is None or value == ''):\n            return ComplianceIssue(\n                rule_id=rule['id'],\n                rule_name=rule['name'],\n                severity=\"error\",\n                message=f\"Required field '{field}' is missing\",\n                field=field\n            )\n\n        # Skip other checks if value is empty\n        if value is None or value == '':\n            return None\n\n        # Pattern check\n        if 'pattern' in rule:\n            if not re.match(rule['pattern'], str(value)):\n                return ComplianceIssue(\n                    rule_id=rule['id'],\n                    rule_name=rule['name'],\n                    severity=\"error\",\n                    message=f\"Field '{field}' does not match required format\",\n                    field=field,\n                    value=value\n                )\n\n        # Allowed values check\n        if 'values' in rule:\n            if value not in rule['values']:\n                return ComplianceIssue(\n                    rule_id=rule['id'],\n                    rule_name=rule['name'],\n                    severity=\"error\",\n                    message=f\"Field '{field}' must be one of: {rule['values']}\",\n                    field=field,\n                    value=value\n                )\n\n        return None\n\n    def check_multiple_standards(self, data: Dict[str, Any],\n                                  standards: List[Standard]) -> Dict[str, ComplianceReport]:\n        \"\"\"Check data against multiple standards.\"\"\"\n\n        reports = {}\n        for standard in standards:\n            reports[standard.value] = self.check_compliance(data, standard)\n        return reports\n\n    def check_batch(self, records: List[Dict[str, Any]],\n                    standard: Standard) -> Dict[str, Any]:\n        \"\"\"Check multiple records against standard.\"\"\"\n\n        all_issues = []\n        compliant_count = 0\n\n        for i, record in enumerate(records):\n            report = self.check_compliance(record, standard)\n            if report.compliance_level == ComplianceLevel.COMPLIANT:\n                compliant_count += 1\n            for issue in report.issues:\n                all_issues.append({\n                    'record_index': i,\n                    'rule_id': issue.rule_id,\n                    'field': issue.field,\n                    'message': issue.message\n                })\n\n        return {\n            'standard': standard.value,\n            'total_records': len(records),\n            'compliant_records': compliant_count,\n            'compliance_rate': round(compliant_count / len(records) * 100, 1) if records else 0,\n            'total_issues': len(all_issues),\n            'issues': all_issues\n        }\n\n    def add_custom_rule(self, standard: Standard, rule: Dict):\n        \"\"\"Add custom compliance rule.\"\"\"\n\n        if standard not in self.rules:\n            self.rules[standard] = []\n        self.rules[standard].append(rule)\n\n    def generate_report_summary(self, report: ComplianceReport) -> str:\n        \"\"\"Generate human-readable report summary.\"\"\"\n\n        lines = [\n            f\"Compliance Report: {report.standard.value.upper()}\",\n            \"=\" * 40,\n            f\"Total Rules: {report.total_rules}\",\n            f\"Passed: {report.passed}\",\n            f\"Failed: {report.failed}\",\n            f\"Warnings: {report.warnings}\",\n            f\"Status: {report.compliance_level.value.upper()}\",\n            \"\",\n            \"Issues:\"\n        ]\n\n        for issue in report.issues:\n            lines.append(f\"  [{issue.severity.upper()}] {issue.rule_id}: {issue.message}\")\n\n        return \"\\n\".join(lines)\n\nQuick Start\n# Initialize checker\nchecker = StandardsComplianceChecker()\n\n# Check ISO 19650 compliance\ndata = {\n    \"filename\": \"PRJ-ARC-MOD-0001-DWG-PLAN-001\",\n    \"status\": \"S3\",\n    \"revision\": \"P01\"\n}\n\nreport = checker.check_compliance(data, Standard.ISO_19650)\nprint(f\"Compliance: {report.compliance_level.value}\")\nprint(f\"Passed: {report.passed}/{report.total_rules}\")\n\nCommon Use Cases\n1. COBie Validation\ncobie_data = {\n    \"facility_name\": \"Building A\",\n    \"space_name\": \"OFFICE-101\",\n    \"component_type\": \"HVAC_Unit\",\n    \"manufacturer\": \"Carrier\"\n}\nreport = checker.check_compliance(cobie_data, Standard.COBIE)\n\n2. Batch Validation\nrecords = [{\"filename\": \"...\", \"status\": \"...\"}, ...]\nbatch_report = checker.check_batch(records, Standard.ISO_19650)\nprint(f\"Compliance rate: {batch_report['compliance_rate']}%\")\n\n3. Multiple Standards\nreports = checker.check_multiple_standards(\n    data,\n    [Standard.ISO_19650, Standard.IFC]\n)\n\nResources\nDDC Book: Chapter 2.5 - Data Models and Standards\nISO 19650: Information management using BIM\nWebsite: https://datadrivenconstruction.io"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/datadrivenconstruction/standards-compliance-checker",
    "publisherUrl": "https://clawhub.ai/datadrivenconstruction/standards-compliance-checker",
    "owner": "datadrivenconstruction",
    "version": "2.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/standards-compliance-checker",
    "downloadUrl": "https://openagent3.xyz/downloads/standards-compliance-checker",
    "agentUrl": "https://openagent3.xyz/skills/standards-compliance-checker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/standards-compliance-checker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/standards-compliance-checker/agent.md"
  }
}