2025-08-01 11:09:48 +00:00
|
|
|
:PROPERTIES:
|
|
|
|
|
:ID: 00790dad-7881-4252-8951-23f770e3f070
|
|
|
|
|
:END:
|
|
|
|
|
#+BEGIN_EXPORT html
|
|
|
|
|
<style>
|
|
|
|
|
body {
|
|
|
|
|
font-family: 'Courier New', Courier, monospace;
|
|
|
|
|
background-color: ivory;
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.outline-2 div {
|
|
|
|
|
margin-left: 1em;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
#+END_EXPORT
|
2025-07-30 17:12:26 +00:00
|
|
|
#+title: Grimu-R vocabulary
|
|
|
|
|
|
|
|
|
|
** Weave
|
|
|
|
|
Defines a collection of ornaments.
|
|
|
|
|
** Ornament
|
|
|
|
|
Has reactive inputs and outputs.
|
|
|
|
|
Serves as an externally invocable entry point.
|
|
|
|
|
Contains spells or nested ornaments.
|
2025-08-04 12:37:53 +07:00
|
|
|
Can be distributed within a grimoire or a servitor.
|
2025-07-30 17:12:26 +00:00
|
|
|
** Spell
|
|
|
|
|
Has reactive inputs and outputs.
|
|
|
|
|
Atomic execution unit.
|
|
|
|
|
Cannot be directly invoked externally.
|
|
|
|
|
May have an inscription.
|
2025-08-04 12:37:53 +07:00
|
|
|
Created from a scroll and executed in the shelf environment.
|
2025-07-30 17:12:26 +00:00
|
|
|
** Stitch
|
|
|
|
|
Connects a reactive input to a compatible reactive output.
|
|
|
|
|
** Inscription
|
2025-08-04 12:37:53 +07:00
|
|
|
Defines code in a scripting language to be run when the corresponding spell is executed.
|
|
|
|
|
May be defined statically in the weave or considered a reactive input.
|
2025-07-30 17:12:26 +00:00
|
|
|
** Scroll
|
|
|
|
|
Defines source code, its build dependencies and runtime environment.
|
|
|
|
|
Provides a default spell configuration.
|
2025-08-04 12:37:53 +07:00
|
|
|
Declares runtime compatibility (browser-only, non-browser, or universal).
|
2025-07-30 17:12:26 +00:00
|
|
|
** Shelf
|
|
|
|
|
Contains all the scrolls defined in a project as well as its dependencies.
|
2025-08-04 12:37:53 +07:00
|
|
|
Provisions a shared runtime environment for spells based on these scrolls.
|
2025-07-30 17:12:26 +00:00
|
|
|
** Edition
|
2025-08-04 12:37:53 +07:00
|
|
|
Represents (a part of) the weave as a grimoire, a servitor, or a consistent collection of these.
|
|
|
|
|
** Grimoire
|
|
|
|
|
Presents a set of ornaments as a program with human-facing interface.
|
|
|
|
|
Uses bridge spells to communicate with servitor-side ornaments within the same edition.
|
|
|
|
|
Has a dedicated interface ornament (entry point).
|
|
|
|
|
** Servitor
|
|
|
|
|
Presents a set of ornaments as a local/remote daemon/server endpoints/methods.
|
2025-07-30 17:12:26 +00:00
|
|
|
** Loom
|
|
|
|
|
Provisions tools for interactive or programmatic weaving.
|