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:
justin 2026-04-27 06:54:22 -05:00
commit f8cd37ac8c
1823 changed files with 145167 additions and 0 deletions

View file

@ -0,0 +1,4 @@
from .config import CONFIG
from .adapter import NYPortal
__all__ = ["CONFIG", "NYPortal"]

View file

@ -0,0 +1,22 @@
from scripts.formation.base import StatePortal
from .config import CONFIG
class NYPortal(StatePortal):
"""Adapter for the New York Department of State business portal."""
CONFIG = CONFIG
def search_name(self, name: str) -> dict:
"""Search for a business name via the NY DOS / Socrata open-data API."""
return self._socrata_search(name)
def file_llc(self, payload: dict) -> dict:
"""File Articles of Organization for a New York LLC ($200)."""
payload.setdefault("fee", CONFIG["fees"]["llc"])
return self._submit_filing("llc", payload)
def file_corporation(self, payload: dict) -> dict:
"""File a Certificate of Incorporation in New York ($125)."""
payload.setdefault("fee", CONFIG["fees"]["corporation"])
return self._submit_filing("corporation", payload)

View file

@ -0,0 +1,22 @@
CONFIG = {
"state": "New York",
"abbreviation": "NY",
"agency": "Department of State",
"agency_url": "https://dos.ny.gov",
"search_url": "https://appext20.dos.ny.gov/corp_public/CORPSEARCH.ENTITY_SEARCH_ENTRY",
"search_method": "socrata",
"socrata_domain": "data.ny.gov",
"registered_agent": {
"name": "Northwest Registered Agent",
"street": "90 State St Ste 700 Office 40",
"city": "Albany",
"state": "NY",
"zip": "12207",
},
"fees": {
"llc": 200,
"corporation": 125,
"publication": "~$200-$2000 depending on county",
},
"notes": "PUBLICATION REQUIRED after formation (~$200-$2000 depending on county).",
}