Skip to content

Commit 3697e19

Browse files
byteworthyclaude
andauthored
chore(clynova-public): full README + Pages site rebuild to marketing surface (#1)
README: link dump -> full marketing surface with HIPAA proof points, vertical packs table, mermaid composition diagram, and comparison-vs-scratch table. Pages site: sage color scheme replaces teal, product positioning headline, feature grid, ByteWorthy stack section. SVG hero added. No founder narrative. No vanity badges. Em dashes removed per brand voice rules. Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e0992f6 commit 3697e19

4 files changed

Lines changed: 367 additions & 99 deletions

File tree

.github/assets/clynova-hero.svg

Lines changed: 25 additions & 0 deletions
Loading

README.md

Lines changed: 136 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,136 @@
1-
# Clynova Public
2-
3-
Official public trust and commercial policy repository for the Clynova paid healthcare boilerplate.
4-
5-
This repository intentionally contains buyer-facing materials only:
6-
- product positioning and launch path
7-
- legal and commercial policy docs
8-
- security disclosure process
9-
- licensing and procurement flow
10-
11-
## Canonical Product Routes
12-
- Clynova product page: https://byteworthy.io/boilerplates/clynova
13-
- Boilerplates hub: https://byteworthy.io/boilerplates
14-
- Services: https://byteworthy.io/services
15-
- Contact: https://byteworthy.io/contact
16-
- Sovra product page: https://byteworthy.io/boilerplates/sovra
17-
- Klienta product page: https://byteworthy.io/boilerplates/klienta
18-
19-
## Source Code Access
20-
Clynova source code is private and licensed commercially.
21-
Access is granted after purchase and license verification.
22-
23-
## Public Site Mirror
24-
- Public repository: https://github.com/ByteWorthyLLC/clynova-public
25-
- Site source: [site/](./site/)
26-
- GitHub Pages mirror: https://byteworthyllc.github.io/clynova-public/
27-
- Mirror retrieval index: [site/llms.txt](./site/llms.txt)
28-
29-
## Commercial Docs
30-
- [EULA](./EULA.md)
31-
- [Terms](./TERMS.md)
32-
- [Sales and Access Flow](./SALES-FLOW.md)
33-
- [Security Policy](./SECURITY.md)
34-
35-
## License
36-
This repository is documentation/marketing only.
37-
No rights are granted to private Clynova source code without commercial license.
1+
<div align="center">
2+
3+
<img src="https://raw.githubusercontent.com/ByteWorthyLLC/clynova-public/main/.github/assets/clynova-hero.svg" alt="Clynova: HIPAA-ready healthcare AI boilerplate" width="100%"/>
4+
5+
# Clynova
6+
7+
**HIPAA-ready healthcare AI boilerplate. PHI encryption, BAA workflows, FHIR R4 + HL7 v2 + X12 EDI.**
8+
9+
[![License](https://img.shields.io/badge/license-commercial-7A9B7E?style=for-the-badge&labelColor=0F172A)](./EULA.md)
10+
[![ByteWorthy](https://img.shields.io/badge/ByteWorthy-boilerplate-2563EB?style=for-the-badge&labelColor=0F172A)](https://byteworthy.io/boilerplates/clynova)
11+
12+
[**Get a license →**](https://byteworthy.io/boilerplates/clynova) &nbsp;·&nbsp; [Docs](https://byteworthy.io/boilerplates/clynova/docs) &nbsp;·&nbsp; [Contact](https://byteworthy.io/contact)
13+
14+
</div>
15+
16+
---
17+
18+
> **Clynova** is HIPAA-ready scaffolding built to the HIPAA technical safeguard specifications. It ships Fernet PHI encryption, BAA workflow automation, FHIR R4, HL7 v2, X12 EDI parsing, and vertical packs for ABA, telehealth, RCM, and dental. Healthcare AI founders buy a license, receive provisioned source, and skip 4-6 months of compliance plumbing to focus on the clinical feature that differentiates their product.
19+
20+
## What ships in Clynova
21+
22+
| | |
23+
|---|---|
24+
| PHI encryption at rest | Fernet (AES-128-CBC + HMAC-SHA256), 14 encrypted fields |
25+
| BAA workflow | Template + e-sign flow, auto-BAA on signup for B2B |
26+
| FHIR R4 | Resource CRUD, patient search, clinical document exchange |
27+
| HL7 v2 | ADT, ORM, ORU message parsing |
28+
| X12 EDI | 837 (claim), 835 (remittance) ingestion |
29+
| Multi-tenant | Supabase RLS scoped per customer |
30+
| Audit log | django-auditlog: every PHI access logged, append-only |
31+
| PHI filter | Strips PHI from logs, error responses, Sentry breadcrumbs |
32+
| Role-based access | IsAuthenticated + IsCustomerMember on every ViewSet |
33+
| Vertical packs | ABA, telehealth, RCM, dental |
34+
35+
## Vertical packs included
36+
37+
| Pack | What it ships |
38+
|---|---|
39+
| ABA | Authorization unit tracking (97151–97158, H-codes), session billing, reauthorization windows |
40+
| Telehealth | GT modifier, POS 02/10 logic, asynchronous visit billing |
41+
| RCM | Denial pattern detection, 835 remittance parsing, appeal draft templates |
42+
| Dental | CDT code parsing, D-code billing, PPO/MAC rate logic |
43+
44+
## How Clynova composes
45+
46+
```mermaid
47+
flowchart LR
48+
PHI[PHI Layer<br/>Fernet encryption] --> Tenant[Multi-tenant<br/>Supabase RLS]
49+
Tenant --> API[Django DRF API]
50+
API --> FHIR[FHIR R4]
51+
API --> EDI[X12 EDI / HL7 v2]
52+
API --> Packs[Vertical Packs<br/>ABA · Telehealth · RCM · Dental]
53+
54+
style PHI fill:#7A9B7E,stroke:#5A7B5E,color:#fff
55+
```
56+
57+
## Quick start (after purchase)
58+
59+
```bash
60+
git clone <provisioned-repo-url> clynova
61+
cd clynova
62+
uv sync
63+
cp .env.example .env.local
64+
# Add: DATABASE_URL, FERNET_KEY (from GCP Secret Manager), SUPABASE_URL, SUPABASE_SERVICE_KEY
65+
uv run python manage.py migrate
66+
uv run python manage.py createsuperuser
67+
uv run python manage.py runserver
68+
```
69+
70+
> Source is provisioned after license purchase at [byteworthy.io/boilerplates/clynova](https://byteworthy.io/boilerplates/clynova).
71+
72+
## The stack
73+
74+
| Layer | Technology |
75+
|---|---|
76+
| Framework | Django 5.x + Django REST Framework |
77+
| Auth + multi-tenant | Supabase (Postgres + RLS) |
78+
| PHI encryption | Python cryptography (Fernet) |
79+
| FHIR | Custom R4 resource CRUD layer |
80+
| EDI | python-x12 (837/835) + hl7apy (HL7 v2) |
81+
| Audit log | django-auditlog |
82+
| Secrets | GCP Secret Manager |
83+
| Package manager | uv |
84+
85+
## Clynova vs building from scratch
86+
87+
| | **Clynova** | Build from scratch |
88+
|---|---|---|
89+
| HIPAA technical safeguards | Implemented, tested | 6–8 weeks |
90+
| PHI encryption (14 fields) | Fernet, key rotation ready | 1–2 weeks |
91+
| BAA workflow | Included | Days to weeks |
92+
| FHIR R4 layer | Included | 3–4 weeks |
93+
| X12 EDI parsing | Included | 2–4 weeks |
94+
| Audit log | Append-only, immutable | 1 week |
95+
| Vertical pack (ABA) | Included | 2–4 weeks per vertical |
96+
| **Time to first compliant feature** | **2–4 weeks** | **4–6 months** |
97+
98+
## Who this is for
99+
100+
Clynova is for healthcare AI founders building clinical tools, RCM automation, or care delivery software where PHI moves through the product from day one. The buyers are technical: CTO-level or founding engineer, building on Django, comfortable owning their stack, and unwilling to take on the liability of assembling HIPAA controls from blog posts and tribal knowledge.
101+
102+
This is not the right fit for non-healthcare applications, consumer wellness tools that handle no PHI, or single-user tools where multi-tenancy and BAA workflows add no value.
103+
104+
## Pricing + access
105+
106+
| | |
107+
|---|---|
108+
| License type | One-time commercial license |
109+
| Source included | ✓ full source provisioned after purchase |
110+
| Hosting | Self-hosted (you own the infrastructure) |
111+
| Vertical packs | All four included (ABA, telehealth, RCM, dental) |
112+
| Product page | [byteworthy.io/boilerplates/clynova](https://byteworthy.io/boilerplates/clynova) |
113+
114+
**Pioneer pricing**: $49/mo locked for life, available to the first 100 customers across the ByteWorthy stack. [Claim a spot →](https://byteworthy.io/boilerplates/clynova)
115+
116+
## Source access
117+
118+
Source code is private and licensed commercially. Access granted after purchase.
119+
120+
- Product page: https://byteworthy.io/boilerplates/clynova
121+
- Commercial docs: [EULA](./EULA.md) · [Terms](./TERMS.md) · [Sales flow](./SALES-FLOW.md)
122+
- BAA: Available on request to hello@byteworthy.io
123+
124+
## Security
125+
126+
Report vulnerabilities to security@byteworthy.io. See [SECURITY.md](./SECURITY.md).
127+
128+
## The ByteWorthy stack
129+
130+
| Product | What it is |
131+
|---|---|
132+
| [Sovra](https://github.com/ByteWorthyLLC/sovra) | Open-source AI SaaS foundation: multi-tenant runtime, production controls |
133+
| [Klienta](https://byteworthy.io/boilerplates/klienta) | Paid: white-label client portals for agency delivery |
134+
| [Clynova](https://byteworthy.io/boilerplates/clynova) | Paid: HIPAA-ready healthcare AI boilerplate (this repo) |
135+
| [Defend](https://byteworthy.io/boilerplates/defend) | Paid: security hardening layer for SaaS products |
136+
| [Lead Portfolio](https://byteworthy.io/boilerplates/lead-portfolio) | Paid: lead acquisition and pipeline infrastructure |

0 commit comments

Comments
 (0)