forge-autonomy 2.3.1__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 (261) hide show
  1. forge_autonomy-2.3.1/MANIFEST.in +8 -0
  2. forge_autonomy-2.3.1/PKG-INFO +474 -0
  3. forge_autonomy-2.3.1/README.md +457 -0
  4. forge_autonomy-2.3.1/forge/__init__.py +35 -0
  5. forge_autonomy-2.3.1/forge/__main__.py +20 -0
  6. forge_autonomy-2.3.1/forge/_version.py +38 -0
  7. forge_autonomy-2.3.1/forge/action_derivation_canary_closure.py +129 -0
  8. forge_autonomy-2.3.1/forge/action_derivation_evidence.py +101 -0
  9. forge_autonomy-2.3.1/forge/action_derivation_qualification.py +71 -0
  10. forge_autonomy-2.3.1/forge/action_derivation_reattempt.py +113 -0
  11. forge_autonomy-2.3.1/forge/ai_architect/__init__.py +5 -0
  12. forge_autonomy-2.3.1/forge/ai_architect/provider_registry.py +82 -0
  13. forge_autonomy-2.3.1/forge/architecture/__init__.py +8 -0
  14. forge_autonomy-2.3.1/forge/architecture/advisor.py +37 -0
  15. forge_autonomy-2.3.1/forge/architecture/presentation.py +21 -0
  16. forge_autonomy-2.3.1/forge/architecture/workspace.py +169 -0
  17. forge_autonomy-2.3.1/forge/autonomous_orchestrator.py +201 -0
  18. forge_autonomy-2.3.1/forge/business/__init__.py +9 -0
  19. forge_autonomy-2.3.1/forge/business/advisor.py +44 -0
  20. forge_autonomy-2.3.1/forge/business/ingress.py +186 -0
  21. forge_autonomy-2.3.1/forge/business/presentation.py +74 -0
  22. forge_autonomy-2.3.1/forge/business/workspace.py +141 -0
  23. forge_autonomy-2.3.1/forge/canary.py +134 -0
  24. forge_autonomy-2.3.1/forge/capabilities/__init__.py +11 -0
  25. forge_autonomy-2.3.1/forge/capabilities/delegation.py +150 -0
  26. forge_autonomy-2.3.1/forge/completion/__init__.py +5 -0
  27. forge_autonomy-2.3.1/forge/completion/assessor.py +53 -0
  28. forge_autonomy-2.3.1/forge/constitutional/__init__.py +5 -0
  29. forge_autonomy-2.3.1/forge/constitutional/assessor.py +38 -0
  30. forge_autonomy-2.3.1/forge/core/__init__.py +5 -0
  31. forge_autonomy-2.3.1/forge/core/json_store.py +24 -0
  32. forge_autonomy-2.3.1/forge/decision_evidence/__init__.py +5 -0
  33. forge_autonomy-2.3.1/forge/decision_evidence/repository.py +68 -0
  34. forge_autonomy-2.3.1/forge/dispatcher/__init__.py +13 -0
  35. forge_autonomy-2.3.1/forge/dispatcher/dispatcher.py +194 -0
  36. forge_autonomy-2.3.1/forge/execution/__init__.py +13 -0
  37. forge_autonomy-2.3.1/forge/execution/loop.py +346 -0
  38. forge_autonomy-2.3.1/forge/execution/presentation.py +14 -0
  39. forge_autonomy-2.3.1/forge/foundation/__init__.py +10 -0
  40. forge_autonomy-2.3.1/forge/foundation/loader.py +378 -0
  41. forge_autonomy-2.3.1/forge/generation_two.py +89 -0
  42. forge_autonomy-2.3.1/forge/generation_two_execution.py +179 -0
  43. forge_autonomy-2.3.1/forge/governance/__init__.py +26 -0
  44. forge_autonomy-2.3.1/forge/governance/execution_policy.py +83 -0
  45. forge_autonomy-2.3.1/forge/governance/profiles.py +93 -0
  46. forge_autonomy-2.3.1/forge/governance_authority.py +199 -0
  47. forge_autonomy-2.3.1/forge/intake.py +136 -0
  48. forge_autonomy-2.3.1/forge/integration/__init__.py +7 -0
  49. forge_autonomy-2.3.1/forge/integration/coordinator.py +100 -0
  50. forge_autonomy-2.3.1/forge/integration/repository.py +54 -0
  51. forge_autonomy-2.3.1/forge/knowledge/__init__.py +6 -0
  52. forge_autonomy-2.3.1/forge/knowledge/consumer.py +39 -0
  53. forge_autonomy-2.3.1/forge/knowledge/registry.py +65 -0
  54. forge_autonomy-2.3.1/forge/lifecycle/__init__.py +17 -0
  55. forge_autonomy-2.3.1/forge/lifecycle/store.py +445 -0
  56. forge_autonomy-2.3.1/forge/mission_amendment.py +35 -0
  57. forge_autonomy-2.3.1/forge/mission_scheduler.py +264 -0
  58. forge_autonomy-2.3.1/forge/models/__init__.py +561 -0
  59. forge_autonomy-2.3.1/forge/models/action.py +53 -0
  60. forge_autonomy-2.3.1/forge/models/action_derivation.py +284 -0
  61. forge_autonomy-2.3.1/forge/models/agent_policy.py +252 -0
  62. forge_autonomy-2.3.1/forge/models/ai_architect_provider.py +230 -0
  63. forge_autonomy-2.3.1/forge/models/ai_architect_session.py +147 -0
  64. forge_autonomy-2.3.1/forge/models/ai_provider_registry.py +140 -0
  65. forge_autonomy-2.3.1/forge/models/architecture_mission.py +113 -0
  66. forge_autonomy-2.3.1/forge/models/architecture_reasoning.py +257 -0
  67. forge_autonomy-2.3.1/forge/models/architecture_review.py +232 -0
  68. forge_autonomy-2.3.1/forge/models/codex_runtime_prompt.py +227 -0
  69. forge_autonomy-2.3.1/forge/models/constitutional_validation.py +109 -0
  70. forge_autonomy-2.3.1/forge/models/decision_evidence.py +202 -0
  71. forge_autonomy-2.3.1/forge/models/execution_host.py +289 -0
  72. forge_autonomy-2.3.1/forge/models/foundation.py +192 -0
  73. forge_autonomy-2.3.1/forge/models/historical_intent.py +212 -0
  74. forge_autonomy-2.3.1/forge/models/integration.py +173 -0
  75. forge_autonomy-2.3.1/forge/models/intent.py +265 -0
  76. forge_autonomy-2.3.1/forge/models/intent_authoring.py +119 -0
  77. forge_autonomy-2.3.1/forge/models/mission.py +301 -0
  78. forge_autonomy-2.3.1/forge/models/mission_candidate.py +108 -0
  79. forge_autonomy-2.3.1/forge/models/mission_planner.py +219 -0
  80. forge_autonomy-2.3.1/forge/models/mission_recommendation.py +222 -0
  81. forge_autonomy-2.3.1/forge/models/phase_completion.py +162 -0
  82. forge_autonomy-2.3.1/forge/models/planning.py +162 -0
  83. forge_autonomy-2.3.1/forge/models/producer.py +164 -0
  84. forge_autonomy-2.3.1/forge/models/prompt_artifact.py +234 -0
  85. forge_autonomy-2.3.1/forge/models/proposal.py +148 -0
  86. forge_autonomy-2.3.1/forge/models/runtime_prompt.py +245 -0
  87. forge_autonomy-2.3.1/forge/models/solution_template.py +64 -0
  88. forge_autonomy-2.3.1/forge/operator_identity.py +135 -0
  89. forge_autonomy-2.3.1/forge/planner/__init__.py +28 -0
  90. forge_autonomy-2.3.1/forge/planner/action_derivation.py +265 -0
  91. forge_autonomy-2.3.1/forge/planner/engine.py +49 -0
  92. forge_autonomy-2.3.1/forge/planner/openai_responses.py +660 -0
  93. forge_autonomy-2.3.1/forge/planner/provider_adapter.py +81 -0
  94. forge_autonomy-2.3.1/forge/planning/__init__.py +6 -0
  95. forge_autonomy-2.3.1/forge/planning/loader.py +232 -0
  96. forge_autonomy-2.3.1/forge/planning/registry.py +38 -0
  97. forge_autonomy-2.3.1/forge/portfolio_intelligence.py +110 -0
  98. forge_autonomy-2.3.1/forge/programme_authorization.py +194 -0
  99. forge_autonomy-2.3.1/forge/prompts/__init__.py +6 -0
  100. forge_autonomy-2.3.1/forge/prompts/codex_cli.py +121 -0
  101. forge_autonomy-2.3.1/forge/prompts/generator.py +106 -0
  102. forge_autonomy-2.3.1/forge/proposals/__init__.py +5 -0
  103. forge_autonomy-2.3.1/forge/proposals/generator.py +90 -0
  104. forge_autonomy-2.3.1/forge/provider_security.py +210 -0
  105. forge_autonomy-2.3.1/forge/qualification/__init__.py +13 -0
  106. forge_autonomy-2.3.1/forge/qualification/bootstrap_sequence.py +266 -0
  107. forge_autonomy-2.3.1/forge/qualification/generation_one.py +103 -0
  108. forge_autonomy-2.3.1/forge/qualification/installed_smoke.py +29 -0
  109. forge_autonomy-2.3.1/forge/recommendations/__init__.py +5 -0
  110. forge_autonomy-2.3.1/forge/recommendations/engine.py +113 -0
  111. forge_autonomy-2.3.1/forge/repository_truth.py +105 -0
  112. forge_autonomy-2.3.1/forge/review/__init__.py +5 -0
  113. forge_autonomy-2.3.1/forge/review/engine.py +80 -0
  114. forge_autonomy-2.3.1/forge/runtime/__init__.py +34 -0
  115. forge_autonomy-2.3.1/forge/runtime/bootstrap.py +360 -0
  116. forge_autonomy-2.3.1/forge/runtime/database.py +2191 -0
  117. forge_autonomy-2.3.1/forge/runtime/evidence.py +355 -0
  118. forge_autonomy-2.3.1/forge/runtime/execution_context.py +173 -0
  119. forge_autonomy-2.3.1/forge/runtime/runner.py +402 -0
  120. forge_autonomy-2.3.1/forge/runtime/service.py +127 -0
  121. forge_autonomy-2.3.1/forge/scheduler/__init__.py +7 -0
  122. forge_autonomy-2.3.1/forge/scheduler/adapter.py +245 -0
  123. forge_autonomy-2.3.1/forge/scheduler/ep_http_adapter.py +231 -0
  124. forge_autonomy-2.3.1/forge/scheduler/ep_v12.py +182 -0
  125. forge_autonomy-2.3.1/forge/scheduler/scheduler.py +180 -0
  126. forge_autonomy-2.3.1/forge/schemas/capability-registry-1.0.schema.json +23 -0
  127. forge_autonomy-2.3.1/forge/schemas/capability.schema.json +17 -0
  128. forge_autonomy-2.3.1/forge/schemas/common.schema.json +9 -0
  129. forge_autonomy-2.3.1/forge/schemas/decision-evidence-1.0.schema.json +20 -0
  130. forge_autonomy-2.3.1/forge/schemas/engineering-goal-0.5.schema.json +16 -0
  131. forge_autonomy-2.3.1/forge/schemas/engineering-increment-proposal-0.5.schema.json +20 -0
  132. forge_autonomy-2.3.1/forge/schemas/engineering-mode.schema.json +8 -0
  133. forge_autonomy-2.3.1/forge/schemas/engineering-plan-0.5.schema.json +29 -0
  134. forge_autonomy-2.3.1/forge/schemas/engineering-prompt-artifact-0.7.schema.json +26 -0
  135. forge_autonomy-2.3.1/forge/schemas/engineering-proposal-0.6.schema.json +75 -0
  136. forge_autonomy-2.3.1/forge/schemas/evidence-reference-0.5.schema.json +16 -0
  137. forge_autonomy-2.3.1/forge/schemas/foundation-document.schema.json +26 -0
  138. forge_autonomy-2.3.1/forge/schemas/governance-profile.schema.json +8 -0
  139. forge_autonomy-2.3.1/forge/schemas/knowledge-source-0.4.schema.json +23 -0
  140. forge_autonomy-2.3.1/forge/schemas/knowledge-source.schema.json +18 -0
  141. forge_autonomy-2.3.1/forge/schemas/mission-candidate-1.0.schema.json +27 -0
  142. forge_autonomy-2.3.1/forge/schemas/mission-candidate-1.1.schema.json +15 -0
  143. forge_autonomy-2.3.1/forge/schemas/phase-completion-1.0.schema.json +60 -0
  144. forge_autonomy-2.3.1/forge/schemas/planning-document-0.5.schema.json +17 -0
  145. forge_autonomy-2.3.1/forge/schemas/repository-catalog.schema.json +24 -0
  146. forge_autonomy-2.3.1/forge/schemas/repository.schema.json +18 -0
  147. forge_autonomy-2.3.1/forge/schemas/solution-template-1.0.schema.json +14 -0
  148. forge_autonomy-2.3.1/forge/schemas/workspace.schema.json +18 -0
  149. forge_autonomy-2.3.1/forge/solutions/__init__.py +6 -0
  150. forge_autonomy-2.3.1/forge/solutions/catalogue.py +54 -0
  151. forge_autonomy-2.3.1/forge/solutions/generator.py +64 -0
  152. forge_autonomy-2.3.1/forge/state/__init__.py +19 -0
  153. forge_autonomy-2.3.1/forge/state/mission_state.py +429 -0
  154. forge_autonomy-2.3.1/forge/workspace/__init__.py +1 -0
  155. forge_autonomy-2.3.1/forge_autonomy.egg-info/PKG-INFO +474 -0
  156. forge_autonomy-2.3.1/forge_autonomy.egg-info/SOURCES.txt +259 -0
  157. forge_autonomy-2.3.1/forge_autonomy.egg-info/dependency_links.txt +1 -0
  158. forge_autonomy-2.3.1/forge_autonomy.egg-info/entry_points.txt +2 -0
  159. forge_autonomy-2.3.1/forge_autonomy.egg-info/top_level.txt +1 -0
  160. forge_autonomy-2.3.1/product-version.json +5 -0
  161. forge_autonomy-2.3.1/pyproject.toml +41 -0
  162. forge_autonomy-2.3.1/schemas/capability-registry-1.0.schema.json +23 -0
  163. forge_autonomy-2.3.1/schemas/capability.schema.json +17 -0
  164. forge_autonomy-2.3.1/schemas/common.schema.json +9 -0
  165. forge_autonomy-2.3.1/schemas/decision-evidence-1.0.schema.json +20 -0
  166. forge_autonomy-2.3.1/schemas/engineering-goal-0.5.schema.json +16 -0
  167. forge_autonomy-2.3.1/schemas/engineering-increment-proposal-0.5.schema.json +20 -0
  168. forge_autonomy-2.3.1/schemas/engineering-mode.schema.json +8 -0
  169. forge_autonomy-2.3.1/schemas/engineering-plan-0.5.schema.json +29 -0
  170. forge_autonomy-2.3.1/schemas/engineering-prompt-artifact-0.7.schema.json +26 -0
  171. forge_autonomy-2.3.1/schemas/engineering-proposal-0.6.schema.json +75 -0
  172. forge_autonomy-2.3.1/schemas/evidence-reference-0.5.schema.json +16 -0
  173. forge_autonomy-2.3.1/schemas/foundation-document.schema.json +26 -0
  174. forge_autonomy-2.3.1/schemas/governance-profile.schema.json +8 -0
  175. forge_autonomy-2.3.1/schemas/knowledge-source-0.4.schema.json +23 -0
  176. forge_autonomy-2.3.1/schemas/knowledge-source.schema.json +18 -0
  177. forge_autonomy-2.3.1/schemas/mission-candidate-1.0.schema.json +27 -0
  178. forge_autonomy-2.3.1/schemas/mission-candidate-1.1.schema.json +15 -0
  179. forge_autonomy-2.3.1/schemas/phase-completion-1.0.schema.json +60 -0
  180. forge_autonomy-2.3.1/schemas/planning-document-0.5.schema.json +17 -0
  181. forge_autonomy-2.3.1/schemas/repository-catalog.schema.json +24 -0
  182. forge_autonomy-2.3.1/schemas/repository.schema.json +18 -0
  183. forge_autonomy-2.3.1/schemas/solution-template-1.0.schema.json +14 -0
  184. forge_autonomy-2.3.1/schemas/workspace.schema.json +18 -0
  185. forge_autonomy-2.3.1/setup.cfg +4 -0
  186. forge_autonomy-2.3.1/tests/test_action_derivation.py +158 -0
  187. forge_autonomy-2.3.1/tests/test_action_derivation_canary_closure.py +238 -0
  188. forge_autonomy-2.3.1/tests/test_action_derivation_evidence.py +183 -0
  189. forge_autonomy-2.3.1/tests/test_action_derivation_qualification.py +39 -0
  190. forge_autonomy-2.3.1/tests/test_agent_policy.py +90 -0
  191. forge_autonomy-2.3.1/tests/test_ai_architect_provider.py +77 -0
  192. forge_autonomy-2.3.1/tests/test_ai_architect_session.py +101 -0
  193. forge_autonomy-2.3.1/tests/test_ai_development_projection.py +80 -0
  194. forge_autonomy-2.3.1/tests/test_ai_provider_registry.py +87 -0
  195. forge_autonomy-2.3.1/tests/test_architecture_reasoning.py +80 -0
  196. forge_autonomy-2.3.1/tests/test_architecture_review_engine.py +69 -0
  197. forge_autonomy-2.3.1/tests/test_architecture_workspace.py +114 -0
  198. forge_autonomy-2.3.1/tests/test_autonomous_orchestrator.py +57 -0
  199. forge_autonomy-2.3.1/tests/test_bootstrap_adapter.py +156 -0
  200. forge_autonomy-2.3.1/tests/test_bootstrap_mission_canary.py +28 -0
  201. forge_autonomy-2.3.1/tests/test_bootstrap_mission_runner.py +269 -0
  202. forge_autonomy-2.3.1/tests/test_bootstrap_mission_scheduler.py +134 -0
  203. forge_autonomy-2.3.1/tests/test_bootstrap_sequence_qualification.py +114 -0
  204. forge_autonomy-2.3.1/tests/test_business_governance_ingress.py +98 -0
  205. forge_autonomy-2.3.1/tests/test_business_workspace.py +117 -0
  206. forge_autonomy-2.3.1/tests/test_capability_delegation.py +31 -0
  207. forge_autonomy-2.3.1/tests/test_codex_cli_runtime_prompt.py +120 -0
  208. forge_autonomy-2.3.1/tests/test_constitutional_validation.py +67 -0
  209. forge_autonomy-2.3.1/tests/test_decision_evidence.py +118 -0
  210. forge_autonomy-2.3.1/tests/test_default_project_quality_policy.py +44 -0
  211. forge_autonomy-2.3.1/tests/test_distribution_identity.py +42 -0
  212. forge_autonomy-2.3.1/tests/test_engineering_action_architecture.py +37 -0
  213. forge_autonomy-2.3.1/tests/test_engineering_intent_authoring.py +76 -0
  214. forge_autonomy-2.3.1/tests/test_engineering_intent_lifecycle.py +137 -0
  215. forge_autonomy-2.3.1/tests/test_engineering_mission.py +133 -0
  216. forge_autonomy-2.3.1/tests/test_engineering_planning.py +87 -0
  217. forge_autonomy-2.3.1/tests/test_engineering_prompt_artifacts.py +74 -0
  218. forge_autonomy-2.3.1/tests/test_engineering_proposals.py +92 -0
  219. forge_autonomy-2.3.1/tests/test_ep_http_adapter.py +183 -0
  220. forge_autonomy-2.3.1/tests/test_execution_context.py +107 -0
  221. forge_autonomy-2.3.1/tests/test_execution_host_contract.py +105 -0
  222. forge_autonomy-2.3.1/tests/test_execution_loop.py +221 -0
  223. forge_autonomy-2.3.1/tests/test_forge_v1_bootstrap_scheduler_contract.py +51 -0
  224. forge_autonomy-2.3.1/tests/test_forge_v1_implementation_dag.py +47 -0
  225. forge_autonomy-2.3.1/tests/test_foundation_loader.py +101 -0
  226. forge_autonomy-2.3.1/tests/test_foundation_models.py +72 -0
  227. forge_autonomy-2.3.1/tests/test_generation_one_bootstrap_qualification.py +61 -0
  228. forge_autonomy-2.3.1/tests/test_generation_two_execution.py +44 -0
  229. forge_autonomy-2.3.1/tests/test_generation_two_mission_intake.py +45 -0
  230. forge_autonomy-2.3.1/tests/test_governance_authority.py +388 -0
  231. forge_autonomy-2.3.1/tests/test_governed_coverage.py +104 -0
  232. forge_autonomy-2.3.1/tests/test_historical_engineering_intent.py +83 -0
  233. forge_autonomy-2.3.1/tests/test_integration_coordination.py +69 -0
  234. forge_autonomy-2.3.1/tests/test_knowledge_consumption.py +52 -0
  235. forge_autonomy-2.3.1/tests/test_mission_dispatcher.py +89 -0
  236. forge_autonomy-2.3.1/tests/test_mission_planner.py +100 -0
  237. forge_autonomy-2.3.1/tests/test_mission_recommendation_engine.py +110 -0
  238. forge_autonomy-2.3.1/tests/test_mission_recommendation_lifecycle.py +63 -0
  239. forge_autonomy-2.3.1/tests/test_mission_runtime_projection.py +87 -0
  240. forge_autonomy-2.3.1/tests/test_mission_runtime_scheduler.py +73 -0
  241. forge_autonomy-2.3.1/tests/test_mission_state_store.py +165 -0
  242. forge_autonomy-2.3.1/tests/test_openai_action_derivation.py +342 -0
  243. forge_autonomy-2.3.1/tests/test_operator_identity.py +91 -0
  244. forge_autonomy-2.3.1/tests/test_phase_completion.py +61 -0
  245. forge_autonomy-2.3.1/tests/test_platform_contract_documents.py +41 -0
  246. forge_autonomy-2.3.1/tests/test_portfolio_intelligence_operation.py +110 -0
  247. forge_autonomy-2.3.1/tests/test_producer_contract.py +69 -0
  248. forge_autonomy-2.3.1/tests/test_product_version_operations.py +104 -0
  249. forge_autonomy-2.3.1/tests/test_productization_reconciliation.py +72 -0
  250. forge_autonomy-2.3.1/tests/test_programme_authorization.py +67 -0
  251. forge_autonomy-2.3.1/tests/test_provider_security.py +102 -0
  252. forge_autonomy-2.3.1/tests/test_repository_truth.py +44 -0
  253. forge_autonomy-2.3.1/tests/test_runtime_bootstrap.py +96 -0
  254. forge_autonomy-2.3.1/tests/test_runtime_database.py +349 -0
  255. forge_autonomy-2.3.1/tests/test_runtime_evidence.py +59 -0
  256. forge_autonomy-2.3.1/tests/test_runtime_instance_persistence.py +127 -0
  257. forge_autonomy-2.3.1/tests/test_runtime_prompt_generation.py +142 -0
  258. forge_autonomy-2.3.1/tests/test_runtime_service.py +95 -0
  259. forge_autonomy-2.3.1/tests/test_scheduler_dependency_boundary.py +22 -0
  260. forge_autonomy-2.3.1/tests/test_schemas.py +95 -0
  261. forge_autonomy-2.3.1/tests/test_solution_templates.py +58 -0
@@ -0,0 +1,8 @@
1
+ include product-version.json
2
+ recursive-include schemas *.json
3
+ recursive-include forge/schemas *.json
4
+ global-exclude *.py[cod] .DS_Store
5
+ prune .engineering
6
+ prune .forge
7
+ prune dist
8
+ prune build
@@ -0,0 +1,474 @@
1
+ Metadata-Version: 2.4
2
+ Name: forge-autonomy
3
+ Version: 2.3.1
4
+ Summary: Forge mission planning, producer contracts, and evidence interpretation runtime.
5
+ Author: Forge maintainers
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/pcvantol/forge
8
+ Project-URL: Repository, https://github.com/pcvantol/forge
9
+ Project-URL: Issues, https://github.com/pcvantol/forge/issues
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3 :: Only
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Requires-Python: >=3.11
16
+ Description-Content-Type: text/markdown
17
+
18
+ # Forge
19
+
20
+ ## Python distribution
21
+
22
+ Forge is published to PyPI as **`forge-autonomy`**. Its Python import package
23
+ and command are deliberately distinct from the distribution name:
24
+
25
+ ```text
26
+ pip install forge-autonomy
27
+ import forge
28
+ forge --version
29
+ ```
30
+
31
+ `product-version.json` is the sole version authority. Build and release
32
+ qualification verify that its value equals the wheel metadata and installed
33
+ CLI version; a package build never allocates or changes a version.
34
+
35
+ ## Managed repository status
36
+
37
+ Forge is the first-class repository [`pcvantol/forge`](https://github.com/pcvantol/forge),
38
+ promoted with its complete Genesis ancestry preserved. Its current repository
39
+ governance baseline is documented in [Managed Repository Baseline](docs/governance/managed-repository-baseline.md)
40
+ and its source-history record in [Forge Genesis Provenance](FORGE_GENESIS_PROVENANCE.md).
41
+
42
+ Start a new development session with [BOOTSTRAP.md](BOOTSTRAP.md), then
43
+ [ENGINEERING_METHOD.md](ENGINEERING_METHOD.md), [PROMPT_INITIALIZATION.md](PROMPT_INITIALIZATION.md),
44
+ and [AGENTS.md](AGENTS.md). Use [HANDOFF.md](HANDOFF.md) for the local
45
+ handoff navigation. Run local validation with:
46
+
47
+ ```text
48
+ bash scripts/validate.sh
49
+ ```
50
+
51
+ Forge remains independent of Engineering Platform, which is a replaceable
52
+ Execution Host; Forge and Workspace are first-class peers. The canonical
53
+ architecture entrypoint is the [Founding Architecture Handbook](docs/architecture/FORGE_FOUNDING_ARCHITECTURE_HANDBOOK.md).
54
+ Roadmap entrypoints are [Bootstrap Roadmap](knowledge/bootstrap/10_ROADMAP.md)
55
+ and [Runtime Evolution Roadmap](docs/architecture/runtime-evolution-roadmap.md).
56
+
57
+ Phase E — Increment 5.14 formally completes Generation 1 and makes Generation
58
+ 2 ready. The [Generation 1 Completion Record](GENERATION_1_COMPLETION.md)
59
+ establishes that `MISSION-0001` through `MISSION-0005` are historical Portfolio
60
+ Seed Missions, never reconstructed as Runtime Instance state. The Runtime
61
+ Instance is operational and intentionally empty, its Dispatcher is `IDLE`, and
62
+ its Approved Mission Queue is empty until the first Business- and
63
+ Architecture-approved Generation 2 Mission. The next architectural increment
64
+ is [Portfolio Intelligence Foundation](docs/architecture/generation-1-transition.md).
65
+
66
+ Forge is a local-first, AI-native engineering platform foundation. It gives an
67
+ engineering workspace a small, explicit vocabulary before it gains automation:
68
+ the workspace it operates in, the repositories it knows, and the human
69
+ governance that constrains its work.
70
+
71
+ Generation 2 also provides a canonical, read-only [Execution Context
72
+ projection](docs/architecture/runtime-database.md#execution-context-projection).
73
+ It is an immutable Runtime Instance snapshot of the active Mission's
74
+ operator-facing state, derived after Runtime reconciliation rather than from
75
+ repository source. It is safe for Engineering Platform, Apple, Windows, CLI,
76
+ API and future-client projections because it excludes prompts, hidden
77
+ reasoning and Execution Host internals.
78
+
79
+ Phase E — Increment 5.10 qualifies Generation 1 only from a resolved,
80
+ persistent Runtime Instance. The read-only projection derives its portfolio,
81
+ global lifecycle order, completion state, and receipt identities from runtime
82
+ records; it neither imports a dispatcher portfolio nor reconstructs state from
83
+ repository files. Engineering Platform remains the sole owner of Execution
84
+ Evidence and Forge retains only immutable receipt references. A successful
85
+ qualification recommends the Generation 1 Completion Record.
86
+
87
+ Phase E — Increment 5.9 adds [Runtime Instance Persistence](docs/architecture/runtime-bootstrap.md).
88
+ Forge now resolves one persistent Runtime Instance through a location-independent Git Repository Identity and a durable fail-closed registry. Runtime recovery preserves Runtime Identity across independent executions, restarts, cleanup, relocations, branches, and worktrees; the Runtime Database remains storage only.
89
+
90
+ Phase F — Increment 6.0 adds the [Integration Coordination Framework](docs/architecture/integration-coordination-framework.md).
91
+ Forge now owns deterministic integration readiness, conflict events, immutable
92
+ integration evidence, and Mission pause/resume state independently from the
93
+ Execution Host. The next architectural increment is Parallel Mission Execution.
94
+
95
+ Phase E — Increment 5.7 adds [Generation 1 Bootstrap Qualification](docs/architecture/bootstrap-mission-sequence-qualification.md).
96
+ Forge projects an already persisted Runtime Database through a read-only qualification boundary. It never reconstructs a portfolio from repository files, dispatches work, or copies Engineering Platform evidence while qualifying Generation 1.
97
+
98
+ Phase E — Increment 5.6 adds [Runtime Bootstrap, Location Resolution and Evidence Recovery](docs/architecture/runtime-bootstrap.md).
99
+ Forge now deterministically resolves one canonical Runtime Database with an immutable Runtime Identity, fails closed on ambiguity or integrity errors, and recovers operational state only from persisted runtime records.
100
+
101
+ Phase E — Increment 5.5 adds the [Capability Delegation Framework](docs/architecture/capability-delegation-framework.md).
102
+ Forge now assesses a required capability before an Engineering Action executes,
103
+ pauses durably when internal execution is unavailable, delegates only the
104
+ bounded Action, verifies the external result, and continues its Mission without
105
+ transferring ownership or bypassing governance.
106
+
107
+ ## Bootstrap Phase A — complete
108
+
109
+ Bootstrap Phase A is complete. Forge currently provides a deterministic,
110
+ local-only foundation through 0.8, including the repaired Foundation Document
111
+ Loader, Engineering Proposal Generator, and Engineering Prompt Artifact
112
+ foundation. The closure record is the
113
+ [Bootstrap Milestone A Report](docs/reports/bootstrap-milestone-a.md).
114
+
115
+ ## Current scope
116
+
117
+ Forge 0.2 defines a versioned Foundation Model. It includes:
118
+
119
+ - separate Workspace, Repository, Repository Catalog, Knowledge Source, and
120
+ Capability contracts;
121
+ - a legacy bootstrap Engineering Mode and Governance Profile value catalog;
122
+ - bootstrap activation of `prototype` and the persisted `solo` legacy value;
123
+ - deterministic, human-readable local JSON persistence; and
124
+ - versioned JSON Schemas, an example, architecture records, and tests.
125
+
126
+ Forge 0.3 additionally loads one versioned Foundation Document through a
127
+ strictly local pipeline: version detection, packaged-schema resolution,
128
+ validation, immutable model construction, cross-reference checks, and a
129
+ deterministic validation report. It does not fetch schemas or follow document
130
+ supplied `$schema` values.
131
+
132
+ Forge 0.4 adds a local Knowledge Source Registry and a deterministic,
133
+ metadata-only consumption interface. Registered sources declare their version,
134
+ reference, trust classification, lifecycle, and mandatory read-only access
135
+ mode. Consumption returns source evidence references only; it performs no
136
+ source extraction, semantic retrieval, LLM call, or mutation.
137
+
138
+ Forge 0.5 adds Engineering Planning Foundation: versioned, local contracts
139
+ for Goals, Increment Proposals, Plans, dependencies, risk, rationale, and
140
+ typed evidence references. The planning loader and registry validate and
141
+ persist declarations only. Plans do not retrieve knowledge, approve work,
142
+ operate repositories, execute tools, or create commits.
143
+
144
+ Forge 0.6 adds deterministic Engineering Proposal generation. It transforms
145
+ validated planning context into a separate, traceable proposal artifact with
146
+ structured scope, rationale, dependencies, risk, evidence, and lifecycle.
147
+ Generation always produces `DRAFT`; explicit lifecycle changes remain local
148
+ state transitions and never execute work or grant approval.
149
+
150
+ Forge 0.7 adds a deterministic Engineering Prompt Artifact layer. It converts
151
+ an approved proposal into a versioned, provider-independent instruction draft
152
+ with context, objective, scope, typed evidence, constraints, and validation
153
+ requirements. The artifact lifecycle is `DRAFT` then `READY`; ready remains an
154
+ instruction only and never invokes a provider or operates a repository. See
155
+ [Engineering Prompt Artifact Foundation 0.7](docs/architecture/engineering-prompt-artifacts.md)
156
+ and [the example](examples/engineering-prompt-artifact.example.json).
157
+
158
+ Forge 0.8 introduces Engineering Intent as the canonical, model-independent
159
+ architecture concept for bounded engineering work. An intent defines context,
160
+ goal, architecture decisions, scope, constraints, deliverables, validation,
161
+ and expected evidence. Runtime Prompts are temporary, provider-specific
162
+ representations derived from an intent; they are not the canonical source of
163
+ truth. This increment is documentation-only: it adds no intent storage,
164
+ prompt generator, runtime provider, or execution pipeline. See
165
+ [Engineering Intent Architecture 0.8](docs/architecture/engineering-intent.md).
166
+
167
+ Phase B — Increment 1.0 adds the evidence-only [Phase Completion
168
+ Framework](docs/architecture/phase-completion-framework.md). It assesses a
169
+ declared phase from reproducible references and does not orchestrate work,
170
+ operate repositories, or grant execution authority.
171
+
172
+ Phase B — Increment 1.1 adds the local [Constitutional Validation
173
+ Framework](docs/architecture/constitutional-validation-framework.md). It
174
+ assesses declared architecture against applicable constitutional articles with
175
+ deterministic findings, but does not retrieve repository knowledge, enforce a
176
+ result, or perform runtime work.
177
+
178
+ Phase B — Increment 1.2 adds the immutable, local [Engineering Intent
179
+ Lifecycle](docs/architecture/engineering-intent-lifecycle.md). It defines
180
+ versioned statuses, typed relationships, reproducible evidence, mandatory
181
+ traceability, and pure lifecycle validation. It neither migrates historical
182
+ work nor implements a provider, execution, queue, or Studio.
183
+
184
+ Phase B — Increment 1.3a adds the immutable,
185
+ evidence-only [Historical Engineering Intent](docs/architecture/historical-engineering-intent.md)
186
+ model. It preserves engineering that predates Intent governance without
187
+ inventing historical proposals or approvals. It performs no bootstrap migration
188
+ and does not modify the normal Engineering Intent lifecycle.
189
+
190
+ Phase B — Increment 1.4 adds [Engineering Intent Authoring](docs/architecture/engineering-intent-authoring.md):
191
+ a deterministic, repository-grounded context for authoring future Intents from
192
+ the Constitution, Architecture Handbook, Roadmap, Engineering History,
193
+ Repository Evidence, Capability Catalogue, and Knowledge Model. It authorizes
194
+ neither an Intent nor runtime activity, and it implements no prompt generation
195
+ or execution.
196
+
197
+ Phase B — Increment 1.5 adds [Architecture Reasoning](docs/architecture/architecture-reasoning.md):
198
+ an immutable, human-governed pre-authoring model from repository knowledge to
199
+ assessment, findings, opportunities, capability and roadmap impact, and a
200
+ traceable handoff into the existing Engineering Proposal process. It performs
201
+ no AI reasoning, autonomous planning, proposal or Intent creation, Runtime,
202
+ or execution.
203
+
204
+ Phase B — Increment 1.6 adds the provider-independent [AI Architect Provider
205
+ Contract](docs/architecture/ai-architect-provider.md): Forge supplies complete,
206
+ versioned repository context and providers return evidence-linked reasoning
207
+ candidates only. It implements no concrete provider, Runtime Provider, prompt
208
+ generation, lifecycle execution, or engineering execution.
209
+
210
+ Phase B — Increment 1.7 adds the
211
+ [AI Provider Registry](docs/architecture/ai-provider-registry.md): immutable
212
+ provider declarations, repository-owned qualification, and deterministic
213
+ selection. It selects a declaration only; it does not implement, load, or
214
+ invoke a provider.
215
+
216
+ Phase B — Increment 1.8 adds the [AI Architect Session](docs/architecture/ai-architect-session.md):
217
+ an immutable, bounded reasoning record that composes complete request context,
218
+ a selected provider declaration, repository snapshot, and advisory output.
219
+ Its lifecycle is human-governed and non-executing; it neither invokes a
220
+ provider nor approves architectural decisions or Engineering Intents.
221
+
222
+ Phase B — Increment 1.9 adds [Runtime Prompt Generation](docs/architecture/runtime-prompt-generation.md):
223
+ an immutable, deterministic derivation of a transient, provider-specific
224
+ Runtime Prompt from an approved Engineering Intent and complete versioned
225
+ context. It defines the provider-neutral section structure and provenance only;
226
+ it implements no provider-specific template or runtime execution.
227
+
228
+ Phase B — Increment 1.10 adds the [Engineering Mission Model](docs/architecture/engineering-mission.md).
229
+ Phase B — Architecture Transition now reconciles that model around
230
+ mission-driven engineering: the Mission is the Architect-approved engineering
231
+ contract, while Engineering Intents are dynamic planning artifacts created and
232
+ reconciled during Mission execution.
233
+
234
+ Phase B — Architecture Correction adds [Engineering Action](docs/architecture/engineering-action.md):
235
+ the smallest intentional executable engineering unit. Missions are strategic
236
+ and contain Intents; Intents are tactical and contain Actions; Actions produce
237
+ provider-specific Runtime Prompts. This reconciliation adds no scheduler,
238
+ Runtime, provider, prompt generator, or execution implementation.
239
+
240
+ Phase B — Increment 2.0 adds the deterministic [Bootstrap Mission
241
+ Scheduler](docs/architecture/bootstrap-mission-scheduler.md). The subsequent
242
+ 2.1 contract reconciliation makes it release one evidence-gated Engineering
243
+ Action at a time only through the canonical Execution Host Contract. Engineering
244
+ Platform 1.5 remains a replaceable bootstrap reference host behind its adapter;
245
+ Forge implements no Runtime, host, queue, provider, background service, or
246
+ autonomous planning.
247
+
248
+ Phase B — Increment 2.1 adds the canonical
249
+ [Execution Host Contract](docs/architecture/execution-host-contract.md).
250
+ Execution Hosts own operational execution, transport, observability,
251
+ qualification, and evidence return; Forge owns engineering reasoning and
252
+ evidence interpretation. Engineering Platform 1.5 is the reference
253
+ implementation during bootstrap, while Forge remains decoupled from it.
254
+
255
+ Phase B — Increment 2.2 adds the durable, versioned
256
+ [Mission State Store](docs/architecture/mission-state-store.md). It owns
257
+ restart-safe Mission execution state, atomic transitions, progress,
258
+ correlation, evidence references, resume data, and immutable history. It adds
259
+ no Mission Runner, daemon, Execution Host, queue, AI planning, Studio, or
260
+ repository operation.
261
+
262
+ Phase C — Increment 3.0 adds the deterministic
263
+ [Bootstrap Mission Runner](docs/architecture/bootstrap-mission-runner.md). It
264
+ coordinates one persisted Mission through the Scheduler, injected Runtime
265
+ Prompt derivation, and canonical Execution Host Contract. It adds no AI
266
+ planning, Execution Host implementation, parallelism, background service, or
267
+ repository operation.
268
+
269
+ Phase C — Increment 3.3 adds the deterministic, immutable
270
+ [Codex CLI Runtime Prompt Renderer](docs/architecture/codex-cli-runtime-prompt-renderer.md).
271
+ It renders one Mission-pinned active Engineering Action into a Codex CLI
272
+ execution artifact with explicit compatibility and correlation metadata. It
273
+ does not plan, invoke Codex, communicate with a host, or execute engineering.
274
+
275
+ Phase C — Increment 3.4 adds the deterministic, configuration-driven
276
+ [Bootstrap Execution Host Adapter](docs/architecture/bootstrap-execution-host-adapter.md).
277
+ It is the only Engineering Platform 1.5-aware component: it admits and
278
+ translates a rendered Runtime Prompt into an Inbox transaction, then returns
279
+ canonical evidence. It neither plans nor executes engineering.
280
+
281
+ Phase C — Increment 3.7 adds the deterministic, evidence-only
282
+ [Mission Recommendation Engine](docs/architecture/mission-recommendation-engine.md).
283
+ It turns Architecture Reviews into immutable advisory Portfolio artefacts with
284
+ confidence, dependencies and explicit missing-discipline detection. It does
285
+ not approve, prioritise, create or execute a Mission; Business approval remains
286
+ mandatory.
287
+
288
+ Phase C — Increment 3.5 adds the deterministic [End-to-End Bootstrap Mission
289
+ Canary](docs/architecture/bootstrap-mission-canary.md). It qualifies one
290
+ approved Mission through Mission Intake, State, Intent, Action, prompt,
291
+ adapter, Engineering Platform 1.5 admission, evidence, and completion.
292
+
293
+ Phase C — Increment 3.6 adds the deterministic
294
+ [Architecture Review Engine](docs/architecture/architecture-review-engine.md).
295
+ It evaluates completed work using allow-listed Repository Truth and Execution
296
+ Evidence only, producing immutable Architecture Reviews. The separate Mission
297
+ Recommendation Engine produces advisory Portfolio Mission Recommendations. It
298
+ neither creates nor approves executable Missions.
299
+
300
+ Forge also has a deterministic, provider-independent [Agent Role and Model
301
+ Selection Policy](docs/architecture/agent-role-model-selection-policy.md). It
302
+ selects Forge-owned role, model and reasoning profiles plus execution
303
+ constraints before Runtime Prompt rendering. Execution Hosts receive only the
304
+ rendered constraints and policy provenance; they never choose models.
305
+
306
+ Phase E — Increment 5.1 adds the immutable, local [Decision Evidence
307
+ Framework](docs/architecture/decision-evidence-framework.md). It records why
308
+ significant planning and governance decisions were made using Repository Truth
309
+ references, explicit confidence provenance, alternatives, constraints and
310
+ outcomes. It does not replace human approval or duplicate Execution Evidence.
311
+
312
+ Phase E — Increment 5.2 adds the canonical local [Forge Runtime
313
+ Database](docs/architecture/runtime-database.md). It owns durable Mission,
314
+ planning, review, recommendation and Decision Evidence runtime state in
315
+ `.forge/runtime.db`, while Repository Truth and Engineering Platform Execution
316
+ Evidence remain independent authorities.
317
+
318
+ Phase E — Increment 5.3 adds [Runtime Evidence](docs/architecture/runtime-evidence.md).
319
+ Qualification, governance, and workspace runtime reports are now projections of
320
+ the Runtime Database; Execution Host Evidence remains external and Repository
321
+ Truth remains architectural authority.
322
+
323
+ Phase C — Architecture Reconciliation adds the canonical
324
+ [Governance Profile Model](docs/architecture/governance-model.md). Solo, Duo,
325
+ Startup, and Enterprise scale the same lifecycle by changing role assignments,
326
+ approval authority, workspace visibility, advisor availability, execution
327
+ permissions, and explicit shortcuts only. It adds no workflow engine, identity
328
+ system, RBAC, UI, or profile-specific operating mode.
329
+
330
+ Phase D — Increment 4.0 adds the local, business-only
331
+ [Business Workspace](docs/architecture/business-workspace.md). It persists and
332
+ lists Mission Candidates, renders advisory Mission Recommendations, supports
333
+ business refinement and auditable approval/rejection/archive decisions, and
334
+ resolves canonical Governance Profiles with legacy read compatibility. It does
335
+ not perform architecture, create a Mission, start engineering, operate a
336
+ repository, or implement a Runtime or UI framework.
337
+
338
+ Phase D — Increment 4.1 adds the local, non-executing
339
+ [Architecture Workspace](docs/architecture/architecture-workspace.md). It
340
+ admits only Business-approved Mission Candidates, refines architecture-owned
341
+ engineering constraints, provides immutable Architecture Advisor guidance, and
342
+ records the distinct approval for engineering. It does not implement Mission
343
+ planning, execution, runtime controls, providers, repository mutation, or a
344
+ UI framework.
345
+
346
+ Phase D — Increment 4.2 adds the deterministic, repository-only
347
+ [AI Mission Planner](docs/architecture/ai-mission-planner.md). It turns an
348
+ engineering-approved Architecture Mission and digest-pinned evidence into
349
+ bounded Engineering Intents and Actions, then continuously replans after
350
+ Mission State and Execution Evidence updates. It neither changes Mission or
351
+ Architecture authority nor performs Runtime or Execution Host work.
352
+
353
+ Phase D — Increment 4.5 added a historical [Bootstrap Mission Sequence
354
+ Qualification](docs/architecture/bootstrap-mission-sequence-qualification.md)
355
+ harness. It remains regression evidence for the bootstrap portfolio only; it
356
+ does not create Runtime Instance state and does not govern Generation 2
357
+ dispatch.
358
+
359
+ Phase D — Increment 4.3 adds the [Approved Mission Dispatcher](docs/architecture/approved-mission-dispatcher.md).
360
+ It activates exactly one Architecture-approved Mission from a persistent,
361
+ deterministic FIFO queue, resumes it safely, and re-evaluates the queue only
362
+ after independently verified completion. It does not plan or execute work.
363
+
364
+ Phase D — Increment 4.4 adds the deterministic
365
+ [Autonomous Mission Execution Loop](docs/architecture/autonomous-mission-execution-loop.md).
366
+ It composes one active approved Mission through planning, single-Action Host
367
+ execution, evidence processing, durable Mission State, explicit recovery and
368
+ completion notifications. Business and Architecture governance remain outside
369
+ the loop; the Execution Host remains independent. See the
370
+ [Execution Loop Report](docs/reports/forge-autonomous-mission-execution-loop-report-001.md).
371
+
372
+ Policy-Driven Mission Execution extends that loop with versioned
373
+ [Execution Policy](docs/architecture/execution-policy.md): continuous, Action,
374
+ Intent, Capability, Mission, and Custom review pauses preserve identical
375
+ planning and Execution Host behaviour. See the
376
+ [Execution Policy Report](docs/reports/forge-execution-policy-report-001.md).
377
+
378
+ Phase E — Increment 5.0 adds the versioned, advisory
379
+ [Solution Template Framework](docs/architecture/solution-template-framework.md).
380
+ It turns reusable solution archetypes into deterministic, editable
381
+ Business-review Mission Candidate drafts while preserving separate Business and
382
+ Architecture approvals. It does not approve, plan, or execute a Mission.
383
+
384
+ The canonical engineering hierarchy and iterative feedback loop are:
385
+
386
+ ```text
387
+ Vision → Architecture → Roadmap → Mission → Mission Planner → Engineering Intent →
388
+ Engineering Action → Runtime Prompt → Execution Host → Repository → Evidence →
389
+ Architecture Review → Mission Recommendation → Portfolio
390
+ ```
391
+
392
+ Prompt Artifact is retained as the compatible transitional execution
393
+ representation introduced during bootstrap. Runtime Prompts are instead
394
+ provider-specific artifacts produced from an Engineering Action.
395
+
396
+ It intentionally does not include a UI, SaaS service, cloud runtime,
397
+ multi-user model, agent runtime, repository mutation engine, or remote
398
+ integration.
399
+
400
+ ## Bootstrap context
401
+
402
+ Forge is a new product and an independent Git repository. It is not a rename,
403
+ migration, or modification of Engineering Platform 1.5. During this bootstrap,
404
+ Engineering Platform 1.5 provides the local Codex CLI execution context only.
405
+ Forge makes no runtime dependency on it.
406
+
407
+ ## Working model
408
+
409
+ Start with the Foundation Model schemas and example:
410
+
411
+ ```text
412
+ schemas/
413
+ +
414
+ examples/foundation.example.json
415
+ ```
416
+
417
+ A Workspace is a software product, not a repository. It references a separate
418
+ Repository Catalog, which assigns exactly one canonical repository and any
419
+ supporting, documentation, or future-capability repositories. Repository
420
+ identity remains independent of its catalog role. The catalog is declarative:
421
+ it does not clone, modify, push, or otherwise operate on repositories.
422
+
423
+ ## Knowledge sources
424
+
425
+ This bootstrap used the AI Platform Engineering Knowledge Base as a read-only
426
+ source of generic principles: certified knowledge authority, traceability,
427
+ metadata, and human-governed lifecycle decisions. DJConnect and Technical Debt
428
+ Engine were observed only as read-only reference implementations for patterns
429
+ such as repository-first operation, explicit scope, evidence, and stable public
430
+ contracts. No product code, product architecture, or domain concepts were
431
+ copied into Forge.
432
+
433
+ The evidence record is in
434
+ [docs/evidence/bootstrap-evidence.md](docs/evidence/bootstrap-evidence.md).
435
+
436
+ ## Knowledge consumption
437
+
438
+ Knowledge sources remain external, versioned evidence providers. Certified
439
+ sources are authoritative; registering a reference or a generated Forge output
440
+ does not make it authoritative knowledge. Forge persists only its own local
441
+ declarations and never modifies a source. See
442
+ [Knowledge Consumption 0.4](docs/architecture/knowledge-consumption.md).
443
+
444
+ ## Engineering planning
445
+
446
+ Planning references Knowledge Sources, evidence records, architecture
447
+ documents, and foundation documents without copying their content. When a
448
+ known source set is supplied, the loader rejects unknown knowledge-source
449
+ references; all processing remains local and deterministic. See
450
+ [Engineering Planning Foundation 0.5](docs/architecture/engineering-planning.md)
451
+ and [the example](examples/planning.example.json).
452
+
453
+ ## Architecture and next direction
454
+
455
+ The canonical [Product Model](docs/architecture/product-model.md) places Forge
456
+ Engineering within a portfolio-driven capability lifecycle. Mission Candidates
457
+ belong to the Business Workspace, Missions require explicit Business Owner and
458
+ Platform Architect approval, and Forge remains autonomous only within an
459
+ approved Mission.
460
+
461
+ The [Forge Constitution](knowledge/bootstrap/01_CONSTITUTION.md) is the
462
+ canonical authority for Forge's permanent engineering principles. It is
463
+ elaborated by [Architecture Principles](docs/architecture/architecture-principles.md),
464
+ [Workspace Readiness](docs/architecture/workspace-readiness.md), and the
465
+ [Bootstrap Knowledge Capture Reports](docs/reports/).
466
+
467
+ With the scheduler now reconciled to the Execution Host Contract, the
468
+ recommended next increment may be a minimal Mission Runner that preserves the
469
+ one-Action, explicit-recovery boundary. Forge still does not provide a concrete
470
+ Runtime Provider, Runtime, queue, Studio, repository operations, or execution.
471
+
472
+ See [docs/architecture/core-concepts.md](docs/architecture/core-concepts.md),
473
+ [docs/architecture/workspace-foundation.md](docs/architecture/workspace-foundation.md),
474
+ and [docs/handoff/forge-bootstrap-increment-002.md](docs/handoff/forge-bootstrap-increment-002.md).