You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OrgScript ist eine menschenlesbare, KI-freundliche Beschreibungssprache für operative Logik, Prozesse und Regeln. Es ist keine Programmiersprache im klassischen Sinne, sondern eine strukturierte Ebene zwischen natürlicher Sprache und technischer Ausführung.
5
+
6
+
## Kernkonzepte
7
+
8
+
### Prozesse (`process`)
9
+
Ein Prozess beschreibt den operativen Ablauf einer Aufgabe. Er beginnt oft mit einem Auslöser (`when`) und enthält bedingte Anweisungen (`if`, `then`, `else`).
OrgScript is a human-readable, AI-friendly description language for operational logic, processes, and rules. It provides a shared, structured layer between plain-language documentation and technical execution.
5
+
6
+
## Core Concepts
7
+
8
+
### Process (`process`)
9
+
A process describes the operational flow of a task. It starts with a trigger (`when`) and contains conditional statements (`if`, `then`, `else`).
10
+
-**Statements**: `assign` (set a value), `transition` (change status), `notify` (alert a role).
11
+
12
+
### Stateflow (`stateflow`)
13
+
Stateflows define the lifecycle of an object (e.g., an Order or a lead).
14
+
-**states**: The allowed states.
15
+
-**transitions**: The defined paths between states.
16
+
17
+
### Rule (`rule`)
18
+
Rules define permanent conditions or validations ("Guardrails") that apply to an object.
Copy file name to clipboardExpand all lines: docs/demos/html/README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,10 @@ npm run demo:generate
18
18
| --- | --- | --- |
19
19
| Craft Business: Lead to Order |[craft-business-lead-to-order.orgs](../../../examples/craft-business-lead-to-order.orgs)|[craft-business-lead-to-order.html](./craft-business-lead-to-order.html)|
20
20
||| Our hero example showcasing multi-block processes, rules, and stateflows in a realistic business scenario. |
21
+
| Hiring: Standard Candidate Process |[hiring-process.orgs](../../../examples/hiring-process.orgs)|[hiring-process.html](./hiring-process.html)|
22
+
||| A multi-role hiring process including GDPR policies, manager permissions, and conditional rejection branches. |
||| Operational incident handling with time-based escalation policies and on-call role definitions. |
21
25
| Lead qualification process |[lead-qualification.orgs](../../../examples/lead-qualification.orgs)|[lead-qualification.html](./lead-qualification.html)|
22
26
||| A compact process example that shows trigger, branching, assignment, notification, and state transition. |
23
27
| Order approval stateflow |[order-approval.orgs](../../../examples/order-approval.orgs)|[order-approval.html](./order-approval.html)|
0 commit comments