rosp-sdk 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 (68) hide show
  1. rosp_sdk-0.1.0/.github/workflows/ci.yml +46 -0
  2. rosp_sdk-0.1.0/.github/workflows/publish.yml +33 -0
  3. rosp_sdk-0.1.0/.gitignore +14 -0
  4. rosp_sdk-0.1.0/CHANGELOG.md +44 -0
  5. rosp_sdk-0.1.0/CODE_OF_CONDUCT.md +53 -0
  6. rosp_sdk-0.1.0/CONTRIBUTING.md +83 -0
  7. rosp_sdk-0.1.0/LICENSE +190 -0
  8. rosp_sdk-0.1.0/PKG-INFO +244 -0
  9. rosp_sdk-0.1.0/README.md +209 -0
  10. rosp_sdk-0.1.0/SECURITY.md +33 -0
  11. rosp_sdk-0.1.0/adapters/grpc/README.md +36 -0
  12. rosp_sdk-0.1.0/adapters/grpc/pyproject.toml +36 -0
  13. rosp_sdk-0.1.0/adapters/grpc/rosp_adapter_grpc/__init__.py +21 -0
  14. rosp_sdk-0.1.0/adapters/grpc/rosp_adapter_grpc/adapter.py +549 -0
  15. rosp_sdk-0.1.0/adapters/grpc/rosp_adapter_grpc/cli.py +117 -0
  16. rosp_sdk-0.1.0/adapters/grpc/rosp_adapter_grpc/rosp/__init__.py +0 -0
  17. rosp_sdk-0.1.0/adapters/grpc/rosp_adapter_grpc/rosp/v1/__init__.py +0 -0
  18. rosp_sdk-0.1.0/adapters/grpc/rosp_adapter_grpc/rosp/v1/robot_service_pb2.py +69 -0
  19. rosp_sdk-0.1.0/adapters/grpc/rosp_adapter_grpc/rosp/v1/robot_service_pb2_grpc.py +277 -0
  20. rosp_sdk-0.1.0/adapters/grpc/tests/__init__.py +0 -0
  21. rosp_sdk-0.1.0/adapters/grpc/tests/test_grpc_adapter.py +208 -0
  22. rosp_sdk-0.1.0/adapters/ros2/README.md +25 -0
  23. rosp_sdk-0.1.0/adapters/ros2/pyproject.toml +33 -0
  24. rosp_sdk-0.1.0/adapters/ros2/rosp_adapter_ros2/__init__.py +16 -0
  25. rosp_sdk-0.1.0/adapters/ros2/rosp_adapter_ros2/adapter.py +686 -0
  26. rosp_sdk-0.1.0/adapters/ros2/rosp_adapter_ros2/cli.py +168 -0
  27. rosp_sdk-0.1.0/adapters/ros2/rosp_adapter_ros2/presets.py +144 -0
  28. rosp_sdk-0.1.0/adapters/vda5050/Dockerfile +19 -0
  29. rosp_sdk-0.1.0/adapters/vda5050/pyproject.toml +41 -0
  30. rosp_sdk-0.1.0/adapters/vda5050/rosp_adapter_vda5050/__init__.py +23 -0
  31. rosp_sdk-0.1.0/adapters/vda5050/rosp_adapter_vda5050/adapter.py +268 -0
  32. rosp_sdk-0.1.0/adapters/vda5050/rosp_adapter_vda5050/cli.py +159 -0
  33. rosp_sdk-0.1.0/adapters/vda5050/rosp_adapter_vda5050/connection_handler.py +135 -0
  34. rosp_sdk-0.1.0/adapters/vda5050/rosp_adapter_vda5050/mqtt_client.py +274 -0
  35. rosp_sdk-0.1.0/adapters/vda5050/rosp_adapter_vda5050/order_handler.py +341 -0
  36. rosp_sdk-0.1.0/adapters/vda5050/rosp_adapter_vda5050/robot_card_builder.py +114 -0
  37. rosp_sdk-0.1.0/adapters/vda5050/rosp_adapter_vda5050/rosp_adapter.py +323 -0
  38. rosp_sdk-0.1.0/adapters/vda5050/rosp_adapter_vda5050/state_handler.py +308 -0
  39. rosp_sdk-0.1.0/adapters/vda5050/rosp_adapter_vda5050/stream_converter.py +88 -0
  40. rosp_sdk-0.1.0/adapters/vda5050/tests/__init__.py +1 -0
  41. rosp_sdk-0.1.0/adapters/vda5050/tests/test_order_handler.py +338 -0
  42. rosp_sdk-0.1.0/adapters/vda5050/tests/test_rosp_adapter.py +413 -0
  43. rosp_sdk-0.1.0/adapters/vda5050/tests/test_state_handler.py +595 -0
  44. rosp_sdk-0.1.0/docs/spec/ROSP-v0.1-adapter-sdk.md +1605 -0
  45. rosp_sdk-0.1.0/docs/spec/ROSP-v0.1-getting-started.md +1703 -0
  46. rosp_sdk-0.1.0/docs/spec/ROSP-v0.1-spec.md +2236 -0
  47. rosp_sdk-0.1.0/docs/spec/schemas/examples/mir250.json +770 -0
  48. rosp_sdk-0.1.0/docs/spec/schemas/examples/universal-robots-ur5e.json +682 -0
  49. rosp_sdk-0.1.0/docs/spec/schemas/integration-manifest.schema.json +559 -0
  50. rosp_sdk-0.1.0/docs/spec/schemas/robot-card.schema.json +1067 -0
  51. rosp_sdk-0.1.0/docs/spec/schemas/skill-description.schema.json +358 -0
  52. rosp_sdk-0.1.0/examples/custom_adapter.py +114 -0
  53. rosp_sdk-0.1.0/examples/quickstart.py +61 -0
  54. rosp_sdk-0.1.0/proto/rosp/v1/robot_service.proto +155 -0
  55. rosp_sdk-0.1.0/pyproject.toml +70 -0
  56. rosp_sdk-0.1.0/rosp_sdk/__init__.py +45 -0
  57. rosp_sdk-0.1.0/rosp_sdk/adapter.py +232 -0
  58. rosp_sdk-0.1.0/rosp_sdk/cli.py +373 -0
  59. rosp_sdk-0.1.0/rosp_sdk/completeness.py +139 -0
  60. rosp_sdk-0.1.0/rosp_sdk/envelope.py +194 -0
  61. rosp_sdk-0.1.0/rosp_sdk/models.py +336 -0
  62. rosp_sdk-0.1.0/rosp_sdk/validator.py +177 -0
  63. rosp_sdk-0.1.0/tests/__init__.py +0 -0
  64. rosp_sdk-0.1.0/tests/test_adapter_base.py +147 -0
  65. rosp_sdk-0.1.0/tests/test_completeness.py +230 -0
  66. rosp_sdk-0.1.0/tests/test_envelope.py +147 -0
  67. rosp_sdk-0.1.0/tests/test_models.py +234 -0
  68. rosp_sdk-0.1.0/tests/test_validator.py +116 -0
@@ -0,0 +1,46 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ python-version: ["3.10", "3.11", "3.12"]
15
+
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+
19
+ - name: Set up Python ${{ matrix.python-version }}
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version: ${{ matrix.python-version }}
23
+
24
+ - name: Install SDK
25
+ run: pip install ".[dev,cli]"
26
+
27
+ - name: Lint
28
+ run: ruff check rosp_sdk/ tests/
29
+
30
+ - name: Test SDK
31
+ run: pytest tests/ -v --tb=short
32
+
33
+ - name: Test CLI
34
+ run: |
35
+ rosp version
36
+ rosp validate docs/spec/schemas/examples/mir250.json
37
+
38
+ - name: Install gRPC adapter
39
+ run: |
40
+ pip install ./adapters/grpc/
41
+ cd adapters/grpc && pytest tests/ -v --tb=short || true
42
+
43
+ - name: Install VDA5050 adapter
44
+ run: |
45
+ pip install ./adapters/vda5050/[dev]
46
+ cd adapters/vda5050 && pytest tests/ -v --tb=short || true
@@ -0,0 +1,33 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ permissions:
9
+ id-token: write
10
+
11
+ jobs:
12
+ publish:
13
+ runs-on: ubuntu-latest
14
+ environment:
15
+ name: pypi
16
+ url: https://pypi.org/project/rosp-sdk/
17
+
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+
21
+ - name: Set up Python
22
+ uses: actions/setup-python@v5
23
+ with:
24
+ python-version: "3.12"
25
+
26
+ - name: Install build tools
27
+ run: pip install hatch
28
+
29
+ - name: Build package
30
+ run: hatch build
31
+
32
+ - name: Publish to PyPI
33
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,14 @@
1
+ __pycache__/
2
+ *.py[cod]
3
+ *$py.class
4
+ *.egg-info/
5
+ dist/
6
+ build/
7
+ *.egg
8
+ .pytest_cache/
9
+ .ruff_cache/
10
+ .venv/
11
+ venv/
12
+ *.so
13
+ .env
14
+ .DS_Store
@@ -0,0 +1,44 @@
1
+ # Changelog
2
+
3
+ All notable changes to the ROSP SDK and adapters will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.1.0] - 2026-04-01
9
+
10
+ ### Added
11
+
12
+ - **ROSP v0.1 Specification** - Complete protocol spec for Description Mode (describe, stream, discover)
13
+ - **Core SDK** (`rosp-sdk`)
14
+ - `ROSPAdapter` abstract base class with 6 lifecycle methods
15
+ - `RobotCard` dataclass with 16 fields matching robot-card.schema.json
16
+ - `StreamMessage`, `StreamQoS`, `CommandResult`, `HealthStatus` models
17
+ - `ROSPEnvelope` transport-agnostic message format
18
+ - `Validator` with JSON Schema validation
19
+ - `CompletenessScorer` with 4 progressive enrichment levels
20
+ - CLI: `rosp validate`, `rosp inspect`, `rosp export-card`, `rosp version`
21
+ - **Adapter: ROS2** (`rosp-adapter-ros2`)
22
+ - URDF parsing from `/robot_description`
23
+ - Topic/service/action introspection
24
+ - QoS profile mapping (ROS2 QoS -> ROSP StreamQoS)
25
+ - Presets for TurtleBot3, UR, ABB
26
+ - **Adapter: gRPC** (`rosp-adapter-grpc`)
27
+ - ROSP-native and generic gRPC robot support
28
+ - Server reflection auto-discovery
29
+ - TLS/mTLS authentication
30
+ - Presets for Boston Dynamics Spot, Viam
31
+ - **Adapter: VDA 5050** (`rosp-adapter-vda5050`)
32
+ - Full MQTT state/order handling
33
+ - Automatic Robot Card inference from AGV capabilities
34
+ - Stream conversion (MQTT state -> StreamMessage)
35
+ - Orchestrator pattern with state, order, and connection handlers
36
+ - **JSON Schemas** for Robot Card, Integration Manifest, Skill Description
37
+ - **Protobuf** definitions for gRPC transport binding
38
+ - **60 tests** for core SDK, additional tests per adapter
39
+
40
+ ### Known Limitations
41
+
42
+ - Control Mode (`command`, `coordinate`) is **DRAFT** - interface defined but not production-ready
43
+ - Security enforcement (RBAC, audit logging) specified but not implemented
44
+ - Zenoh transport binding specified but SDK support not yet included
@@ -0,0 +1,53 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to a positive environment:
15
+
16
+ * Using welcoming and inclusive language
17
+ * Being respectful of differing viewpoints and experiences
18
+ * Gracefully accepting constructive criticism
19
+ * Focusing on what is best for the community
20
+ * Showing empathy towards other community members
21
+
22
+ Examples of unacceptable behavior:
23
+
24
+ * The use of sexualized language or imagery and unwelcome sexual attention
25
+ * Trolling, insulting/derogatory comments, and personal or political attacks
26
+ * Public or private harassment
27
+ * Publishing others' private information without explicit permission
28
+ * Other conduct which could reasonably be considered inappropriate
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of
33
+ acceptable behavior and will take appropriate and fair corrective action in
34
+ response to any behavior that they deem inappropriate, threatening, offensive,
35
+ or harmful.
36
+
37
+ ## Scope
38
+
39
+ This Code of Conduct applies within all community spaces, and also applies when
40
+ an individual is officially representing the community in public spaces.
41
+
42
+ ## Enforcement
43
+
44
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
45
+ reported to the community leaders responsible for enforcement at
46
+ **conduct@roboswarm.io**.
47
+
48
+ All complaints will be reviewed and investigated promptly and fairly.
49
+
50
+ ## Attribution
51
+
52
+ This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org),
53
+ version 2.1, available at https://www.contributor-covenant.org/version/2/1/code_of_conduct.html.
@@ -0,0 +1,83 @@
1
+ # Contributing to ROSP
2
+
3
+ Thank you for your interest in ROSP (Robot Open Specification Protocol). We welcome contributions from the robotics community.
4
+
5
+ ## Getting Started
6
+
7
+ ```bash
8
+ git clone https://github.com/FaultLine-labs/rosp.git
9
+ cd rosp
10
+ pip install -e ".[dev,cli]"
11
+ pytest
12
+ ```
13
+
14
+ ## How to Contribute
15
+
16
+ ### Reporting Issues
17
+
18
+ - Use [GitHub Issues](https://github.com/FaultLine-labs/rosp/issues)
19
+ - Include: ROSP version, Python version, OS, adapter (if applicable)
20
+ - For bugs: steps to reproduce, expected vs actual behavior
21
+
22
+ ### Pull Requests
23
+
24
+ 1. Fork the repo and create a branch from `main`
25
+ 2. Write tests for new functionality
26
+ 3. Ensure all tests pass: `pytest`
27
+ 4. Ensure code passes lint: `ruff check .`
28
+ 5. Update documentation if needed
29
+ 6. Submit a PR with a clear description
30
+
31
+ ### Building a New Adapter
32
+
33
+ The most impactful contribution is a new adapter. ROSP adapters bridge a robot platform to the protocol.
34
+
35
+ **Minimum implementation:**
36
+
37
+ ```python
38
+ from rosp_sdk import ROSPAdapter, RobotCard, StreamMessage, HealthStatus
39
+
40
+ class MyAdapter(ROSPAdapter):
41
+ async def connect(self) -> None: ...
42
+ async def disconnect(self) -> None: ...
43
+ async def describe(self, depth="full") -> RobotCard: ...
44
+ async def stream(self, topics, qos=None) -> AsyncIterator[StreamMessage]: ...
45
+ async def discover(self) -> DiscoveryInfo: ...
46
+ async def health_check(self) -> HealthStatus: ...
47
+ ```
48
+
49
+ See `adapters/ros2/` for a reference implementation and `docs/spec/ROSP-v0.1-adapter-sdk.md` for the full guide.
50
+
51
+ **Register your adapter** in `pyproject.toml`:
52
+ ```toml
53
+ [project.entry-points."rosp.adapters"]
54
+ myplatform = "my_adapter:MyAdapter"
55
+ ```
56
+
57
+ ### Adapter Checklist
58
+
59
+ - [ ] Implements all 5 required `ROSPAdapter` methods
60
+ - [ ] Returns a valid `RobotCard` from `describe()`
61
+ - [ ] `rosp validate` passes on the generated Robot Card
62
+ - [ ] Completeness score is documented
63
+ - [ ] Tests included (unit tests, no real hardware needed)
64
+ - [ ] README with install instructions and usage example
65
+ - [ ] `pyproject.toml` with proper dependencies and entry point
66
+
67
+ ## Code Style
68
+
69
+ - Python 3.10+
70
+ - Formatted with [ruff](https://docs.astral.sh/ruff/) (line length: 100)
71
+ - Type hints on all public APIs
72
+ - Docstrings on all public classes and methods
73
+
74
+ ## Spec Contributions
75
+
76
+ Protocol specification changes go through a different process:
77
+ 1. Open an issue tagged `spec` describing the proposed change
78
+ 2. Discuss in the issue before submitting a PR
79
+ 3. Changes to the spec require a version bump (e.g., v0.1 -> v0.2)
80
+
81
+ ## License
82
+
83
+ By contributing, you agree that your contributions will be licensed under the Apache License 2.0.
rosp_sdk-0.1.0/LICENSE ADDED
@@ -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 the 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 the 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 any 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 2026 RoboSwarm (FaultLine Labs)
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.