get-engineering-done 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 (131) hide show
  1. get_engineering_done-0.1.0/LICENSE +158 -0
  2. get_engineering_done-0.1.0/MANIFEST.in +9 -0
  3. get_engineering_done-0.1.0/PKG-INFO +192 -0
  4. get_engineering_done-0.1.0/README.md +171 -0
  5. get_engineering_done-0.1.0/pyproject.toml +49 -0
  6. get_engineering_done-0.1.0/setup.cfg +9 -0
  7. get_engineering_done-0.1.0/src/ged/__init__.py +3 -0
  8. get_engineering_done-0.1.0/src/ged/__main__.py +6 -0
  9. get_engineering_done-0.1.0/src/ged/adapters/runtime_catalog.json +76 -0
  10. get_engineering_done-0.1.0/src/ged/agents/ged-architect.md +26 -0
  11. get_engineering_done-0.1.0/src/ged/agents/ged-debug.md +26 -0
  12. get_engineering_done-0.1.0/src/ged/agents/ged-design-review.md +26 -0
  13. get_engineering_done-0.1.0/src/ged/agents/ged-interface.md +26 -0
  14. get_engineering_done-0.1.0/src/ged/agents/ged-manufacturing.md +26 -0
  15. get_engineering_done-0.1.0/src/ged/agents/ged-requirements.md +26 -0
  16. get_engineering_done-0.1.0/src/ged/agents/ged-simulation.md +26 -0
  17. get_engineering_done-0.1.0/src/ged/agents/ged-test.md +26 -0
  18. get_engineering_done-0.1.0/src/ged/agents/ged-vvuq.md +26 -0
  19. get_engineering_done-0.1.0/src/ged/benchmarks.py +44 -0
  20. get_engineering_done-0.1.0/src/ged/capabilities.py +472 -0
  21. get_engineering_done-0.1.0/src/ged/cli.py +961 -0
  22. get_engineering_done-0.1.0/src/ged/commands/add-phase.md +19 -0
  23. get_engineering_done-0.1.0/src/ged/commands/add-todo.md +19 -0
  24. get_engineering_done-0.1.0/src/ged/commands/audit-milestone.md +19 -0
  25. get_engineering_done-0.1.0/src/ged/commands/autonomous.md +19 -0
  26. get_engineering_done-0.1.0/src/ged/commands/benchmarks.md +23 -0
  27. get_engineering_done-0.1.0/src/ged/commands/branch-option.md +19 -0
  28. get_engineering_done-0.1.0/src/ged/commands/check-todos.md +19 -0
  29. get_engineering_done-0.1.0/src/ged/commands/compact-state.md +20 -0
  30. get_engineering_done-0.1.0/src/ged/commands/compare-branches.md +19 -0
  31. get_engineering_done-0.1.0/src/ged/commands/compare-experiment.md +20 -0
  32. get_engineering_done-0.1.0/src/ged/commands/compare-results.md +20 -0
  33. get_engineering_done-0.1.0/src/ged/commands/complete-milestone.md +19 -0
  34. get_engineering_done-0.1.0/src/ged/commands/convergence-check.md +19 -0
  35. get_engineering_done-0.1.0/src/ged/commands/curate-templates.md +22 -0
  36. get_engineering_done-0.1.0/src/ged/commands/debug.md +20 -0
  37. get_engineering_done-0.1.0/src/ged/commands/decisions.md +19 -0
  38. get_engineering_done-0.1.0/src/ged/commands/derive-model.md +20 -0
  39. get_engineering_done-0.1.0/src/ged/commands/design-review.md +20 -0
  40. get_engineering_done-0.1.0/src/ged/commands/digest-knowledge.md +20 -0
  41. get_engineering_done-0.1.0/src/ged/commands/dimensional-analysis.md +20 -0
  42. get_engineering_done-0.1.0/src/ged/commands/discover.md +20 -0
  43. get_engineering_done-0.1.0/src/ged/commands/discuss-phase.md +19 -0
  44. get_engineering_done-0.1.0/src/ged/commands/error-patterns.md +19 -0
  45. get_engineering_done-0.1.0/src/ged/commands/error-propagation.md +20 -0
  46. get_engineering_done-0.1.0/src/ged/commands/execute-phase.md +27 -0
  47. get_engineering_done-0.1.0/src/ged/commands/explain.md +20 -0
  48. get_engineering_done-0.1.0/src/ged/commands/export-logs.md +19 -0
  49. get_engineering_done-0.1.0/src/ged/commands/export.md +20 -0
  50. get_engineering_done-0.1.0/src/ged/commands/graph.md +20 -0
  51. get_engineering_done-0.1.0/src/ged/commands/health.md +19 -0
  52. get_engineering_done-0.1.0/src/ged/commands/help.md +18 -0
  53. get_engineering_done-0.1.0/src/ged/commands/insert-phase.md +19 -0
  54. get_engineering_done-0.1.0/src/ged/commands/install-curation-schedule.md +20 -0
  55. get_engineering_done-0.1.0/src/ged/commands/integrations.md +22 -0
  56. get_engineering_done-0.1.0/src/ged/commands/limiting-cases.md +20 -0
  57. get_engineering_done-0.1.0/src/ged/commands/list-phase-assumptions.md +19 -0
  58. get_engineering_done-0.1.0/src/ged/commands/literature-review.md +20 -0
  59. get_engineering_done-0.1.0/src/ged/commands/map-engineering.md +19 -0
  60. get_engineering_done-0.1.0/src/ged/commands/map-research.md +19 -0
  61. get_engineering_done-0.1.0/src/ged/commands/merge-phases.md +19 -0
  62. get_engineering_done-0.1.0/src/ged/commands/new-milestone.md +19 -0
  63. get_engineering_done-0.1.0/src/ged/commands/new-project.md +25 -0
  64. get_engineering_done-0.1.0/src/ged/commands/package-phase.md +22 -0
  65. get_engineering_done-0.1.0/src/ged/commands/parameter-sweep.md +19 -0
  66. get_engineering_done-0.1.0/src/ged/commands/pause-work.md +19 -0
  67. get_engineering_done-0.1.0/src/ged/commands/plan-milestone-gaps.md +19 -0
  68. get_engineering_done-0.1.0/src/ged/commands/plan-phase.md +18 -0
  69. get_engineering_done-0.1.0/src/ged/commands/progress.md +19 -0
  70. get_engineering_done-0.1.0/src/ged/commands/quick.md +19 -0
  71. get_engineering_done-0.1.0/src/ged/commands/reapply-patches.md +20 -0
  72. get_engineering_done-0.1.0/src/ged/commands/record-backtrack.md +20 -0
  73. get_engineering_done-0.1.0/src/ged/commands/record-insight.md +19 -0
  74. get_engineering_done-0.1.0/src/ged/commands/regression-check.md +20 -0
  75. get_engineering_done-0.1.0/src/ged/commands/release-package.md +20 -0
  76. get_engineering_done-0.1.0/src/ged/commands/remove-phase.md +19 -0
  77. get_engineering_done-0.1.0/src/ged/commands/research-phase.md +20 -0
  78. get_engineering_done-0.1.0/src/ged/commands/respond-to-review.md +19 -0
  79. get_engineering_done-0.1.0/src/ged/commands/resume-work.md +18 -0
  80. get_engineering_done-0.1.0/src/ged/commands/review-knowledge.md +19 -0
  81. get_engineering_done-0.1.0/src/ged/commands/revise-phase.md +19 -0
  82. get_engineering_done-0.1.0/src/ged/commands/route.md +19 -0
  83. get_engineering_done-0.1.0/src/ged/commands/sensitivity-analysis.md +20 -0
  84. get_engineering_done-0.1.0/src/ged/commands/set-profile.md +19 -0
  85. get_engineering_done-0.1.0/src/ged/commands/set-tier-models.md +19 -0
  86. get_engineering_done-0.1.0/src/ged/commands/settings.md +18 -0
  87. get_engineering_done-0.1.0/src/ged/commands/show-phase.md +19 -0
  88. get_engineering_done-0.1.0/src/ged/commands/slides.md +20 -0
  89. get_engineering_done-0.1.0/src/ged/commands/start.md +18 -0
  90. get_engineering_done-0.1.0/src/ged/commands/suggest-next.md +18 -0
  91. get_engineering_done-0.1.0/src/ged/commands/sync-state.md +19 -0
  92. get_engineering_done-0.1.0/src/ged/commands/tangent.md +19 -0
  93. get_engineering_done-0.1.0/src/ged/commands/tour.md +19 -0
  94. get_engineering_done-0.1.0/src/ged/commands/undo.md +20 -0
  95. get_engineering_done-0.1.0/src/ged/commands/update.md +20 -0
  96. get_engineering_done-0.1.0/src/ged/commands/validate-conventions.md +20 -0
  97. get_engineering_done-0.1.0/src/ged/commands/verify-work.md +42 -0
  98. get_engineering_done-0.1.0/src/ged/commands/vvuq.md +22 -0
  99. get_engineering_done-0.1.0/src/ged/commands/write-report.md +20 -0
  100. get_engineering_done-0.1.0/src/ged/core/deep_problems.json +117 -0
  101. get_engineering_done-0.1.0/src/ged/core/engineering_benchmarks.json +106 -0
  102. get_engineering_done-0.1.0/src/ged/core/engineering_presets.json +112 -0
  103. get_engineering_done-0.1.0/src/ged/core/integrations.json +31 -0
  104. get_engineering_done-0.1.0/src/ged/core/photonic_recipes.json +56 -0
  105. get_engineering_done-0.1.0/src/ged/core/public_surface_contract.json +154 -0
  106. get_engineering_done-0.1.0/src/ged/deep_problems.py +122 -0
  107. get_engineering_done-0.1.0/src/ged/doctor.py +63 -0
  108. get_engineering_done-0.1.0/src/ged/drive.py +166 -0
  109. get_engineering_done-0.1.0/src/ged/goal.py +364 -0
  110. get_engineering_done-0.1.0/src/ged/integrations.py +21 -0
  111. get_engineering_done-0.1.0/src/ged/linear_sync.py +225 -0
  112. get_engineering_done-0.1.0/src/ged/marimo_panels.py +970 -0
  113. get_engineering_done-0.1.0/src/ged/observability.py +86 -0
  114. get_engineering_done-0.1.0/src/ged/preflight.py +190 -0
  115. get_engineering_done-0.1.0/src/ged/presets.py +79 -0
  116. get_engineering_done-0.1.0/src/ged/project.py +397 -0
  117. get_engineering_done-0.1.0/src/ged/resume.py +87 -0
  118. get_engineering_done-0.1.0/src/ged/runtime.py +29 -0
  119. get_engineering_done-0.1.0/src/ged/solution.py +125 -0
  120. get_engineering_done-0.1.0/src/ged/solution_templates.py +167 -0
  121. get_engineering_done-0.1.0/src/ged/solve.py +300 -0
  122. get_engineering_done-0.1.0/src/ged/static/marimo_panels.css +213 -0
  123. get_engineering_done-0.1.0/src/ged/template_curation.py +691 -0
  124. get_engineering_done-0.1.0/src/ged/validate.py +1070 -0
  125. get_engineering_done-0.1.0/src/ged/vvuq.py +316 -0
  126. get_engineering_done-0.1.0/src/get_engineering_done.egg-info/PKG-INFO +192 -0
  127. get_engineering_done-0.1.0/src/get_engineering_done.egg-info/SOURCES.txt +130 -0
  128. get_engineering_done-0.1.0/src/get_engineering_done.egg-info/dependency_links.txt +1 -0
  129. get_engineering_done-0.1.0/src/get_engineering_done.egg-info/entry_points.txt +2 -0
  130. get_engineering_done-0.1.0/src/get_engineering_done.egg-info/requires.txt +8 -0
  131. get_engineering_done-0.1.0/src/get_engineering_done.egg-info/top_level.txt +1 -0
@@ -0,0 +1,158 @@
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, and
10
+ distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by the
13
+ copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other
16
+ entities that control, are controlled by, or are under common control with that
17
+ entity. For the purposes of this definition, "control" means (i) the power,
18
+ direct or indirect, to cause the direction or management of such entity,
19
+ whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or
20
+ more of the outstanding shares, or (iii) beneficial ownership of such entity.
21
+
22
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
23
+ permissions granted by this License.
24
+
25
+ "Source" form shall mean the preferred form for making modifications,
26
+ including but not limited to software source code, documentation source, and
27
+ configuration files.
28
+
29
+ "Object" form shall mean any form resulting from mechanical transformation or
30
+ translation of a Source form, including but not limited to compiled object
31
+ code, generated documentation, and conversions to other media types.
32
+
33
+ "Work" shall mean the work of authorship, whether in Source or Object form,
34
+ made available under the License, as indicated by a copyright notice that is
35
+ included in or attached to the work.
36
+
37
+ "Derivative Works" shall mean any work, whether in Source or Object form, that
38
+ is based on (or derived from) the Work and for which the editorial revisions,
39
+ annotations, elaborations, or other modifications represent, as a whole, an
40
+ original work of authorship. For the purposes of this License, Derivative Works
41
+ shall not include works that remain separable from, or merely link (or bind by
42
+ name) to the interfaces of, the Work and Derivative Works thereof.
43
+
44
+ "Contribution" shall mean any work of authorship, including the original
45
+ version of the Work and any modifications or additions to that Work or
46
+ Derivative Works thereof, that is intentionally submitted to Licensor for
47
+ inclusion in the Work by the copyright owner or by an individual or Legal
48
+ Entity authorized to submit on behalf of the copyright owner. For the purposes
49
+ of this definition, "submitted" means any form of electronic, verbal, or
50
+ written communication sent to the Licensor or its representatives, including
51
+ but not limited to communication on electronic mailing lists, source code
52
+ control systems, and issue tracking systems that are managed by, or on behalf
53
+ of, the Licensor for the purpose of discussing and improving the Work, but
54
+ excluding communication that is conspicuously marked or otherwise designated in
55
+ writing by the copyright owner as "Not a Contribution."
56
+
57
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf
58
+ of whom a Contribution has been received by Licensor and subsequently
59
+ incorporated within the Work.
60
+
61
+ 2. Grant of Copyright License. Subject to the terms and conditions of this
62
+ License, each Contributor hereby grants to You a perpetual, worldwide,
63
+ non-exclusive, no-charge, royalty-free, irrevocable copyright license to
64
+ reproduce, prepare Derivative Works of, publicly display, publicly perform,
65
+ sublicense, and distribute the Work and such Derivative Works in Source or
66
+ Object form.
67
+
68
+ 3. Grant of Patent License. Subject to the terms and conditions of this
69
+ License, each Contributor hereby grants to You a perpetual, worldwide,
70
+ non-exclusive, no-charge, royalty-free, irrevocable patent license to make,
71
+ have made, use, offer to sell, sell, import, and otherwise transfer the Work,
72
+ where such license applies only to those patent claims licensable by such
73
+ Contributor that are necessarily infringed by their Contribution alone or by
74
+ combination of their Contribution with the Work to which such Contribution was
75
+ submitted. If You institute patent litigation against any entity alleging that
76
+ the Work or a Contribution incorporated within the Work constitutes direct or
77
+ contributory patent infringement, then any patent licenses granted to You under
78
+ this License for that Work shall terminate as of the date such litigation is
79
+ filed.
80
+
81
+ 4. Redistribution. You may reproduce and distribute copies of the Work or
82
+ Derivative Works thereof in any medium, with or without modifications, and in
83
+ Source or Object form, provided that You meet the following conditions:
84
+
85
+ (a) You must give any other recipients of the Work or Derivative Works a copy
86
+ of this License; and
87
+
88
+ (b) You must cause any modified files to carry prominent notices stating that
89
+ You changed the files; and
90
+
91
+ (c) You must retain, in the Source form of any Derivative Works that You
92
+ distribute, all copyright, patent, trademark, and attribution notices from the
93
+ Source form of the Work, excluding those notices that do not pertain to any
94
+ part of the Derivative Works; and
95
+
96
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then
97
+ any Derivative Works that You distribute must include a readable copy of the
98
+ attribution notices contained within such NOTICE file, excluding those notices
99
+ that do not pertain to any part of the Derivative Works, in at least one of the
100
+ following places: within a NOTICE text file distributed as part of the
101
+ Derivative Works; within the Source form or documentation, if provided along
102
+ with the Derivative Works; or within a display generated by the Derivative
103
+ Works, if and wherever such third-party notices normally appear. The contents
104
+ of the NOTICE file are for informational purposes only and do not modify the
105
+ License. You may add Your own attribution notices within Derivative Works that
106
+ You distribute, alongside or as an addendum to the NOTICE text from the Work,
107
+ provided that such additional attribution notices cannot be construed as
108
+ modifying the License.
109
+
110
+ You may add Your own copyright statement to Your modifications and may provide
111
+ additional or different license terms and conditions for use, reproduction, or
112
+ distribution of Your modifications, or for any such Derivative Works as a
113
+ whole, provided Your use, reproduction, and distribution of the Work otherwise
114
+ complies with the conditions stated in this License.
115
+
116
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any
117
+ Contribution intentionally submitted for inclusion in the Work by You to the
118
+ Licensor shall be under the terms and conditions of this License, without any
119
+ additional terms or conditions. Notwithstanding the above, nothing herein shall
120
+ supersede or modify the terms of any separate license agreement you may have
121
+ executed with Licensor regarding such Contributions.
122
+
123
+ 6. Trademarks. This License does not grant permission to use the trade names,
124
+ trademarks, service marks, or product names of the Licensor, except as
125
+ required for reasonable and customary use in describing the origin of the Work
126
+ and reproducing the content of the NOTICE file.
127
+
128
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
129
+ writing, Licensor provides the Work (and each Contributor provides its
130
+ Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
131
+ KIND, either express or implied, including, without limitation, any warranties
132
+ or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
133
+ PARTICULAR PURPOSE. You are solely responsible for determining the
134
+ appropriateness of using or redistributing the Work and assume any risks
135
+ associated with Your exercise of permissions under this License.
136
+
137
+ 8. Limitation of Liability. In no event and under no legal theory, whether in
138
+ tort (including negligence), contract, or otherwise, unless required by
139
+ applicable law (such as deliberate and grossly negligent acts) or agreed to in
140
+ writing, shall any Contributor be liable to You for damages, including any
141
+ direct, indirect, special, incidental, or consequential damages of any character
142
+ arising as a result of this License or out of the use or inability to use the
143
+ Work (including but not limited to damages for loss of goodwill, work
144
+ stoppage, computer failure or malfunction, or any and all other commercial
145
+ damages or losses), even if such Contributor has been advised of the
146
+ possibility of such damages.
147
+
148
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or
149
+ Derivative Works thereof, You may choose to offer, and charge a fee for,
150
+ acceptance of support, warranty, indemnity, or other liability obligations
151
+ and/or rights consistent with this License. However, in accepting such
152
+ obligations, You may act only on Your own behalf and on Your sole
153
+ responsibility, not on behalf of any other Contributor, and only if You agree
154
+ to indemnify, defend, and hold each Contributor harmless for any liability
155
+ incurred by, or claims asserted against, such Contributor by reason of your
156
+ accepting any such warranty or additional liability.
157
+
158
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1,9 @@
1
+ prune tests
2
+ prune internal
3
+ prune artifacts
4
+ prune scripts
5
+ prune docs
6
+ prune .github
7
+ exclude AGENT.md
8
+ global-exclude *.pyc
9
+ global-exclude __pycache__
@@ -0,0 +1,192 @@
1
+ Metadata-Version: 2.4
2
+ Name: get-engineering-done
3
+ Version: 0.1.0
4
+ Summary: Get Engineering Done: structured agentic workflows for engineering programs
5
+ Author: Englund Garage
6
+ License-Expression: Apache-2.0
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Intended Audience :: Science/Research
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Topic :: Scientific/Engineering
11
+ Requires-Python: >=3.11
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Provides-Extra: dev
15
+ Requires-Dist: pytest>=8; extra == "dev"
16
+ Requires-Dist: pytest-timeout>=2.3; extra == "dev"
17
+ Provides-Extra: mutation
18
+ Requires-Dist: mutmut<3,>=2.4; extra == "mutation"
19
+ Requires-Dist: coverage>=7; extra == "mutation"
20
+ Dynamic: license-file
21
+
22
+ # Get Engineering Done (GED)
23
+
24
+ Get Engineering Done is a command-workflow scaffold for engineering programs
25
+ that need more structure than a one-off chat or notebook. It is
26
+ engineering-specific from the start.
27
+
28
+ GED provides a complete engineering workflow command surface and capability
29
+ set. It targets capability completeness: every capability an engineering
30
+ program needs to go from objective to reviewable, verified package has an
31
+ explicit home in GED.
32
+
33
+ GED turns an engineering objective into a reviewable workflow:
34
+
35
+ ```text
36
+ formulate -> architect -> plan -> execute -> verify -> package
37
+ ```
38
+
39
+ The first goal is not to fake a solver or a green result. The first goal is to
40
+ make an engineering project reviewable: requirements, interfaces, discipline
41
+ models, solver evidence, verification verdicts, provenance, and acceptance
42
+ criteria all have explicit homes.
43
+
44
+ ## Quick Start
45
+
46
+ From a source checkout, install the runtime command surface with the Node
47
+ bootstrapper:
48
+
49
+ ```bash
50
+ node bin/install.js --codex --local
51
+ ```
52
+
53
+ Use `--claude`, `--gemini`, `--opencode`, or `--all` for the other supported
54
+ runtimes. The installer writes model-visible GED command files into the selected
55
+ runtime config target.
56
+
57
+ > **Planned (post-npm-publish):** once `get-engineering-done` ships to npm,
58
+ > the source-checkout step will be replaceable with
59
+ > `npx -y get-engineering-done --codex --local`. The package is not yet
60
+ > published — see [capability tracker](https://github.com/Englund-Garage/get-engineering-done/issues/27)
61
+ > for the runtime-install capability that this depends on.
62
+
63
+ Install the Python CLI:
64
+
65
+ ```bash
66
+ python3.11 -m venv .venv
67
+ source .venv/bin/activate
68
+ python -m pip install -e .
69
+ ged --help
70
+ ```
71
+
72
+ Create a draft engineering project:
73
+
74
+ ```bash
75
+ ged new-project \
76
+ --root /path/to/project \
77
+ --objective "Produce a coupled coherent PIC transceiver model" \
78
+ --domain "photonic transceiver engineering"
79
+ ```
80
+
81
+ Validate the scaffold:
82
+
83
+ ```bash
84
+ ged validate --root /path/to/project
85
+ ```
86
+
87
+ Strict validation is intentionally harder. A new scaffold is a draft; it does
88
+ not pass strict validation until phase artifacts are present, nonempty,
89
+ format-checked, marked available in the phase manifest, and paired with
90
+ matching hash/provenance metadata. Strict validation does not prove engineering
91
+ truth; it checks that a package is reviewable and not an obvious placeholder.
92
+
93
+ ```bash
94
+ ged validate --root /path/to/project --strict
95
+ ```
96
+
97
+ ## Runtime Commands
98
+
99
+ GED is designed to expose the same command loop across AI runtimes:
100
+
101
+ | Runtime | Help | New project |
102
+ | --- | --- | --- |
103
+ | Codex | `$ged-help` | `$ged-new-project` |
104
+ | Claude Code | `/ged:help` | `/ged:new-project` |
105
+ | Gemini CLI | `/ged:help` | `/ged:new-project` |
106
+ | OpenCode | `/ged-help` | `/ged-new-project` |
107
+
108
+ The local CLI can print the full command map:
109
+
110
+ ```bash
111
+ ged command-map --runtime codex
112
+ ```
113
+
114
+ ## Capability completeness
115
+
116
+ GED tracks its engineering capability set as an executable requirement:
117
+
118
+ ```bash
119
+ ged capabilities
120
+ ```
121
+
122
+ This command returns non-zero until every required engineering capability is
123
+ present. See [docs/capability-requirement.md](docs/capability-requirement.md).
124
+
125
+ ## Template Curation (STEM)
126
+
127
+ GED can curate STEM-ready templates for agent use and emit Neo4j-shared ingest
128
+ artifacts:
129
+
130
+ ```bash
131
+ # --workspace-root defaults to the current working directory; --output-root
132
+ # defaults to ./artifacts/template-curation
133
+ ged curate-templates
134
+ ```
135
+
136
+ Or with explicit paths:
137
+
138
+ ```bash
139
+ ged curate-templates \
140
+ --workspace-root /path/to/workspace \
141
+ --output-root /path/to/output
142
+ ```
143
+
144
+ Install a 30-minute launchd schedule (macOS):
145
+
146
+ ```bash
147
+ ged install-curation-schedule \
148
+ --workspace-root /path/to/workspace \
149
+ --output-root /path/to/output \
150
+ --interval-minutes 30
151
+ ```
152
+
153
+ The plist defaults to
154
+ `~/Library/LaunchAgents/com.englund-garage.ged.template-curator.plist`;
155
+ override with `--plist-path` if you prefer a different location.
156
+
157
+ ## Project Shape
158
+
159
+ GED creates:
160
+
161
+ ```text
162
+ GED/
163
+ PROJECT.md
164
+ REQUIREMENTS.md
165
+ ROADMAP.md
166
+ STATE.md
167
+ phases/
168
+ phase-01/
169
+ PLAN.md
170
+ VERIFY.md
171
+ outputs/
172
+ README.md
173
+ artifact_manifest.json
174
+ ```
175
+
176
+ The manifest starts with planned artifacts only. Real engineering outputs must
177
+ be added by the owning project before the phase can move from draft to green.
178
+
179
+ ## Engineering Bias
180
+
181
+ GED is for engineering programs where success depends on interfaces,
182
+ tolerances, physical constraints, cost or manufacturability, simulation
183
+ evidence, tests, and reviewable provenance. For the initial coherent PIC
184
+ transceiver use case, GED should sit above OpenMDAO/MPhys, discipline backends
185
+ such as Tidy3D/SAX/SPICE/gdsfactory/Femwell, VVUQ claim checks, Neo4j
186
+ provenance, and work-contract acceptance gates.
187
+
188
+ ## Development
189
+
190
+ ```bash
191
+ python3.11 -m pytest -q
192
+ ```
@@ -0,0 +1,171 @@
1
+ # Get Engineering Done (GED)
2
+
3
+ Get Engineering Done is a command-workflow scaffold for engineering programs
4
+ that need more structure than a one-off chat or notebook. It is
5
+ engineering-specific from the start.
6
+
7
+ GED provides a complete engineering workflow command surface and capability
8
+ set. It targets capability completeness: every capability an engineering
9
+ program needs to go from objective to reviewable, verified package has an
10
+ explicit home in GED.
11
+
12
+ GED turns an engineering objective into a reviewable workflow:
13
+
14
+ ```text
15
+ formulate -> architect -> plan -> execute -> verify -> package
16
+ ```
17
+
18
+ The first goal is not to fake a solver or a green result. The first goal is to
19
+ make an engineering project reviewable: requirements, interfaces, discipline
20
+ models, solver evidence, verification verdicts, provenance, and acceptance
21
+ criteria all have explicit homes.
22
+
23
+ ## Quick Start
24
+
25
+ From a source checkout, install the runtime command surface with the Node
26
+ bootstrapper:
27
+
28
+ ```bash
29
+ node bin/install.js --codex --local
30
+ ```
31
+
32
+ Use `--claude`, `--gemini`, `--opencode`, or `--all` for the other supported
33
+ runtimes. The installer writes model-visible GED command files into the selected
34
+ runtime config target.
35
+
36
+ > **Planned (post-npm-publish):** once `get-engineering-done` ships to npm,
37
+ > the source-checkout step will be replaceable with
38
+ > `npx -y get-engineering-done --codex --local`. The package is not yet
39
+ > published — see [capability tracker](https://github.com/Englund-Garage/get-engineering-done/issues/27)
40
+ > for the runtime-install capability that this depends on.
41
+
42
+ Install the Python CLI:
43
+
44
+ ```bash
45
+ python3.11 -m venv .venv
46
+ source .venv/bin/activate
47
+ python -m pip install -e .
48
+ ged --help
49
+ ```
50
+
51
+ Create a draft engineering project:
52
+
53
+ ```bash
54
+ ged new-project \
55
+ --root /path/to/project \
56
+ --objective "Produce a coupled coherent PIC transceiver model" \
57
+ --domain "photonic transceiver engineering"
58
+ ```
59
+
60
+ Validate the scaffold:
61
+
62
+ ```bash
63
+ ged validate --root /path/to/project
64
+ ```
65
+
66
+ Strict validation is intentionally harder. A new scaffold is a draft; it does
67
+ not pass strict validation until phase artifacts are present, nonempty,
68
+ format-checked, marked available in the phase manifest, and paired with
69
+ matching hash/provenance metadata. Strict validation does not prove engineering
70
+ truth; it checks that a package is reviewable and not an obvious placeholder.
71
+
72
+ ```bash
73
+ ged validate --root /path/to/project --strict
74
+ ```
75
+
76
+ ## Runtime Commands
77
+
78
+ GED is designed to expose the same command loop across AI runtimes:
79
+
80
+ | Runtime | Help | New project |
81
+ | --- | --- | --- |
82
+ | Codex | `$ged-help` | `$ged-new-project` |
83
+ | Claude Code | `/ged:help` | `/ged:new-project` |
84
+ | Gemini CLI | `/ged:help` | `/ged:new-project` |
85
+ | OpenCode | `/ged-help` | `/ged-new-project` |
86
+
87
+ The local CLI can print the full command map:
88
+
89
+ ```bash
90
+ ged command-map --runtime codex
91
+ ```
92
+
93
+ ## Capability completeness
94
+
95
+ GED tracks its engineering capability set as an executable requirement:
96
+
97
+ ```bash
98
+ ged capabilities
99
+ ```
100
+
101
+ This command returns non-zero until every required engineering capability is
102
+ present. See [docs/capability-requirement.md](docs/capability-requirement.md).
103
+
104
+ ## Template Curation (STEM)
105
+
106
+ GED can curate STEM-ready templates for agent use and emit Neo4j-shared ingest
107
+ artifacts:
108
+
109
+ ```bash
110
+ # --workspace-root defaults to the current working directory; --output-root
111
+ # defaults to ./artifacts/template-curation
112
+ ged curate-templates
113
+ ```
114
+
115
+ Or with explicit paths:
116
+
117
+ ```bash
118
+ ged curate-templates \
119
+ --workspace-root /path/to/workspace \
120
+ --output-root /path/to/output
121
+ ```
122
+
123
+ Install a 30-minute launchd schedule (macOS):
124
+
125
+ ```bash
126
+ ged install-curation-schedule \
127
+ --workspace-root /path/to/workspace \
128
+ --output-root /path/to/output \
129
+ --interval-minutes 30
130
+ ```
131
+
132
+ The plist defaults to
133
+ `~/Library/LaunchAgents/com.englund-garage.ged.template-curator.plist`;
134
+ override with `--plist-path` if you prefer a different location.
135
+
136
+ ## Project Shape
137
+
138
+ GED creates:
139
+
140
+ ```text
141
+ GED/
142
+ PROJECT.md
143
+ REQUIREMENTS.md
144
+ ROADMAP.md
145
+ STATE.md
146
+ phases/
147
+ phase-01/
148
+ PLAN.md
149
+ VERIFY.md
150
+ outputs/
151
+ README.md
152
+ artifact_manifest.json
153
+ ```
154
+
155
+ The manifest starts with planned artifacts only. Real engineering outputs must
156
+ be added by the owning project before the phase can move from draft to green.
157
+
158
+ ## Engineering Bias
159
+
160
+ GED is for engineering programs where success depends on interfaces,
161
+ tolerances, physical constraints, cost or manufacturability, simulation
162
+ evidence, tests, and reviewable provenance. For the initial coherent PIC
163
+ transceiver use case, GED should sit above OpenMDAO/MPhys, discipline backends
164
+ such as Tidy3D/SAX/SPICE/gdsfactory/Femwell, VVUQ claim checks, Neo4j
165
+ provenance, and work-contract acceptance gates.
166
+
167
+ ## Development
168
+
169
+ ```bash
170
+ python3.11 -m pytest -q
171
+ ```
@@ -0,0 +1,49 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "get-engineering-done"
7
+ version = "0.1.0"
8
+ description = "Get Engineering Done: structured agentic workflows for engineering programs"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "Apache-2.0"
12
+ authors = [
13
+ { name = "Englund Garage" }
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 3 - Alpha",
17
+ "Intended Audience :: Science/Research",
18
+ "Programming Language :: Python :: 3.11",
19
+ "Topic :: Scientific/Engineering"
20
+ ]
21
+ dependencies = []
22
+
23
+ [project.optional-dependencies]
24
+ dev = [
25
+ "pytest>=8",
26
+ "pytest-timeout>=2.3"
27
+ ]
28
+ # Mutation testing (issue #44). Advisory only — see scripts/mutmut_kill_rate.py
29
+ # and CLAUDE.md "Mutation testing". Kept separate from `dev` so the core test
30
+ # job stays lean; the mutation CI job installs `.[mutation]`.
31
+ mutation = [
32
+ "mutmut>=2.4,<3",
33
+ "coverage>=7"
34
+ ]
35
+
36
+ [project.scripts]
37
+ ged = "ged.cli:main"
38
+
39
+ [tool.setuptools.packages.find]
40
+ where = ["src"]
41
+
42
+ [tool.setuptools.package-data]
43
+ ged = ["adapters/*.json", "agents/*.md", "commands/*.md", "core/*.json", "static/*.css"]
44
+
45
+ [tool.pytest.ini_options]
46
+ addopts = "-q"
47
+ pythonpath = ["src", "."]
48
+ testpaths = ["tests"]
49
+ timeout = 30
@@ -0,0 +1,9 @@
1
+ [mutmut]
2
+ paths_to_mutate = src/ged/marimo_panels.py
3
+ tests_dir = tests/
4
+ runner = python -m pytest -x -q --no-header -p no:cacheprovider tests/test_marimo_panels.py tests/test_marimo_panels_architecture.py tests/test_marimo_panels_sota_behavioral.py tests/test_marimo_panels_mutation_killers.py
5
+
6
+ [egg_info]
7
+ tag_build =
8
+ tag_date = 0
9
+
@@ -0,0 +1,3 @@
1
+ """Get Engineering Done core package."""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,6 @@
1
+ from __future__ import annotations
2
+
3
+ from .cli import main
4
+
5
+
6
+ raise SystemExit(main())
@@ -0,0 +1,76 @@
1
+ [
2
+ {
3
+ "runtime_name": "claude-code",
4
+ "display_name": "Claude Code",
5
+ "priority": 10,
6
+ "config_dir_name": ".claude",
7
+ "install_flag": "--claude",
8
+ "launch_command": "claude",
9
+ "command_prefix": "/ged:",
10
+ "selection_flags": ["--claude-code", "--claude"],
11
+ "selection_aliases": ["claude-code", "claude code", "claude"],
12
+ "managed_install_surface": {
13
+ "nested_command_dir": "commands/ged"
14
+ },
15
+ "global_config": {
16
+ "env_var": "CLAUDE_CONFIG_DIR",
17
+ "home_subpath": ".claude"
18
+ }
19
+ },
20
+ {
21
+ "runtime_name": "gemini",
22
+ "display_name": "Gemini CLI",
23
+ "priority": 20,
24
+ "config_dir_name": ".gemini",
25
+ "install_flag": "--gemini",
26
+ "launch_command": "gemini",
27
+ "command_prefix": "/ged:",
28
+ "selection_flags": ["--gemini", "--gemini-cli"],
29
+ "selection_aliases": ["gemini", "gemini cli"],
30
+ "managed_install_surface": {
31
+ "nested_command_dir": "commands/ged"
32
+ },
33
+ "global_config": {
34
+ "env_var": "GEMINI_CONFIG_DIR",
35
+ "home_subpath": ".gemini"
36
+ }
37
+ },
38
+ {
39
+ "runtime_name": "codex",
40
+ "display_name": "Codex",
41
+ "priority": 30,
42
+ "config_dir_name": ".codex",
43
+ "install_flag": "--codex",
44
+ "launch_command": "codex",
45
+ "command_prefix": "$ged-",
46
+ "selection_flags": ["--codex"],
47
+ "selection_aliases": ["codex"],
48
+ "managed_install_surface": {
49
+ "skill_dir": "skills",
50
+ "skill_prefix": "ged-"
51
+ },
52
+ "global_config": {
53
+ "env_var": "CODEX_CONFIG_DIR",
54
+ "home_subpath": ".codex"
55
+ }
56
+ },
57
+ {
58
+ "runtime_name": "opencode",
59
+ "display_name": "OpenCode",
60
+ "priority": 40,
61
+ "config_dir_name": ".opencode",
62
+ "install_flag": "--opencode",
63
+ "launch_command": "opencode",
64
+ "command_prefix": "/ged-",
65
+ "selection_flags": ["--opencode"],
66
+ "selection_aliases": ["opencode", "open code"],
67
+ "managed_install_surface": {
68
+ "flat_command_dir": "command",
69
+ "file_prefix": "ged-"
70
+ },
71
+ "global_config": {
72
+ "env_var": "OPENCODE_CONFIG_DIR",
73
+ "home_subpath": ".config/opencode"
74
+ }
75
+ }
76
+ ]