01 / מציגים את SCHEMATEX · חינמי · קוד פתוח · נבנה עבור AI
כל הדיאגרמות שבהן רופאים, מהנדסים ועורכי דין משתמשים באמת.
Schematex מצייר 50 דיאגרמות שרופאים, מהנדסים ועורכי דין כבר מציירים ביד — גנוגרמות קליניות, לוגיקת סולם IEC 61131-3, פדיגרי NSGC, טבלאות הון. טקסט DSL כקלט, SVG תואם תקנים כפלט.
/ THE FULL SET
All 50 of them. Every one follows a published standard.
Choose any diagram to open its simplest working example in the playground.
02 / דיאגרמות שמקצוענים משתמשים בהן באמת
הדיאגרמות שהרופא, המהנדס או עורך הדין שלך משתמש בהן באמת.
כל משפחת דיאגרמות נבנתה עבור המתרגל שבקיא בה — ממספר שורות DSL ועד לגרסה שמומחה תחום ישים בתיק, מזכר או היתר. כל פלט עומד בתקן שפורסם.
Three-generation family medical history genogram with multi-condition color annotations using fill zones — heart disease, diabetes, cancer, hypertension.
Three-generation hemophilia A pedigree showing X-linked recessive inheritance with carrier females and affected males per NSGC clinical notation.
Ecomap charting a client's recovery support network — AA group, family, probation, and therapist — with relationship strength and directional connections.
Classic three-wire motor start/stop seal-in circuit in IEC 61131-3 ladder logic — the foundational pattern taught in every PLC certification course.
Single-line diagram for a utility + emergency generator ATS transfer system feeding critical loads on a 480 V bus — per IEEE 315 for facility design review.
1-bit full adder built from XOR, AND, and OR gates — the foundational building block of every arithmetic logic unit, from a functional description.
Cross-border tax holding structure with Irish IP company, Dutch distribution, and APAC entity — per OECD BEPS transfer-pricing documentation requirements.
Ishikawa fishbone for a website traffic drop — six causal categories covering content, technical SEO, backlinks, UX, competition, and algorithm changes.
Moreno sociogram of classroom playground dynamics — mutual friendships, one-way choices, and peer conflicts mapped by gender group using force-directed layout.
03 / למה
חינמי. קוד פתוח לחלוטין. נבנה עבור AI.
כלי דיאגרמות כלליים אינם יכולים לצייר דיאגרמות מקצועיות. Schematex מתייחס לכל תקן כאזרח מן המעלה הראשונה — והכל AGPL-3.0, ללא תלויות, מתוכנן כך שמודלי שפה גדולים יוכלו לפלוט אותו בניסיון הראשון.
כל סוג דיאגרמה מממש מפרט שפורסם — McGoldrick, IEC 61131-3, IEEE 315, NSGC, Newick. רופאים, מהנדסים ועורכי דין כבר מציירים אותן ביד; עכשיו אפשר לייצר אותן מקוד.
ללא D3, ללא dagre, ללא מחוללי מנתחים, ללא טלמטריה, ללא תכונות נעולות. חבילה בגודל KB, בטוחה ל-SSR, רישיון מסחרי זמין לשימוש בקוד סגור.
דקדוקים מינימליים שנבנו סביב האופן שבו מודלי שפה גדולים כותבים טקסט — מרכאות CJK, עמימות קינון, שגיאות קריאות ל-AI. הדבק פלט מ-ChatGPT או Claude וקבל דיאגרמה מקצועית בניסיון הראשון.
04 / מיצוב
לא עוד ספריית תרשימי זרימה.
כיצד Schematex משתווה לכלים שאנשים כבר משתמשים בהם.
| כלי | Domain | Standards-compliant types | Edit the render, keep the source | AI-friendly |
|---|---|---|---|---|
| Mermaid | General flow/UML | — | ✗ text only | partial |
| D2 | General diagrams | — | ✗ text only | partial |
| draw.io / Excalidraw | Freeform canvas | — | ✗ canvas only, no source | ✗ |
| PlantUML | UML | UML subset | ✗ text only | — |
| schematex | 50 professional families | 50 | ✓ round-trip | ✓ MCP + llms.txt |
05 / התחלה מהירה
התקנה תוך 10 שניות.
פונקציה אחת, מחרוזת כקלט, SVG כפלט. עובד בכל מקום שבו TypeScript עובד.
npm install schemateximport { render } from 'schematex';
const svg = render(`
genogram "Smiths"
john [male, 1950]
mary [female, 1952]
john -- mary
alice [female, 1975, index]
`);import { render } from 'schematex';
export default function Page() {
const svg = render(dsl);
return <div dangerouslySetInnerHTML={{ __html: svg }} />;
}'use client';
import { useState } from 'react';
import { InteractiveSchematexDiagram } from 'schematex/react';
export function DiagramEditor({ initialDsl }: { initialDsl: string }) {
const [dsl, setDsl] = useState(initialDsl);
return <InteractiveSchematexDiagram value={dsl} onChange={setDsl} />;
}התחל עם מחרוזת בודדת.
פתח את Playground כדי לרנדר כל אחד מ-50 סוגי הדיאגרמות בזמן אמת — או עיין בגלריה ל-DSL שאפשר להעתיק, להדביק ולהתאים.
חינמי וקוד פתוח — כוכב אחד עוזר למפתחים אחרים למצוא אותו.