01 / نقدم SCHEMATEX · مجاني · مفتوح المصدر · مصنوع للذكاء الاصطناعي
كل مخطط يحتاجه الأطباء والمهندسون والمحامون فعلاً.
يرسم 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 / لماذا
مجاني. مفتوح المصدر بالكامل. مصنوع للذكاء الاصطناعي.
أدوات المخططات العامة لا تستطيع رسم مخططات احترافية. يعامل Schematex كل معيار كمواطن من الدرجة الأولى — والكل AGPL-3.0، بلا تبعيات، مصمم ليتمكن النماذج اللغوية الكبيرة من إصداره في المحاولة الأولى.
كل نوع مخطط ينفذ مواصفة منشورة — McGoldrick، IEC 61131-3، IEEE 315، NSGC، Newick. الأطباء والمهندسون والمحامون يرسمونها يدوياً بالفعل؛ الآن يمكنهم توليدها من الكود.
بلا D3، بلا dagre، بلا مولدات محلل، بلا قياس عن بُعد، بلا ميزات مقفلة. حزمة بحجم KB، آمنة للـ SSR، ترخيص تجاري متاح للاستخدام في الكود المغلق.
قواعد نحو بسيطة مصممة وفق الطريقة الحقيقية التي تكتب بها النماذج اللغوية — علامات اقتباس CJK، غموض التداخل، أخطاء يقرأها الذكاء الاصطناعي. الصق مخرجات 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 يمكنك نسخه ولصقه وتكييفه.
مجاني ومفتوح المصدر — نجمة واحدة تساعد المطوّرين الآخرين على اكتشافه.