rhylthyme 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. rhylthyme-0.1.0/LICENSE +190 -0
  2. rhylthyme-0.1.0/PKG-INFO +330 -0
  3. rhylthyme-0.1.0/README.md +303 -0
  4. rhylthyme-0.1.0/pyproject.toml +48 -0
  5. rhylthyme-0.1.0/setup.cfg +4 -0
  6. rhylthyme-0.1.0/src/rhylthyme/__init__.py +22 -0
  7. rhylthyme-0.1.0/src/rhylthyme/auto_planner.py +618 -0
  8. rhylthyme-0.1.0/src/rhylthyme/cli/cli.py +52 -0
  9. rhylthyme-0.1.0/src/rhylthyme/cli.py +309 -0
  10. rhylthyme-0.1.0/src/rhylthyme/dag_visualizer_backup.py +2426 -0
  11. rhylthyme-0.1.0/src/rhylthyme/environment_icons.py +258 -0
  12. rhylthyme-0.1.0/src/rhylthyme/environment_loader.py +334 -0
  13. rhylthyme-0.1.0/src/rhylthyme/environment_schemas.py +443 -0
  14. rhylthyme-0.1.0/src/rhylthyme/main.py +39 -0
  15. rhylthyme-0.1.0/src/rhylthyme/marimo_runner.py +553 -0
  16. rhylthyme-0.1.0/src/rhylthyme/program_planner.py +648 -0
  17. rhylthyme-0.1.0/src/rhylthyme/program_runner.py +2291 -0
  18. rhylthyme-0.1.0/src/rhylthyme/resource_cli.py +356 -0
  19. rhylthyme-0.1.0/src/rhylthyme/resource_specs.py +627 -0
  20. rhylthyme-0.1.0/src/rhylthyme/validate_all_schemas.py +171 -0
  21. rhylthyme-0.1.0/src/rhylthyme/validate_environment_consistency.py +284 -0
  22. rhylthyme-0.1.0/src/rhylthyme/validate_program.py +457 -0
  23. rhylthyme-0.1.0/src/rhylthyme/web_visualizer.py +5202 -0
  24. rhylthyme-0.1.0/src/rhylthyme.egg-info/PKG-INFO +330 -0
  25. rhylthyme-0.1.0/src/rhylthyme.egg-info/SOURCES.txt +46 -0
  26. rhylthyme-0.1.0/src/rhylthyme.egg-info/dependency_links.txt +1 -0
  27. rhylthyme-0.1.0/src/rhylthyme.egg-info/entry_points.txt +2 -0
  28. rhylthyme-0.1.0/src/rhylthyme.egg-info/requires.txt +10 -0
  29. rhylthyme-0.1.0/src/rhylthyme.egg-info/top_level.txt +2 -0
  30. rhylthyme-0.1.0/src/scripts/app.py +650 -0
  31. rhylthyme-0.1.0/src/scripts/app_old.py +659 -0
  32. rhylthyme-0.1.0/src/scripts/fix_all_examples.py +117 -0
  33. rhylthyme-0.1.0/src/scripts/fix_examples_to_schema.py +143 -0
  34. rhylthyme-0.1.0/src/scripts/open_app.py +11 -0
  35. rhylthyme-0.1.0/src/scripts/rhylthyme-cli.py +18 -0
  36. rhylthyme-0.1.0/src/scripts/rhylthyme-dag.py +25 -0
  37. rhylthyme-0.1.0/src/scripts/rhylthyme.py +89 -0
  38. rhylthyme-0.1.0/src/scripts/test_all_examples.py +177 -0
  39. rhylthyme-0.1.0/src/scripts/test_multi_resource.py +60 -0
  40. rhylthyme-0.1.0/src/scripts/test_planner_fixes.py +136 -0
  41. rhylthyme-0.1.0/src/scripts/update_template.py +31 -0
  42. rhylthyme-0.1.0/src/scripts/validate_all_examples_ci.py +95 -0
  43. rhylthyme-0.1.0/tests/test_actors_feature.py +133 -0
  44. rhylthyme-0.1.0/tests/test_cli.py +126 -0
  45. rhylthyme-0.1.0/tests/test_examples_integration.py +696 -0
  46. rhylthyme-0.1.0/tests/test_marimo_runner.py +409 -0
  47. rhylthyme-0.1.0/tests/test_program_runner.py +919 -0
  48. rhylthyme-0.1.0/tests/test_validator.py +457 -0
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2025 Jeremy Leipzig
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
@@ -0,0 +1,330 @@
1
+ Metadata-Version: 2.4
2
+ Name: rhylthyme
3
+ Version: 0.1.0
4
+ Summary: A tool for working with real-time program schedules
5
+ Author-email: Leipzig <hello@example.com>
6
+ Project-URL: Homepage, https://github.com/yourname/rhylthyme
7
+ Project-URL: Bug Tracker, https://github.com/yourname/rhylthyme/issues
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.12
10
+ Classifier: Programming Language :: Python :: 3.13
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.12
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Requires-Dist: jsonschema>=4.0.0
17
+ Requires-Dist: click>=8.0.0
18
+ Requires-Dist: marimo>=0.2.0
19
+ Requires-Dist: pandas>=1.0.0
20
+ Requires-Dist: matplotlib>=3.0.0
21
+ Requires-Dist: pytest>=7.0.0
22
+ Requires-Dist: pytest-cov>=4.0.0
23
+ Requires-Dist: colorama>=0.4.6
24
+ Requires-Dist: flask>=2.0.0
25
+ Requires-Dist: flask-cors>=4.0.0
26
+ Dynamic: license-file
27
+
28
+ # Rhylthyme
29
+
30
+ 🕒 **rhylthyme** (pronounced "realtime") is a JSON-based workflow language for describing and executing real-time event scheduling.
31
+
32
+ ---
33
+
34
+ ## 🚀 Quick Start
35
+
36
+ ### American Breakfast Example
37
+
38
+ Here's a simple program that coordinates cooking eggs, bacon, and toast to finish at the same time:
39
+
40
+ ```bash
41
+ # Navigate to the CLI runner directory
42
+ cd rhylthyme-cli-runner
43
+
44
+ # Validate the breakfast program
45
+ python -m rhylthyme_cli_runner.cli validate ../rhylthyme-examples/programs/breakfast_schedule.json
46
+
47
+ # Run the breakfast program
48
+ python -m rhylthyme_cli_runner.cli run ../rhylthyme-examples/programs/breakfast_schedule.json
49
+ ```
50
+
51
+ ---
52
+
53
+ ## 💫 What is Rhylthyme?
54
+
55
+ Rhylthyme provides a structured way to define real-time programs (schedules) consisting of multiple parallel tracks with sequential steps. Originally designed for time-critical [rat experiments](https://www.sciencedirect.com/science/article/abs/pii/S0006899398009263), it now accommodates various scheduling scenarios:
56
+
57
+ - 🍳 **Food Production**: Restaurant kitchens, bakery operations, meal coordination
58
+ - 🔬 **Laboratory Research**: Experimental protocols, sample processing workflows
59
+ - ✈️ **Operations Management**: Airport scheduling, event planning, logistics
60
+ - 🏭 **Manufacturing**: Assembly lines, quality control, batch processing
61
+ - 🎬 **Media Production**: Film scheduling, broadcast coordination
62
+
63
+ ---
64
+
65
+ ## 🎯 Key Features
66
+
67
+ - **Multi-track Execution**: Run multiple parallel tracks of operations
68
+ - **Resource Constraints**: Enforce equipment/station availability limits
69
+ - **Actor Constraints**: Track and limit human attention/involvement
70
+ - **Rich Start Triggers**: Time-based, dependency-based, or manual triggers
71
+ - **Buffer Support**: Pre/post-step buffers with runtime extension capability
72
+ - **Variable Durations**: Fixed, variable, or indefinite step durations
73
+ - **Interactive Control**: Manual triggers and real-time adjustments
74
+ - **Environment Catalog**: Reusable environment and resource definitions
75
+ - **Real-time Monitoring**: Track progress with adjustable time scaling
76
+ - **Schema Validation**: Comprehensive program validation
77
+
78
+ For detailed information, see the [**Features Guide**](docs/FEATURES.md).
79
+
80
+ ---
81
+
82
+ ## 📖 Example Program
83
+
84
+ Here's a simple breakfast preparation program:
85
+
86
+ ```json
87
+ {
88
+ "programId": "breakfast-prep",
89
+ "name": "Breakfast Preparation",
90
+ "environment": "home-kitchen",
91
+ "startTrigger": {"type": "manual"},
92
+ "tracks": [
93
+ {
94
+ "trackId": "eggs",
95
+ "name": "Scrambled Eggs",
96
+ "steps": [
97
+ {
98
+ "stepId": "fry-eggs",
99
+ "name": "Fry Eggs",
100
+ "startTrigger": {"type": "programStart"},
101
+ "task": "stove-burner",
102
+ "duration": {"type": "fixed", "seconds": 180}
103
+ }
104
+ ]
105
+ }
106
+ ]
107
+ }
108
+ ```
109
+
110
+ ### Environment with Resource Constraints
111
+
112
+ ```json
113
+ {
114
+ "environmentId": "home-kitchen",
115
+ "actors": 2,
116
+ "resourceConstraints": [
117
+ {
118
+ "task": "stove-burner",
119
+ "maxConcurrent": 4,
120
+ "actorsRequired": 1.0
121
+ },
122
+ {
123
+ "task": "oven",
124
+ "maxConcurrent": 1,
125
+ "actorsRequired": 0.5
126
+ }
127
+ ]
128
+ }
129
+ ```
130
+
131
+ ---
132
+
133
+ ## 🛠️ Installation
134
+
135
+ > **Note**: Rhylthyme packages are currently in development and must be installed from local directories.
136
+
137
+ ### Quick Installation
138
+
139
+ ```bash
140
+ # Clone the repository
141
+ git clone https://github.com/yourusername/rhylthyme.git
142
+ cd rhylthyme
143
+
144
+ # Create virtual environment
145
+ python -m venv venv
146
+ source venv/bin/activate # Windows: venv\Scripts\activate
147
+
148
+ # Install core packages
149
+ pip install -e ./rhylthyme-spec
150
+ pip install -e ./rhylthyme-cli-runner
151
+ pip install -e ./rhylthyme-web
152
+
153
+ # Verify installation
154
+ rhylthyme --help
155
+ ```
156
+
157
+ For detailed installation instructions, see the [**Installation Guide**](docs/INSTALLATION_GUIDE.md).
158
+
159
+ ---
160
+
161
+ ## 🏃‍♂️ Usage
162
+
163
+ ### CLI Runner
164
+
165
+ ```bash
166
+ # Validate a program
167
+ rhylthyme validate programs/example.json
168
+
169
+ # Run a program with interactive terminal UI
170
+ rhylthyme run programs/example.json
171
+
172
+ # Run with automatic start and 2x speed
173
+ rhylthyme run programs/example.json --auto-start --time-scale 2.0
174
+
175
+ # Optimize a program schedule
176
+ rhylthyme plan programs/example.json optimized.json
177
+
178
+ # List available environments
179
+ rhylthyme environments
180
+
181
+ # Get help
182
+ rhylthyme --help
183
+ ```
184
+
185
+ #### Interactive Controls
186
+
187
+ When running a program, use these keyboard controls:
188
+
189
+ - **Space**: Start/stop program
190
+ - **Enter**: Trigger manual steps
191
+ - **Arrow keys**: Navigate between steps
192
+ - **q**: Quit
193
+ - **r**: Refresh display
194
+
195
+ ### Web Visualizer
196
+
197
+ Start the web server:
198
+
199
+ ```bash
200
+ rhylthyme-web
201
+ ```
202
+
203
+ Then open http://localhost:5000 in your browser. You can:
204
+ - **Upload** a local .json or .yaml file
205
+ - **Paste a URL** to load from https
206
+ - **Try examples** with one click
207
+
208
+ Options:
209
+ ```bash
210
+ rhylthyme-web --port 8080 --debug
211
+ ```
212
+
213
+ #### Command Line Visualization
214
+
215
+ ```bash
216
+ # Generate and open visualization in browser
217
+ rhylthyme-visualize program.json
218
+
219
+ # Save to specific file without opening browser
220
+ rhylthyme-visualize program.json -o output.html --no-browser
221
+ ```
222
+
223
+ ### Importers
224
+
225
+ Import schedules from external sources:
226
+
227
+ ```bash
228
+ # Install importers
229
+ pip install -e ./rhylthyme-importers
230
+
231
+ # Search TheMealDB for recipes
232
+ rhylthyme-import search "chicken curry" -i themealdb
233
+
234
+ # Import a recipe
235
+ rhylthyme-import import "52772" -o curry.json --pretty
236
+
237
+ # Import a random meal
238
+ rhylthyme-import mealdb random -o random_meal.json
239
+
240
+ # Import from protocols.io (requires API token)
241
+ export PROTOCOLS_IO_TOKEN="your_token"
242
+ rhylthyme-import search "western blot" -i protocolsio
243
+ ```
244
+
245
+ The web chat also supports importing - just ask Claude to "import a recipe for lasagna" or "find me a chicken recipe".
246
+
247
+ ---
248
+
249
+ ## 📁 Project Structure
250
+
251
+ ```
252
+ rhylthyme/
253
+ ├── rhylthyme-spec/ # Schema definitions
254
+ ├── rhylthyme-cli-runner/ # Command-line interface
255
+ ├── rhylthyme-web/ # Web visualizer & DAG generator
256
+ ├── rhylthyme-importers/ # Import plugins (TheMealDB, protocols.io)
257
+ ├── rhylthyme-examples/ # Example programs & environments
258
+ ├── rhylthyme-docs/ # Documentation website
259
+ ├── rhylthyme-mcp-server/ # MCP server implementation
260
+ ├── docs/ # Core documentation
261
+ ├── extensions/ # Extensions and integrations
262
+ └── DOCUMENTATION_INDEX.md # Complete documentation index
263
+ ```
264
+
265
+ ---
266
+
267
+ ## 📚 Documentation
268
+
269
+ ### Quick Links
270
+ - 📋 [**Documentation Index**](DOCUMENTATION_INDEX.md) - Complete guide to all documentation
271
+ - 🎓 [**Getting Started Tutorial**](docs/GETTING_STARTED.md) - Complete beginner's guide with examples
272
+ - 🚀 [**Quick Start**](docs/QUICK_START.md) - Get started in minutes
273
+ - 📖 [**Schema Guide**](docs/SCHEMA_GUIDE.md) - Complete schema documentation
274
+ - ⚡ [**Features**](docs/FEATURES.md) - Detailed feature descriptions
275
+ - 🔧 [**Installation**](docs/INSTALLATION_GUIDE.md) - Detailed setup instructions
276
+
277
+ ### Tool Documentation
278
+ - 🎮 [**Program Runner**](docs/RUNNER_README.md) - Interactive execution
279
+ - ✅ [**Validator**](docs/VALIDATOR_README.md) - Program validation
280
+ - 🌍 [**Environment Catalog**](docs/ENVIRONMENT_CATALOG.md) - Resource management
281
+ - 🌐 [**Web Visualizer**](rhylthyme-web/README.md) - DAG visualization
282
+ - 📥 [**Importers**](rhylthyme-importers/README.md) - TheMealDB & protocols.io import
283
+
284
+ ### Integration Guides
285
+ - 📓 [**Marimo Integration**](docs/MARIMO_README.md) - Notebook interface
286
+ - 🔌 [**MCP Server**](rhylthyme-mcp-server/README.md) - Model Context Protocol
287
+
288
+ ---
289
+
290
+ ## 📋 Examples
291
+
292
+ Explore working examples in the [**rhylthyme-examples**](rhylthyme-examples/) directory:
293
+
294
+ - `breakfast_schedule.json` - Simple breakfast coordination
295
+ - `lab_experiment.json` - Laboratory protocol workflow
296
+ - `bakery_program_example.json` - Complex bakery production
297
+ - `airport_program_example.json` - Airport operations scheduling
298
+ - `rat_psychopharmacology.json` - Research experiment timing
299
+
300
+ ---
301
+
302
+ ## 🤝 Contributing
303
+
304
+ We welcome contributions! See individual repository README files for specific contribution guidelines.
305
+
306
+ ### Getting Started
307
+ 1. Fork the repository
308
+ 2. Create a feature branch
309
+ 3. Make your changes
310
+ 4. Add tests and documentation
311
+ 5. Submit a pull request
312
+
313
+ ---
314
+
315
+ ## 📄 License
316
+
317
+ Apache License 2.0 - see [LICENSE](LICENSE) file for details.
318
+
319
+ ---
320
+
321
+ ## 🆘 Support
322
+
323
+ - **🐛 Issues**: [GitHub Issues](../../issues)
324
+ - **💬 Discussions**: [GitHub Discussions](../../discussions)
325
+ - **📖 Documentation**: [Documentation Index](DOCUMENTATION_INDEX.md)
326
+ - **📧 Contact**: See individual repository contacts
327
+
328
+ ---
329
+
330
+ *Rhylthyme: Making time-critical workflows as smooth as a perfect rhythm.* 🎵