Initial commit — Performance West telecom compliance platform
Includes: API (Express/TypeScript), Astro site, Python workers, document generators, FCC compliance tools, Canada CRTC formation, Ansible infrastructure, and deployment scripts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
commit
f8cd37ac8c
1823 changed files with 145167 additions and 0 deletions
4
scripts/formation/states/sd/__init__.py
Normal file
4
scripts/formation/states/sd/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
from .config import CONFIG
|
||||
from .adapter import SDPortal
|
||||
|
||||
__all__ = ["CONFIG", "SDPortal"]
|
||||
22
scripts/formation/states/sd/adapter.py
Normal file
22
scripts/formation/states/sd/adapter.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
from scripts.formation.base import StatePortal
|
||||
from .config import CONFIG
|
||||
|
||||
|
||||
class SDPortal(StatePortal):
|
||||
"""Adapter for the South Dakota Secretary of State business portal."""
|
||||
|
||||
CONFIG = CONFIG
|
||||
|
||||
def search_name(self, name: str) -> dict:
|
||||
"""Search for a business name via the SD SOS enterprise portal."""
|
||||
return self._web_search(name)
|
||||
|
||||
def file_llc(self, payload: dict) -> dict:
|
||||
"""File Articles of Organization for a South Dakota LLC ($150)."""
|
||||
payload.setdefault("fee", CONFIG["fees"]["llc"])
|
||||
return self._submit_filing("llc", payload)
|
||||
|
||||
def file_corporation(self, payload: dict) -> dict:
|
||||
"""File Articles of Incorporation in South Dakota ($150)."""
|
||||
payload.setdefault("fee", CONFIG["fees"]["corporation"])
|
||||
return self._submit_filing("corporation", payload)
|
||||
20
scripts/formation/states/sd/config.py
Normal file
20
scripts/formation/states/sd/config.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
CONFIG = {
|
||||
"state": "South Dakota",
|
||||
"abbreviation": "SD",
|
||||
"agency": "Secretary of State",
|
||||
"agency_url": "https://sdsos.gov",
|
||||
"search_url": "https://sosenterprise.sd.gov/BusinessServices/Business/FilingSearch.aspx",
|
||||
"registered_agent": {
|
||||
"name": "Northwest Registered Agent",
|
||||
"street": "315 S Phillips Ave Ste 200",
|
||||
"city": "Sioux Falls",
|
||||
"state": "SD",
|
||||
"zip": "57104",
|
||||
},
|
||||
"fees": {
|
||||
"llc": 150,
|
||||
"corporation": 150,
|
||||
"foreign_llc": 750,
|
||||
},
|
||||
"notes": "$750 foreign LLC fee (highest in the US).",
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue