"""
sec_form_pf_compiler — Compiles SEC Form PF data for private fund advisers under Dodd-Frank Act Section 404 and SEC Rule 204(b)-1
PREMIUM SKILL — full implementation available to subscribers.
Subscribe: https://snowdrop.ai (launching soon)
AUTO-GENERATED STUB — do not edit manually.
Source of truth: snowdrop-core/skills/premium/compliance/sec_form_pf_compiler.py
Regenerate: python scripts/build_public_stubs.py
"""
from __future__ import annotations # defers annotation evaluation (PEP 563)
from typing import Any, Optional, Union # FastMCP resolves annotations via get_type_hints()
from skills._paywall import paywall_response
TOOL_META = {
"name": "sec_form_pf_compiler",
"tier": "premium",
"description": "Compiles SEC Form PF data for private fund advisers under Dodd-Frank Act Section 404 and SEC Rule 204(b)-1. Determines Large Adviser classification, filing frequency, and generates the structured Form PF JSON payload for PFRD submission. (Premium — subscribe at https://snowdrop.ai)",
}
def sec_form_pf_compiler(fund_data: dict[str, Any]) -> dict[str, Any]:
"""Premium skill — subscribe to access full implementation."""
return paywall_response("sec_form_pf_compiler")