devagent-physical-engine 0.10.0__py3-none-any.whl

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 (84) hide show
  1. devagent_physical_engine/__init__.py +44 -0
  2. devagent_physical_engine/agent/__init__.py +40 -0
  3. devagent_physical_engine/agent/compiler.py +285 -0
  4. devagent_physical_engine/agent/contracts.py +129 -0
  5. devagent_physical_engine/agent/coordinator.py +108 -0
  6. devagent_physical_engine/agent/critic.py +72 -0
  7. devagent_physical_engine/agent/evidence.py +34 -0
  8. devagent_physical_engine/agent/interpreter.py +179 -0
  9. devagent_physical_engine/agent/planner.py +105 -0
  10. devagent_physical_engine/agent/recovery.py +54 -0
  11. devagent_physical_engine/agent/routing.py +76 -0
  12. devagent_physical_engine/agent/runtime.py +270 -0
  13. devagent_physical_engine/agent/semantic.py +304 -0
  14. devagent_physical_engine/agent/structured.py +423 -0
  15. devagent_physical_engine/ai_cli.py +226 -0
  16. devagent_physical_engine/cli.py +392 -0
  17. devagent_physical_engine/doctor.py +20 -0
  18. devagent_physical_engine/engineering_agent.py +243 -0
  19. devagent_physical_engine/engineering_request.py +630 -0
  20. devagent_physical_engine/execution.py +90 -0
  21. devagent_physical_engine/models.py +143 -0
  22. devagent_physical_engine/operating_envelope.py +120 -0
  23. devagent_physical_engine/optimization/__init__.py +50 -0
  24. devagent_physical_engine/optimization/benchmark.py +122 -0
  25. devagent_physical_engine/optimization/candidates.py +198 -0
  26. devagent_physical_engine/optimization/contracts.py +235 -0
  27. devagent_physical_engine/optimization/evaluator.py +107 -0
  28. devagent_physical_engine/optimization/evidence.py +53 -0
  29. devagent_physical_engine/optimization/experience.py +105 -0
  30. devagent_physical_engine/optimization/measured.py +125 -0
  31. devagent_physical_engine/optimization/optimizer.py +215 -0
  32. devagent_physical_engine/optimization/orchestrator.py +155 -0
  33. devagent_physical_engine/physical_campaign.py +413 -0
  34. devagent_physical_engine/physical_evidence.py +214 -0
  35. devagent_physical_engine/physical_motion.py +196 -0
  36. devagent_physical_engine/planning.py +80 -0
  37. devagent_physical_engine/preexecution_contract.py +65 -0
  38. devagent_physical_engine/provider_adapters/__init__.py +22 -0
  39. devagent_physical_engine/provider_adapters/anthropic.py +112 -0
  40. devagent_physical_engine/provider_adapters/common.py +187 -0
  41. devagent_physical_engine/provider_adapters/factory.py +20 -0
  42. devagent_physical_engine/provider_adapters/gemini.py +126 -0
  43. devagent_physical_engine/provider_adapters/openai.py +95 -0
  44. devagent_physical_engine/provider_qualification.py +268 -0
  45. devagent_physical_engine/providers.py +94 -0
  46. devagent_physical_engine/qualification.py +44 -0
  47. devagent_physical_engine/qualification_cli.py +195 -0
  48. devagent_physical_engine/qualification_harness.py +917 -0
  49. devagent_physical_engine/robot_platform.py +411 -0
  50. devagent_physical_engine/robots.py +76 -0
  51. devagent_physical_engine/ros2/__init__.py +35 -0
  52. devagent_physical_engine/ros2/acceptance.py +324 -0
  53. devagent_physical_engine/ros2/commands.py +175 -0
  54. devagent_physical_engine/ros2/doctor.py +116 -0
  55. devagent_physical_engine/ros2/fk_probe.py +83 -0
  56. devagent_physical_engine/ros2/frame_alignment.py +61 -0
  57. devagent_physical_engine/ros2/gazebo_world.py +125 -0
  58. devagent_physical_engine/ros2/joint_state_recorder.py +64 -0
  59. devagent_physical_engine/ros2/measured_motion.py +233 -0
  60. devagent_physical_engine/ros2/moveit_scene.py +121 -0
  61. devagent_physical_engine/ros2/preexecution.py +113 -0
  62. devagent_physical_engine/ros2/qualification.py +81 -0
  63. devagent_physical_engine/ros2/qualification_v10.py +252 -0
  64. devagent_physical_engine/ros2/scene_probe.py +219 -0
  65. devagent_physical_engine/ros2/state_validity_probe.py +125 -0
  66. devagent_physical_engine/ros2/tf_probe.py +51 -0
  67. devagent_physical_engine/ros2/trajectory.py +188 -0
  68. devagent_physical_engine/ros2/ur5e.py +59 -0
  69. devagent_physical_engine/ros2/ur5e_adapter.py +349 -0
  70. devagent_physical_engine/ros2/ur5e_v10_adapter.py +292 -0
  71. devagent_physical_engine/setup_profile.py +356 -0
  72. devagent_physical_engine/simulation.py +32 -0
  73. devagent_physical_engine/simulation_platform.py +269 -0
  74. devagent_physical_engine/trajectory_qualification.py +201 -0
  75. devagent_physical_engine/twin.py +939 -0
  76. devagent_physical_engine/twin_builder.py +309 -0
  77. devagent_physical_engine/twin_materialization.py +404 -0
  78. devagent_physical_engine/verification.py +46 -0
  79. devagent_physical_engine-0.10.0.dist-info/METADATA +315 -0
  80. devagent_physical_engine-0.10.0.dist-info/RECORD +84 -0
  81. devagent_physical_engine-0.10.0.dist-info/WHEEL +5 -0
  82. devagent_physical_engine-0.10.0.dist-info/entry_points.txt +3 -0
  83. devagent_physical_engine-0.10.0.dist-info/licenses/NOTICE +2 -0
  84. devagent_physical_engine-0.10.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,315 @@
1
+ Metadata-Version: 2.4
2
+ Name: devagent-physical-engine
3
+ Version: 0.10.0
4
+ Summary: Verification-first agentic planning runtime for robotic and industrial automation.
5
+ Author: Tom Ha
6
+ License: All Rights Reserved
7
+ Project-URL: Homepage, https://github.com/tomha85/devagent-physical-engine
8
+ Project-URL: Repository, https://github.com/tomha85/devagent-physical-engine
9
+ Project-URL: Issues, https://github.com/tomha85/devagent-physical-engine/issues
10
+ Keywords: robotics,industrial-automation,agentic-ai,ros2,verification
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Python: >=3.11
21
+ Description-Content-Type: text/markdown
22
+ License-File: NOTICE
23
+ Requires-Dist: PyYAML<7,>=6.0
24
+ Provides-Extra: openai
25
+ Requires-Dist: openai<4,>=3.0; extra == "openai"
26
+ Provides-Extra: anthropic
27
+ Requires-Dist: anthropic<2,>=1.0; extra == "anthropic"
28
+ Provides-Extra: gemini
29
+ Requires-Dist: google-genai<3,>=2.0; extra == "gemini"
30
+ Provides-Extra: ai
31
+ Requires-Dist: openai<4,>=3.0; extra == "ai"
32
+ Requires-Dist: anthropic<2,>=1.0; extra == "ai"
33
+ Requires-Dist: google-genai<3,>=2.0; extra == "ai"
34
+ Dynamic: license-file
35
+
36
+ # DevAgent Smart Physical Engine
37
+
38
+ **Verification-first agentic engineering, planning, optimization, simulation, and evidence runtime for robotic and industrial automation.**
39
+
40
+ > **AI proposes. Deterministic engines validate, compile, verify, simulate, measure, and gate promotion. Existing certified controllers remain authoritative.**
41
+
42
+ DevAgent Smart Physical Engine is designed to add AI-assisted engineering to existing automation without replacing robot controllers, PLCs, safety controllers, or real-time servo loops. The core is provider-neutral and keeps engineering authority separated from model output.
43
+
44
+ ## Current version
45
+
46
+ **v0.10.0 — Alpha**
47
+
48
+ The Python software stack is regression-tested in GitHub Actions on Python 3.11, 3.12, and 3.13. The UR5e Gazebo/MoveIt canonical physical-simulation runtime is implemented but remains **EXPERIMENTAL** until executable target-workstation qualification promotes its individual scopes.
49
+
50
+ Real robot execution remains locked. Functional-safety certification is not claimed.
51
+
52
+ ## What v0.10.0 includes
53
+
54
+ | Area | Status |
55
+ | --- | --- |
56
+ | Provider-neutral Agent Core | Implemented |
57
+ | OpenAI structured provider adapter | Implemented |
58
+ | Anthropic structured provider adapter | Implemented |
59
+ | Gemini structured provider adapter | Implemented |
60
+ | Planner / Critic / Recovery | Implemented |
61
+ | Natural-language engineering request front door | Implemented |
62
+ | Deterministic request/compiler/policy gates | Implemented |
63
+ | Multi-vendor robot profile registry | Implemented |
64
+ | UR5e / FANUC CRX / KUKA KR / ABB IRB profile abstraction | Implemented |
65
+ | Evidence-aware canonical TwinSpec | Implemented |
66
+ | Deterministic Twin validation and confidence levels | Implemented |
67
+ | Bounded candidate generation and Pareto optimization | Implemented |
68
+ | Replayable qualification/evidence primitives | Implemented |
69
+ | Canonical physical motion contract | Implemented |
70
+ | Measured joint-state trajectory runtime | Implemented |
71
+ | Canonical Twin -> Gazebo + MoveIt materialization | Implemented |
72
+ | Gazebo / TF / MoveIt backend read-back verification | Implemented |
73
+ | Sampled MoveIt pre-execution state-validity checks | Implemented, **discrete only** |
74
+ | Measured motion duration / joint travel | Implemented |
75
+ | MoveIt FK TCP path length / final TCP error | Implemented |
76
+ | UR5e canonical Gazebo/MoveIt adapter | **EXPERIMENTAL** |
77
+ | Continuous collision checking qualification | **Not qualified** |
78
+ | Minimum-clearance measurement | **Not qualified** |
79
+ | Sim-real correlation | **Not qualified** |
80
+ | Site qualification | **Not qualified** |
81
+ | Real robot execution | **Locked** |
82
+ | Functional-safety certification | Not claimed |
83
+
84
+ ## Trust chain
85
+
86
+ ```mermaid
87
+ flowchart TD
88
+ USER[Engineer / customer application] --> REQUEST[Natural-language engineering request]
89
+ REQUEST --> INTERPRETER[Requirement Interpreter]
90
+
91
+ INTERPRETER --> OAI[OpenAI]
92
+ INTERPRETER --> CLAUDE[Anthropic]
93
+ INTERPRETER --> GEMINI[Gemini]
94
+
95
+ OAI --> AGENTS[Planner / Critic / Recovery]
96
+ CLAUDE --> AGENTS
97
+ GEMINI --> AGENTS
98
+
99
+ AGENTS --> COMPILE[Deterministic compile + policy]
100
+ COMPILE --> VERIFY[Verified plan artifact]
101
+ VERIFY --> TWIN[Canonical TwinSpec + SHA256]
102
+ TWIN --> MATERIALIZE[Canonical materialization]
103
+
104
+ MATERIALIZE --> GZ[Gazebo world]
105
+ MATERIALIZE --> MOVEIT[MoveIt PlanningScene]
106
+ MATERIALIZE --> TF[TF / frame model]
107
+
108
+ GZ --> READBACK[Backend read-back verification]
109
+ MOVEIT --> READBACK
110
+ TF --> READBACK
111
+
112
+ READBACK --> PRECHECK[Pre-execution verification]
113
+ PRECHECK --> MOTION[Exact PhysicalMotionPlan]
114
+ MOTION --> SIM[Gazebo / ROS 2 execution]
115
+ SIM --> MEASURE[Measured joint states + MoveIt FK]
116
+ MEASURE --> EVIDENCE[Replayable evidence]
117
+ EVIDENCE --> PROMOTION[Evidence-driven promotion gate]
118
+
119
+ PROMOTION --> LOCKED[Real execution remains locked]
120
+ ```
121
+
122
+ The v0.10 architecture is specifically designed to prevent DevAgent from validating one Twin while MoveIt plans against a different scene and Gazebo executes a different world. One canonical Twin fingerprint is carried through materialization, backend read-back, pre-execution verification, motion execution, and evidence.
123
+
124
+ ## Safety and qualification boundary
125
+
126
+ A successful software test or simulation run does **not** automatically create a commissioning or real-hardware claim.
127
+
128
+ The v0.10 canonical qualification report deliberately keeps:
129
+
130
+ ```text
131
+ physical_qualification = false
132
+ commissioning_qualification = false
133
+ continuous_collision_check = false
134
+ minimum_clearance_measured = false
135
+ real_execution_allowed = false
136
+ site_qualification = false
137
+ ```
138
+
139
+ A reference campaign can produce promotion-candidate evidence for an experimental scope, but promotion remains evidence-driven and scope-specific.
140
+
141
+ ## Installation from source
142
+
143
+ Python 3.11+ is required.
144
+
145
+ ```bash
146
+ git clone https://github.com/tomha85/devagent-physical-engine.git
147
+ cd devagent-physical-engine
148
+ python -m venv .venv
149
+ source .venv/bin/activate
150
+ python -m pip install --upgrade pip
151
+ python -m pip install -e .
152
+ ```
153
+
154
+ Optional AI provider SDKs:
155
+
156
+ ```bash
157
+ python -m pip install -e ".[openai]"
158
+ python -m pip install -e ".[anthropic]"
159
+ python -m pip install -e ".[gemini]"
160
+ python -m pip install -e ".[ai]"
161
+ ```
162
+
163
+ `pip install` does not install ROS/Gazebo system packages or perform privileged OS changes.
164
+
165
+ ## AI providers
166
+
167
+ Credentials stay outside the world model:
168
+
169
+ ```bash
170
+ export OPENAI_API_KEY='...'
171
+ export ANTHROPIC_API_KEY='...'
172
+ export GEMINI_API_KEY='...'
173
+ ```
174
+
175
+ Check a provider without making a network qualification call:
176
+
177
+ ```bash
178
+ devagent-physical-ai doctor --provider openai
179
+ ```
180
+
181
+ Run live provider qualification:
182
+
183
+ ```bash
184
+ devagent-physical-ai qualify --provider openai --model <model-id>
185
+ ```
186
+
187
+ Interpret an engineering request:
188
+
189
+ ```bash
190
+ devagent-physical-ai request \
191
+ "Use a UR5e to move a part from conveyor_a to cnc_04" \
192
+ --provider openai \
193
+ --model <model-id>
194
+ ```
195
+
196
+ Run the natural-language engineering pipeline:
197
+
198
+ ```bash
199
+ devagent-physical-ai engineer \
200
+ "Use a UR5e to move a part from conveyor_a to cnc_04" \
201
+ --provider openai \
202
+ --model <model-id>
203
+ ```
204
+
205
+ Equivalent provider commands support Anthropic and Gemini. Live AI routing is simulation-only and does not unlock real execution.
206
+
207
+ See [`docs/AI_PROVIDERS.md`](docs/AI_PROVIDERS.md) and [`docs/NATURAL_LANGUAGE_ENGINEERING.md`](docs/NATURAL_LANGUAGE_ENGINEERING.md).
208
+
209
+ ## Deterministic verification
210
+
211
+ Core checks:
212
+
213
+ ```bash
214
+ python -m compileall -q src tests
215
+ python -m unittest discover -s tests -v
216
+ devagent-physical doctor
217
+ devagent-physical qualify
218
+ devagent-physical simulate --robot fanuc_crx --inject-collision
219
+ ```
220
+
221
+ The repository CI performs editable installation, `compileall`, and the full `unittest` regression matrix on Python 3.11 / 3.12 / 3.13.
222
+
223
+ ## UR5e ROS 2 / Gazebo target stack
224
+
225
+ Current reference target:
226
+
227
+ ```text
228
+ Ubuntu 24.04
229
+ ROS 2 Jazzy
230
+ Gazebo Harmonic
231
+ gz_ros2_control
232
+ Universal Robots ROS 2 driver
233
+ ur_simulation_gz
234
+ MoveIt 2
235
+ ```
236
+
237
+ Inspect workstation changes without modifying the system:
238
+
239
+ ```bash
240
+ devagent-physical setup --profile ur5e-sim --dry-run
241
+ ```
242
+
243
+ Explicitly install/verify the supported workstation profile:
244
+
245
+ ```bash
246
+ devagent-physical setup --profile ur5e-sim
247
+ ```
248
+
249
+ Then run:
250
+
251
+ ```bash
252
+ devagent-physical ros doctor
253
+ devagent-physical ros demo
254
+ ```
255
+
256
+ The visual demo launches the official UR5e Gazebo + MoveIt/RViz stack, waits for controller readiness and `/joint_states`, performs a motion smoke, verifies measured joint-state movement, and records evidence.
257
+
258
+ Trajectory-runtime-only qualification is also available:
259
+
260
+ ```bash
261
+ devagent-physical ros qualify-trajectory-runtime
262
+ ```
263
+
264
+ That command qualifies only its defined scope and does not promote commissioning or real-hardware execution.
265
+
266
+ ## v0.10 canonical Twin qualification
267
+
268
+ The executable reference campaign is intentionally separate from ordinary GitHub CI because it requires the ROS/Gazebo/MoveIt target stack:
269
+
270
+ ```bash
271
+ python -m devagent_physical_engine.ros2.qualification_v10 \
272
+ --log-dir ~/.devagent/v10-canonical-qualification
273
+ ```
274
+
275
+ The campaign requires canonical Gazebo/MoveIt materialization, TF alignment, backend scene read-back, sampled pre-execution validity, measured joint-state motion, and MoveIt FK evidence across the reference trajectories.
276
+
277
+ Even a green reference campaign remains an experimental-scope promotion candidate until the missing commissioning gates—such as continuous collision checking and qualified minimum-clearance measurement—are implemented and evidenced.
278
+
279
+ See [`docs/CANONICAL_TWIN_RUNTIME.md`](docs/CANONICAL_TWIN_RUNTIME.md) and [`docs/MEASURED_PHYSICAL_RUNTIME.md`](docs/MEASURED_PHYSICAL_RUNTIME.md).
280
+
281
+ ## Optimization semantics
282
+
283
+ DevAgent does **not** claim a mathematical global optimum. It selects the **best evaluated verified candidate** among the candidates and motion variants that were actually generated, verified, and measured under the configured objective profile.
284
+
285
+ A candidate is ineligible when deterministic verification/simulation fails, a hard violation is reported, required metrics are unknown, or configured quality gates fail. Weighted scoring cannot make an unsafe or unverified plan acceptable.
286
+
287
+ See [`docs/OPTIMIZATION.md`](docs/OPTIMIZATION.md).
288
+
289
+ ## Documentation
290
+
291
+ - [`docs/ARCHITECTURE.md`](docs/ARCHITECTURE.md) — trust boundaries and runtime architecture.
292
+ - [`docs/AGENT_CORE.md`](docs/AGENT_CORE.md) — Agent Core design.
293
+ - [`docs/AI_PROVIDERS.md`](docs/AI_PROVIDERS.md) — provider installation, credentials, and qualification.
294
+ - [`docs/NATURAL_LANGUAGE_ENGINEERING.md`](docs/NATURAL_LANGUAGE_ENGINEERING.md) — natural-language engineering request flow.
295
+ - [`docs/ROBOT_PLATFORM_AND_TWIN.md`](docs/ROBOT_PLATFORM_AND_TWIN.md) — multi-vendor robot platform and evidence-aware Twin.
296
+ - [`docs/MEASURED_PHYSICAL_RUNTIME.md`](docs/MEASURED_PHYSICAL_RUNTIME.md) — physical motion and measured qualification runtime.
297
+ - [`docs/CANONICAL_TWIN_RUNTIME.md`](docs/CANONICAL_TWIN_RUNTIME.md) — canonical Gazebo/MoveIt/TF materialization and verification.
298
+ - [`docs/QUALIFICATION.md`](docs/QUALIFICATION.md) — qualification and evidence model.
299
+ - [`docs/OPTIMIZATION.md`](docs/OPTIMIZATION.md) — search, metrics, Pareto ranking, and evidence.
300
+ - [`docs/SETUP.md`](docs/SETUP.md) — explicit workstation bootstrap.
301
+ - [`docs/LAPTOP_ACCEPTANCE.md`](docs/LAPTOP_ACCEPTANCE.md) — UR5e visual workstation acceptance.
302
+
303
+ ## Release policy
304
+
305
+ `v0.10.0` is the first tagged GitHub release of this repository. It is an **alpha engineering release**, not a declaration of functional-safety certification, site qualification, or authorization for autonomous real-robot execution.
306
+
307
+ Future capability promotion must remain evidence-driven and must not silently upgrade experimental simulator results into commissioning claims.
308
+
309
+ ## Ownership
310
+
311
+ DevAgent Smart Physical Engine
312
+ Copyright © 2026 Tom Ha
313
+ Original creator: Tom Ha
314
+ Original project: https://github.com/tomha85/devagent-physical-engine
315
+ All rights reserved.
@@ -0,0 +1,84 @@
1
+ devagent_physical_engine/__init__.py,sha256=QHq-tUd7FCfTN5QKhyK9S_pFsxL2BPwa9n2whncG0LQ,972
2
+ devagent_physical_engine/ai_cli.py,sha256=XDaZTqnWhb4RJfn9oWR_A7K3NAdTkjY2JK7Hwme7lLM,7114
3
+ devagent_physical_engine/cli.py,sha256=xxsBZ8fb2TUE5KDYtK2Ni6Zx_5dC_oevJwDLbDGbsYI,13995
4
+ devagent_physical_engine/doctor.py,sha256=Bjt03LUPJOtwfvLja1liqOHLGm5tnG_8pWebWhUJbVU,469
5
+ devagent_physical_engine/engineering_agent.py,sha256=d0ocMc5FIyjrNjsxo7U2XKGpaiwyEZq22Nl2PVqtFi0,9177
6
+ devagent_physical_engine/engineering_request.py,sha256=G3wxoPp4YLZf35TcxQi5j3qw9nG5v3YqB-EbfILmfVI,25987
7
+ devagent_physical_engine/execution.py,sha256=eMB5iWnP3Rg-nuSgwCrQu22UUdAFUEu_q-1vGV0u-xc,3180
8
+ devagent_physical_engine/models.py,sha256=s3AxlRvhywL0sXsAFaMO3sVAwfod6fdyEPtjsuZ1FWY,4717
9
+ devagent_physical_engine/operating_envelope.py,sha256=huJ2XJ89OD1T3eM_o2udbANTfqHqPZGs11Dr4mRDbfE,4300
10
+ devagent_physical_engine/physical_campaign.py,sha256=sbvyX0q-51gTb_Wj4BAgisQnIAiCyOCm6kMMzL8ffZg,16959
11
+ devagent_physical_engine/physical_evidence.py,sha256=-PoeaF9gSw0ZgZpvN7T6uH6pWJkbD6b4kGqoP1v7zSw,8686
12
+ devagent_physical_engine/physical_motion.py,sha256=CE5x_Fsd4Zjvl2OaAKF0MKf3Ndrhql25hqMPqfH2lHU,7825
13
+ devagent_physical_engine/planning.py,sha256=YFXQg86C5slYSVhNrMWxV_GugTInQRDR__5zogUTIwc,2791
14
+ devagent_physical_engine/preexecution_contract.py,sha256=C4GU1ivGzodjEaqMpjy07eXSSBstXuXLPvrFS6wWXhE,2471
15
+ devagent_physical_engine/provider_qualification.py,sha256=rN783Tz9lbPOtrbsUIxAoXUL5BCDLqbz6LTn8G0MPCQ,9350
16
+ devagent_physical_engine/providers.py,sha256=ykHhLgKv2FPuvNENKE8jY20SXUiI-LkKse6uyH9pz4Q,3062
17
+ devagent_physical_engine/qualification.py,sha256=aY84l2Wa2jX3P-h8y_b_rVS7LNl767iqkpLy8QVcjPA,1482
18
+ devagent_physical_engine/qualification_cli.py,sha256=xYLNTiW3xln7XpV8ii14ntknEzkg-72RSOEc31Kzs7U,5795
19
+ devagent_physical_engine/qualification_harness.py,sha256=MnxlQj5mOLn4FC4TidEvKKWZcGxRi1P10pS-Dyenk1g,31665
20
+ devagent_physical_engine/robot_platform.py,sha256=E3vfpkr8IT28PEUvxlIIAnSTMFIIRTHohhTzgB5Gr30,15344
21
+ devagent_physical_engine/robots.py,sha256=j2mTmRFrisRy_yxJrnC9muagCezgsDgnPXCb4f65UY4,2469
22
+ devagent_physical_engine/setup_profile.py,sha256=_twIeoRqZEuZurQ-WYUtN0BDRdrDFcmbhFQ7_cEzxi8,13693
23
+ devagent_physical_engine/simulation.py,sha256=ZxuWJZiKvDBx3p4RPLU8r1DESYNaaP2GFJ2anyIk0rQ,1125
24
+ devagent_physical_engine/simulation_platform.py,sha256=WtTd8OlYE8XAEYKTM0_5EyOBL5hm8--VDHL-Yny4Ub8,10696
25
+ devagent_physical_engine/trajectory_qualification.py,sha256=Ot3x2jbL3sQElttdF7UaPWJ8I5bWTNnPE4Zzr_U7_RQ,7725
26
+ devagent_physical_engine/twin.py,sha256=hINuecxK5yn1lld72PYrYNF9dNFWapAP6gRiMOaE8n0,35012
27
+ devagent_physical_engine/twin_builder.py,sha256=8-VSYAGqdvuEOVGRCMwbzM-8wknz10TUkhCGYkvGUGg,10859
28
+ devagent_physical_engine/twin_materialization.py,sha256=SjObb-b3BVPFhi6iZ-Ki1gXLOacO0Cn6Wgc4LBhXAEI,15289
29
+ devagent_physical_engine/verification.py,sha256=DpugBNu9XPrFy5gSb_fqcpa4K5YEStGwwryX3QTQipg,2122
30
+ devagent_physical_engine/agent/__init__.py,sha256=ljBEwmJVQCrke-gSbmt4jGTfALCbtNq8ib_EcvtqPqc,1156
31
+ devagent_physical_engine/agent/compiler.py,sha256=lsIhaJ3bXFzLm-zwaeT7cBJv9nKWan35rsVVHxrG34w,10711
32
+ devagent_physical_engine/agent/contracts.py,sha256=CO8I3P6A72AG3kqf1EUFfJflAs6B9sZuHI1nVv_32lk,3483
33
+ devagent_physical_engine/agent/coordinator.py,sha256=_W2koHX2thw3hvcZXAdFuQggrCmGXOnvDXyXIfIqI48,3611
34
+ devagent_physical_engine/agent/critic.py,sha256=8omKFY3pu-IgtXLqF_CF2Ij2VsO5X9t7J2ebvXaUPtU,2651
35
+ devagent_physical_engine/agent/evidence.py,sha256=um7hssT6zgd8oM7041Da36aBb-dY-PnxLkTtRwx28Og,1112
36
+ devagent_physical_engine/agent/interpreter.py,sha256=j3j0LobFQrLsnCtlT7REoHaB3Td_jdAdnRjN0CjJAeU,7931
37
+ devagent_physical_engine/agent/planner.py,sha256=Ft9UM9GdKRaMBxEDtTcB_6V2xAWwBkLoVFrc146GcLw,4060
38
+ devagent_physical_engine/agent/recovery.py,sha256=WxuzfNyHNXX9m0QFUuv5WpTH7woxEwFWa17yGbh-5XI,1845
39
+ devagent_physical_engine/agent/routing.py,sha256=RMp4rstmrp1ADkF-O_AdYuO_qadq-Y59mKA9HwVfZpw,2481
40
+ devagent_physical_engine/agent/runtime.py,sha256=S2JdiP2r6zqdT4deAm8uS18Ro8xyMSxvpAbFwuaIGZ8,8817
41
+ devagent_physical_engine/agent/semantic.py,sha256=kemZ7BPqSouG0DtaWzhwUbITE6dQVuEqR1e_Wy1KHQ0,11565
42
+ devagent_physical_engine/agent/structured.py,sha256=_LbB42L4CSzS-dypHetUEZPe58OYw_4OtqMDW_Ata0A,14316
43
+ devagent_physical_engine/optimization/__init__.py,sha256=xXsXJxodh2owarqQHrB22ZgB85m4NFOvdjDOEeOGahg,1807
44
+ devagent_physical_engine/optimization/benchmark.py,sha256=Aj0Wv2kRZhN2gGrV50XVKhlidvPsqjV1Ajb3SSNqLnE,4056
45
+ devagent_physical_engine/optimization/candidates.py,sha256=ETdZAcKJmQXkrkxjhbuj6bD96YPrIUc5oLTDdz8Sx50,6879
46
+ devagent_physical_engine/optimization/contracts.py,sha256=tCWUTrbr2PkAku7zHapitTriOVIHG_wf3lJYAmYxvgQ,8519
47
+ devagent_physical_engine/optimization/evaluator.py,sha256=IE7ZhyCQhQnBd3drdFITQOwaOibvMAFVAwggzz3oZsw,3648
48
+ devagent_physical_engine/optimization/evidence.py,sha256=LMegK4_luGrKQ_3q0eCyVxpHu1aK5muvbg-F14GAFqQ,2569
49
+ devagent_physical_engine/optimization/experience.py,sha256=EPNAdDxNseCl_7Y-xthYzCLexmm4aJj-4_GzsQcSnl0,3102
50
+ devagent_physical_engine/optimization/measured.py,sha256=vNrN-98VKY186qNBkm9RdDepWmZm2Y8CwumJe-qlNLw,4330
51
+ devagent_physical_engine/optimization/optimizer.py,sha256=uwFmJcwVEcgTgmE7YcwUrQFK1vVeCidr_NeOgQrQ3Cc,8517
52
+ devagent_physical_engine/optimization/orchestrator.py,sha256=gfeTnd7gPFnL_9qhMLal8LtHA-1sDrLJZd7zvuTFum4,5796
53
+ devagent_physical_engine/provider_adapters/__init__.py,sha256=iG5_Q1YG7dmyavsnw7m6OhhGFBL0iJOceLLA8FpwrQQ,551
54
+ devagent_physical_engine/provider_adapters/anthropic.py,sha256=gWPbu5Za6hLaE8WcCgv5oJR9gan2YCpOe0q2mGGvN2A,4370
55
+ devagent_physical_engine/provider_adapters/common.py,sha256=PNouiXf7PtLkKPq-j4qB1qoLORgvmnZrjMTJFULD1b4,5987
56
+ devagent_physical_engine/provider_adapters/factory.py,sha256=ZOeyNL1WfmlG4rMlsbT66-K_rUWuo9YiLTQBKQwlh0w,670
57
+ devagent_physical_engine/provider_adapters/gemini.py,sha256=TOIlrNsSnTgDsZRsgY78o_JNpUCk-W2YMxKiowb7PhQ,4975
58
+ devagent_physical_engine/provider_adapters/openai.py,sha256=keMcdgyBpEsfjdFW-PABQ92F-b1TB2j1hrVgDKL-Du8,3679
59
+ devagent_physical_engine/ros2/__init__.py,sha256=LReoBX0VaGtY8v9KhTwOw0VPctOJEk1Sb1LCS7HZjqQ,1111
60
+ devagent_physical_engine/ros2/acceptance.py,sha256=EHaNn7xKMbNZws2dsWPTys1gB7rHyUiV7W0Vg_68cwI,11665
61
+ devagent_physical_engine/ros2/commands.py,sha256=okRXhfadWcVjtRoqQRGi1oQDyfLBHI_OQpqCQpR6J8I,6292
62
+ devagent_physical_engine/ros2/doctor.py,sha256=p6LFTWBoeqOwfWFSf3yjqjWYyLRK7kDxs3YA_w08QQk,3624
63
+ devagent_physical_engine/ros2/fk_probe.py,sha256=CPi-Ejg2eUHixo0E2WGyMs4y2VEUonWwcoD4SO82W_w,3305
64
+ devagent_physical_engine/ros2/frame_alignment.py,sha256=CUQsSv8nampJT4gLkiZQmP3bHdk0CYOJgAP4HMds0nw,3037
65
+ devagent_physical_engine/ros2/gazebo_world.py,sha256=32qtaMksZ2haEH0yKZrK4g5F1b0ZQsxjgjLjWkQQCEc,5186
66
+ devagent_physical_engine/ros2/joint_state_recorder.py,sha256=w42i0VF3jU3ZdC0ndpTx8EI_2UYw3rDKnpDd_gXFm94,2093
67
+ devagent_physical_engine/ros2/measured_motion.py,sha256=cFqYlekVJ1uTXYXwxGW7VqAGxN8-9Nz56cWZi5UVDQg,9481
68
+ devagent_physical_engine/ros2/moveit_scene.py,sha256=4UafY3Xlpr2uv0I9_1lz3TGbHQrLdY_eHxBjjfI9Y_Q,4806
69
+ devagent_physical_engine/ros2/preexecution.py,sha256=ujZwGvkyS3x2aUXPppbVKZCSKhY9gbkp7g1cw2qQUCg,4475
70
+ devagent_physical_engine/ros2/qualification.py,sha256=vugpcBuyvWFAG8FEZbtZH3ZYS2uFd2xXPtgClBLdNeQ,2729
71
+ devagent_physical_engine/ros2/qualification_v10.py,sha256=POVodXCdhUIiS4rH0P6cJ8F4elz2TLlrEMEBppBfVCw,9625
72
+ devagent_physical_engine/ros2/scene_probe.py,sha256=WkVDe9OTBFZgmG_6LfQFpQiYmxLnDEcRkBdpbtUcDTo,8979
73
+ devagent_physical_engine/ros2/state_validity_probe.py,sha256=gcx7-jnbmK1aAGKSZ2nzcHdCoSz4revxxlKNzON7Qdw,5395
74
+ devagent_physical_engine/ros2/tf_probe.py,sha256=_mW1TTT8afRyvtZ_QS432ehBR683_1V5Agg27BcLNTY,1721
75
+ devagent_physical_engine/ros2/trajectory.py,sha256=zPy56PrIHHH0rgWtsVHarIXiDOBqcsIavOvkTmhgqic,6374
76
+ devagent_physical_engine/ros2/ur5e.py,sha256=c6z5Ohu4uOMcWMT0v815UrYQt7qoOBQfcOrSBiSV_48,1613
77
+ devagent_physical_engine/ros2/ur5e_adapter.py,sha256=v3ghefYcfZ5TIFOJPXdDA_14qzEhM0gu8yy6Xcb_5hI,15137
78
+ devagent_physical_engine/ros2/ur5e_v10_adapter.py,sha256=M6C_Cens9ER71IIlLhGv-lLnq25sNotlyKDXRYZdhnM,13299
79
+ devagent_physical_engine-0.10.0.dist-info/licenses/NOTICE,sha256=0yUVb5BTsEwKMdZVF0Gtx1jYe9l-KTFLaQnUM8yY5Og,172
80
+ devagent_physical_engine-0.10.0.dist-info/METADATA,sha256=vJSJ3Cx3KN_EhpekPaWZj6DrCBohVDcrErdIAMLzaVo,12467
81
+ devagent_physical_engine-0.10.0.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
82
+ devagent_physical_engine-0.10.0.dist-info/entry_points.txt,sha256=XqfmABszG7t9W-T3_lDB9cKJ8V454TlmwcjbKvPN1OI,132
83
+ devagent_physical_engine-0.10.0.dist-info/top_level.txt,sha256=zumvVxElCpx6F06YhmGE1bfuCFusqKsH5_K1l4fig9I,25
84
+ devagent_physical_engine-0.10.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (84.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ devagent-physical = devagent_physical_engine.cli:main
3
+ devagent-physical-ai = devagent_physical_engine.ai_cli:main
@@ -0,0 +1,2 @@
1
+ DevAgent Smart Physical Engine is original software by Tom Ha.
2
+ Third-party robotics middleware, robot drivers, SDKs, and AI providers remain subject to their own licenses.
@@ -0,0 +1 @@
1
+ devagent_physical_engine