embraion 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 (214) hide show
  1. embraion-0.1.0/AGENTS.md +87 -0
  2. embraion-0.1.0/CHANGELOG.md +23 -0
  3. embraion-0.1.0/LICENSE +21 -0
  4. embraion-0.1.0/PKG-INFO +388 -0
  5. embraion-0.1.0/README.md +373 -0
  6. embraion-0.1.0/TRADEMARKS.md +25 -0
  7. embraion-0.1.0/adapters/README.md +17 -0
  8. embraion-0.1.0/adapters/claude-code/README.md +12 -0
  9. embraion-0.1.0/adapters/claude-code/models.yaml +28 -0
  10. embraion-0.1.0/adapters/claude-code/routes.yaml +21 -0
  11. embraion-0.1.0/adapters/codex/README.md +10 -0
  12. embraion-0.1.0/adapters/codex/models.yaml +56 -0
  13. embraion-0.1.0/adapters/codex/routes.yaml +28 -0
  14. embraion-0.1.0/adapters/copilot/README.md +10 -0
  15. embraion-0.1.0/adapters/copilot/models.yaml +37 -0
  16. embraion-0.1.0/adapters/copilot/routes.yaml +20 -0
  17. embraion-0.1.0/adapters/portable/README.md +17 -0
  18. embraion-0.1.0/adapters/portable/package.yaml +14 -0
  19. embraion-0.1.0/adapters/providers/README.md +18 -0
  20. embraion-0.1.0/adapters/providers/anthropic/models.yaml +45 -0
  21. embraion-0.1.0/adapters/providers/deepseek/models.yaml +41 -0
  22. embraion-0.1.0/adapters/providers/google/models.yaml +30 -0
  23. embraion-0.1.0/adapters/providers/litellm/README.md +7 -0
  24. embraion-0.1.0/adapters/providers/openai/models.yaml +30 -0
  25. embraion-0.1.0/brand/README.md +28 -0
  26. embraion-0.1.0/brand/assets/readme/hero-dark.png +0 -0
  27. embraion-0.1.0/brand/assets/readme/icon-dark-1024.png +0 -0
  28. embraion-0.1.0/brand/copy.yaml +22 -0
  29. embraion-0.1.0/brand/identity.md +31 -0
  30. embraion-0.1.0/brand/voice.md +23 -0
  31. embraion-0.1.0/core/README.md +22 -0
  32. embraion-0.1.0/core/agents/README.md +18 -0
  33. embraion-0.1.0/core/agents/analyst.yaml +23 -0
  34. embraion-0.1.0/core/agents/architect.yaml +25 -0
  35. embraion-0.1.0/core/agents/lead.yaml +25 -0
  36. embraion-0.1.0/core/agents/researcher.yaml +23 -0
  37. embraion-0.1.0/core/agents/reviewer.yaml +22 -0
  38. embraion-0.1.0/core/agents/steward.yaml +25 -0
  39. embraion-0.1.0/core/agents/validator.yaml +26 -0
  40. embraion-0.1.0/core/agents/worker.yaml +23 -0
  41. embraion-0.1.0/core/catalog.yaml +36 -0
  42. embraion-0.1.0/core/knowledge/README.md +10 -0
  43. embraion-0.1.0/core/knowledge/concepts.md +17 -0
  44. embraion-0.1.0/core/knowledge/glossary.md +12 -0
  45. embraion-0.1.0/core/routing/README.md +15 -0
  46. embraion-0.1.0/core/routing/access.yaml +49 -0
  47. embraion-0.1.0/core/routing/complexity.yaml +24 -0
  48. embraion-0.1.0/core/routing/fallback.yaml +8 -0
  49. embraion-0.1.0/core/routing/health.yaml +12 -0
  50. embraion-0.1.0/core/routing/privacy.yaml +14 -0
  51. embraion-0.1.0/core/rules/README.md +21 -0
  52. embraion-0.1.0/core/rules/classification.md +5 -0
  53. embraion-0.1.0/core/rules/compatibility.md +5 -0
  54. embraion-0.1.0/core/rules/evidence.md +5 -0
  55. embraion-0.1.0/core/rules/human-merge.md +5 -0
  56. embraion-0.1.0/core/rules/instructions.md +5 -0
  57. embraion-0.1.0/core/rules/integrations.md +15 -0
  58. embraion-0.1.0/core/rules/learning.md +14 -0
  59. embraion-0.1.0/core/rules/minimum-change.md +5 -0
  60. embraion-0.1.0/core/rules/ownership.md +5 -0
  61. embraion-0.1.0/core/rules/parallelism.md +5 -0
  62. embraion-0.1.0/core/rules/review.md +5 -0
  63. embraion-0.1.0/core/rules/security.md +17 -0
  64. embraion-0.1.0/core/rules/spec-kit.md +7 -0
  65. embraion-0.1.0/core/skills/README.md +20 -0
  66. embraion-0.1.0/core/skills/debugging/SKILL.md +24 -0
  67. embraion-0.1.0/core/skills/implementation/SKILL.md +22 -0
  68. embraion-0.1.0/core/skills/planning/SKILL.md +22 -0
  69. embraion-0.1.0/core/skills/research/SKILL.md +22 -0
  70. embraion-0.1.0/core/skills/review/SKILL.md +22 -0
  71. embraion-0.1.0/core/skills/validation/SKILL.md +22 -0
  72. embraion-0.1.0/core/skills/verification/SKILL.md +22 -0
  73. embraion-0.1.0/core/workflows/README.md +15 -0
  74. embraion-0.1.0/core/workflows/delivery.md +7 -0
  75. embraion-0.1.0/core/workflows/engineering.md +12 -0
  76. embraion-0.1.0/core/workflows/learning.md +18 -0
  77. embraion-0.1.0/core/workflows/review.md +8 -0
  78. embraion-0.1.0/core/workflows/worktree.md +7 -0
  79. embraion-0.1.0/docs/README.md +26 -0
  80. embraion-0.1.0/docs/architecture.md +32 -0
  81. embraion-0.1.0/docs/capability-model.md +16 -0
  82. embraion-0.1.0/docs/extraction-plan.md +15 -0
  83. embraion-0.1.0/docs/learning.md +9 -0
  84. embraion-0.1.0/docs/licensing.md +12 -0
  85. embraion-0.1.0/docs/model-routing.md +9 -0
  86. embraion-0.1.0/docs/overview.md +9 -0
  87. embraion-0.1.0/docs/project-overlay.md +15 -0
  88. embraion-0.1.0/docs/release-process.md +13 -0
  89. embraion-0.1.0/docs/security.md +16 -0
  90. embraion-0.1.0/docs/spec-kit.md +16 -0
  91. embraion-0.1.0/docs/validation.md +18 -0
  92. embraion-0.1.0/evals/README.md +25 -0
  93. embraion-0.1.0/evals/baselines/README.md +18 -0
  94. embraion-0.1.0/evals/cases/README.md +7 -0
  95. embraion-0.1.0/evals/cases/privacy-gate.yaml +18 -0
  96. embraion-0.1.0/evals/cases/reviewer-readonly.yaml +22 -0
  97. embraion-0.1.0/evals/cases/steward-trigger.yaml +20 -0
  98. embraion-0.1.0/evals/cases/worker-scope.yaml +17 -0
  99. embraion-0.1.0/evals/fixtures/README.md +7 -0
  100. embraion-0.1.0/evals/graders/README.md +7 -0
  101. embraion-0.1.0/evals/reports/README.md +18 -0
  102. embraion-0.1.0/examples/README.md +7 -0
  103. embraion-0.1.0/examples/minimal/README.md +7 -0
  104. embraion-0.1.0/framework.yaml +39 -0
  105. embraion-0.1.0/localization/README.es.md +328 -0
  106. embraion-0.1.0/localization/README.hi.md +328 -0
  107. embraion-0.1.0/localization/README.ru.md +374 -0
  108. embraion-0.1.0/localization/README.zh-CN.md +97 -0
  109. embraion-0.1.0/localization/docs/es/README.md +26 -0
  110. embraion-0.1.0/localization/docs/es/architecture.md +32 -0
  111. embraion-0.1.0/localization/docs/es/capability-model.md +18 -0
  112. embraion-0.1.0/localization/docs/es/extraction-plan.md +15 -0
  113. embraion-0.1.0/localization/docs/es/learning.md +9 -0
  114. embraion-0.1.0/localization/docs/es/licensing.md +12 -0
  115. embraion-0.1.0/localization/docs/es/model-routing.md +9 -0
  116. embraion-0.1.0/localization/docs/es/overview.md +9 -0
  117. embraion-0.1.0/localization/docs/es/project-overlay.md +15 -0
  118. embraion-0.1.0/localization/docs/es/release-process.md +13 -0
  119. embraion-0.1.0/localization/docs/es/security.md +16 -0
  120. embraion-0.1.0/localization/docs/es/spec-kit.md +16 -0
  121. embraion-0.1.0/localization/docs/es/validation.md +18 -0
  122. embraion-0.1.0/localization/docs/hi/README.md +26 -0
  123. embraion-0.1.0/localization/docs/hi/architecture.md +32 -0
  124. embraion-0.1.0/localization/docs/hi/capability-model.md +18 -0
  125. embraion-0.1.0/localization/docs/hi/extraction-plan.md +15 -0
  126. embraion-0.1.0/localization/docs/hi/learning.md +9 -0
  127. embraion-0.1.0/localization/docs/hi/licensing.md +12 -0
  128. embraion-0.1.0/localization/docs/hi/model-routing.md +9 -0
  129. embraion-0.1.0/localization/docs/hi/overview.md +9 -0
  130. embraion-0.1.0/localization/docs/hi/project-overlay.md +15 -0
  131. embraion-0.1.0/localization/docs/hi/release-process.md +13 -0
  132. embraion-0.1.0/localization/docs/hi/security.md +16 -0
  133. embraion-0.1.0/localization/docs/hi/spec-kit.md +16 -0
  134. embraion-0.1.0/localization/docs/hi/validation.md +18 -0
  135. embraion-0.1.0/localization/docs/ru/README.md +26 -0
  136. embraion-0.1.0/localization/docs/ru/architecture.md +32 -0
  137. embraion-0.1.0/localization/docs/ru/capability-model.md +18 -0
  138. embraion-0.1.0/localization/docs/ru/extraction-plan.md +15 -0
  139. embraion-0.1.0/localization/docs/ru/learning.md +9 -0
  140. embraion-0.1.0/localization/docs/ru/licensing.md +12 -0
  141. embraion-0.1.0/localization/docs/ru/model-routing.md +9 -0
  142. embraion-0.1.0/localization/docs/ru/overview.md +9 -0
  143. embraion-0.1.0/localization/docs/ru/project-overlay.md +15 -0
  144. embraion-0.1.0/localization/docs/ru/release-process.md +13 -0
  145. embraion-0.1.0/localization/docs/ru/security.md +16 -0
  146. embraion-0.1.0/localization/docs/ru/spec-kit.md +16 -0
  147. embraion-0.1.0/localization/docs/ru/validation.md +18 -0
  148. embraion-0.1.0/localization/docs/zh-CN/README.md +26 -0
  149. embraion-0.1.0/localization/docs/zh-CN/architecture.md +32 -0
  150. embraion-0.1.0/localization/docs/zh-CN/capability-model.md +18 -0
  151. embraion-0.1.0/localization/docs/zh-CN/extraction-plan.md +15 -0
  152. embraion-0.1.0/localization/docs/zh-CN/learning.md +9 -0
  153. embraion-0.1.0/localization/docs/zh-CN/licensing.md +12 -0
  154. embraion-0.1.0/localization/docs/zh-CN/model-routing.md +9 -0
  155. embraion-0.1.0/localization/docs/zh-CN/overview.md +9 -0
  156. embraion-0.1.0/localization/docs/zh-CN/project-overlay.md +15 -0
  157. embraion-0.1.0/localization/docs/zh-CN/release-process.md +13 -0
  158. embraion-0.1.0/localization/docs/zh-CN/security.md +16 -0
  159. embraion-0.1.0/localization/docs/zh-CN/spec-kit.md +16 -0
  160. embraion-0.1.0/localization/docs/zh-CN/validation.md +18 -0
  161. embraion-0.1.0/localization/legal/es/trademarks.md +18 -0
  162. embraion-0.1.0/localization/legal/hi/trademarks.md +18 -0
  163. embraion-0.1.0/localization/legal/ru/trademarks.md +20 -0
  164. embraion-0.1.0/localization/legal/zh-CN/trademarks.md +20 -0
  165. embraion-0.1.0/pyproject.toml +27 -0
  166. embraion-0.1.0/schemas/README.md +22 -0
  167. embraion-0.1.0/schemas/agent.schema.json +19 -0
  168. embraion-0.1.0/schemas/catalog.schema.json +30 -0
  169. embraion-0.1.0/schemas/eval.schema.json +15 -0
  170. embraion-0.1.0/schemas/framework.schema.json +36 -0
  171. embraion-0.1.0/schemas/learning.schema.json +96 -0
  172. embraion-0.1.0/schemas/mcp.schema.json +72 -0
  173. embraion-0.1.0/schemas/model.schema.json +16 -0
  174. embraion-0.1.0/schemas/project.schema.json +40 -0
  175. embraion-0.1.0/schemas/security.schema.json +49 -0
  176. embraion-0.1.0/schemas/session.schema.json +88 -0
  177. embraion-0.1.0/schemas/telemetry.schema.json +21 -0
  178. embraion-0.1.0/schemas/worktree.schema.json +62 -0
  179. embraion-0.1.0/setup.cfg +4 -0
  180. embraion-0.1.0/setup.py +80 -0
  181. embraion-0.1.0/templates/README.md +7 -0
  182. embraion-0.1.0/templates/project-overlay/.embraion/project.yaml +12 -0
  183. embraion-0.1.0/templates/project-overlay/README.md +9 -0
  184. embraion-0.1.0/tools/README.md +20 -0
  185. embraion-0.1.0/tools/cli/embraion/__init__.py +3 -0
  186. embraion-0.1.0/tools/cli/embraion/cli.py +563 -0
  187. embraion-0.1.0/tools/cli/embraion/common.py +124 -0
  188. embraion-0.1.0/tools/cli/embraion/evals.py +142 -0
  189. embraion-0.1.0/tools/cli/embraion/learning.py +126 -0
  190. embraion-0.1.0/tools/cli/embraion/project.py +209 -0
  191. embraion-0.1.0/tools/cli/embraion/runtime.py +246 -0
  192. embraion-0.1.0/tools/cli/embraion/security.py +150 -0
  193. embraion-0.1.0/tools/cli/embraion/validation.py +215 -0
  194. embraion-0.1.0/tools/cli/embraion/worktree.py +176 -0
  195. embraion-0.1.0/tools/cli/embraion.egg-info/PKG-INFO +388 -0
  196. embraion-0.1.0/tools/cli/embraion.egg-info/SOURCES.txt +212 -0
  197. embraion-0.1.0/tools/cli/embraion.egg-info/dependency_links.txt +1 -0
  198. embraion-0.1.0/tools/cli/embraion.egg-info/entry_points.txt +2 -0
  199. embraion-0.1.0/tools/cli/embraion.egg-info/requires.txt +2 -0
  200. embraion-0.1.0/tools/cli/embraion.egg-info/top_level.txt +1 -0
  201. embraion-0.1.0/tools/doctor/README.md +18 -0
  202. embraion-0.1.0/tools/install/README.md +31 -0
  203. embraion-0.1.0/tools/learning/README.md +23 -0
  204. embraion-0.1.0/tools/learning/policy.yaml +21 -0
  205. embraion-0.1.0/tools/mcp/README.md +13 -0
  206. embraion-0.1.0/tools/mcp/policy.yaml +25 -0
  207. embraion-0.1.0/tools/runtime/README.md +30 -0
  208. embraion-0.1.0/tools/runtime/session.yaml +14 -0
  209. embraion-0.1.0/tools/security/README.md +13 -0
  210. embraion-0.1.0/tools/security/policy.yaml +23 -0
  211. embraion-0.1.0/tools/sync/README.md +18 -0
  212. embraion-0.1.0/tools/validation/README.md +22 -0
  213. embraion-0.1.0/tools/worktree/README.md +16 -0
  214. embraion-0.1.0/tools/worktree/lifecycle.yaml +28 -0
@@ -0,0 +1,87 @@
1
+ # EmbrAIon Agent Instructions
2
+
3
+ EmbrAIon is the upstream source of truth for reusable AI-First engineering behavior.
4
+
5
+ ## Repository ownership
6
+
7
+ - Put vendor-neutral behavior in `core/`.
8
+ - Put host/provider-specific representation in `adapters/`.
9
+ - Put deterministic executable operations in `tools/`.
10
+ - Put machine-readable contracts in `schemas/`.
11
+ - Put project bootstrap material in `templates/`.
12
+ - Keep product/domain-specific semantics in consuming-project overlays.
13
+
14
+ ## Capability loading
15
+
16
+ - `core/catalog.yaml` is the canonical discovery index.
17
+ - Prefer conditional capability loading over injecting the entire Core into every task.
18
+ - Every catalog path must resolve to exactly one canonical capability.
19
+ - Skills use one directory per skill with `SKILL.md` as the entry point.
20
+
21
+ ## Agent naming
22
+
23
+ Canonical Core agents are job-like roles: `lead`, `worker`, `reviewer`, `architect`, `analyst`, `validator`, `researcher`, and `steward`.
24
+
25
+ ## Separation of concerns
26
+
27
+ Agent role, access profile, model route, provider, and external integration state are independent dimensions.
28
+
29
+ A role never implies broader permissions or a more expensive model. Model choice never expands access.
30
+
31
+ ## Data classes
32
+
33
+ Use exactly three canonical data classes: `PUBLIC`, `PRIVATE`, and `CONFIDENTIAL`. Unknown classification fails closed.
34
+
35
+ ## Learning
36
+
37
+ Learning output is advisory until explicitly promoted. Runtime evidence may create candidates, but no learning tool may directly mutate Core. Promotion uses review, validation, applicable evals, and explicit approval.
38
+
39
+ ## Security and integrations
40
+
41
+ - External integrations must be inventoried.
42
+ - Inventories store metadata and environment-variable names, never secret values.
43
+ - Unknown integration state, access expansion, provider/privacy mismatch, and embedded credentials fail closed according to policy.
44
+ - Security scanners report findings; they do not weaken policy to pass.
45
+
46
+ ## Worktrees
47
+
48
+ Worktree cleanup is evidence-driven and fail-closed. Preserve ambiguous, dirty, locked, active, divergent, or unproven state. Salvage recoverable work before destructive cleanup.
49
+
50
+ ## Evals
51
+
52
+ Use deterministic tests for schemas, code, references, and generated output. Use `evals/` for behavioral properties and baseline comparison.
53
+
54
+ ## Spec Kit
55
+
56
+ Spec Kit is a recommended external capability for substantial specification-driven work. It remains independently managed and never overrides EmbrAIon Core or project truth.
57
+
58
+ ## File naming
59
+
60
+ - Use lowercase kebab-case for repository-owned files.
61
+ - Prefer one or two words when practical.
62
+ - Standard ecosystem filenames are exceptions, including `README.md`, `AGENTS.md`, and `SKILL.md`.
63
+ - Python modules use standard `snake_case` where required by the Python import system.
64
+
65
+ ## Brand terminology
66
+
67
+ - Use **AI-First Engineering System** in normal prose and title case.
68
+ - Use **AI-FIRST ENGINEERING SYSTEM** for the canonical all-caps brand category.
69
+ - The lowercase-F spelling is forbidden.
70
+
71
+ ## README timestamps
72
+
73
+ - Every `README*.md` ends with a last-updated timestamp.
74
+ - Any README edit updates its timestamp in the same change.
75
+ - Canonical format: `YYYY-MM-DD HH:mm UTC`.
76
+
77
+ ## Change discipline
78
+
79
+ - Prefer the minimum justified change.
80
+ - Preserve compatibility unless a breaking change is explicit.
81
+ - Keep Core independent from any single host, provider, platform, or consuming project.
82
+ - Do not weaken Core hard rules from a project overlay.
83
+ - Do not silently duplicate canonical policy.
84
+
85
+ ## Completion reporting
86
+
87
+ For substantial work report: Changed, Architecture, Validation, Risks, and Workers.
@@ -0,0 +1,23 @@
1
+ # Changelog
2
+
3
+ ## Unreleased
4
+
5
+ ### Added
6
+
7
+ - PyPI Trusted Publishing release path through GitHub Actions and the protected `pypi` environment.
8
+ - Standalone wheel/sdist release artifacts for installation without cloning the repository.
9
+
10
+ - Full Hindi and Spanish localization for the main README, documentation, and trademark policy.
11
+ - Localization completeness validation now covers Russian, Simplified Chinese, Hindi, and Spanish.
12
+
13
+ - Standard MIT License for EmbrAIon source code and documentation.
14
+ - Canonical trademark and brand-assets policy.
15
+ - Russian and Simplified Chinese informational translations of the brand policy.
16
+ - Localized licensing documentation.
17
+
18
+ ### Changed
19
+
20
+ - Package version prepared for the first public `v0.1.0` release.
21
+
22
+ - Framework and Python package metadata now declare MIT licensing.
23
+ - Main and brand README files now make the brand-assets exclusion explicit.
embraion-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 GORYNED and Egor Tomashin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,388 @@
1
+ Metadata-Version: 2.4
2
+ Name: embraion
3
+ Version: 0.1.0
4
+ Summary: Portable AI-First Engineering System
5
+ License-Expression: MIT
6
+ Project-URL: Homepage, https://goryned.com
7
+ Project-URL: Repository, https://github.com/GORYNED/EmbrAIon
8
+ Project-URL: Documentation, https://github.com/GORYNED/EmbrAIon/tree/main/docs
9
+ Requires-Python: >=3.11
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: PyYAML<7,>=6.0
13
+ Requires-Dist: jsonschema<5,>=4.22
14
+ Dynamic: license-file
15
+
16
+ <p align="center">
17
+ <img src="brand/assets/readme/hero-dark.png" alt="EmbrAIon — AI-First Engineering System by GORYNED" width="100%">
18
+ </p>
19
+
20
+ <p align="center">
21
+ <strong>English</strong> ·
22
+ <a href="localization/README.ru.md">Русский</a> ·
23
+ <a href="localization/README.zh-CN.md">简体中文</a> ·
24
+ <a href="localization/README.es.md">Español</a> ·
25
+ <a href="localization/README.hi.md">हिन्दी</a>
26
+ </p>
27
+
28
+ # EmbrAIon
29
+
30
+ **AI-First Engineering System [by GORYNED](https://goryned.com)**
31
+
32
+ > Where sparks become AI-built products
33
+
34
+ EmbrAIon is a portable AI-First Engineering System for organizing AI-assisted software engineering around explicit roles, reusable skills, workflow orchestration, model routing, access control, validation, review, security, learning, and project overlays.
35
+
36
+ It is designed to sit above individual languages and frameworks. A Unity/C# project, a Python service, a web application, or another software repository can use the same Core and add only project-specific knowledge and rules.
37
+
38
+ ## What EmbrAIon does
39
+
40
+ EmbrAIon separates the engineering system into independent dimensions:
41
+
42
+ - **Agent** — who is responsible: Lead, Worker, Reviewer, Architect, Analyst, Validator, Researcher, Steward.
43
+ - **Skill** — how a repeatable class of work is performed.
44
+ - **Rule** — what is required, forbidden, or protected.
45
+ - **Workflow** — in what order capabilities are composed.
46
+ - **Routing** — which access profile, model tier, host, and provider may execute the work.
47
+ - **Adapter** — how canonical capabilities are represented in Codex, Copilot, Claude Code, providers, or a host-neutral Portable bundle.
48
+ - **Tool** — deterministic executable behavior such as validation, security scanning, worktree management, synchronization, and diagnostics.
49
+ - **Eval** — whether AI behavior actually follows the intended engineering contract.
50
+
51
+ `core/catalog.yaml` is the discovery index. Instead of loading the entire framework for every task, EmbrAIon can load only capabilities whose triggers match the current work.
52
+
53
+ ## Data classes
54
+
55
+ EmbrAIon uses three canonical data classes:
56
+
57
+ | Class | Meaning |
58
+ | --- | --- |
59
+ | `PUBLIC` | Public information that may be sent to eligible external systems |
60
+ | `PRIVATE` | Proprietary/internal project information; external use requires an explicit eligible route |
61
+ | `CONFIDENTIAL` | Highest protection level; denied externally unless a route explicitly allows it |
62
+
63
+ Unknown or ambiguous classification fails closed. Model choice never expands access or privacy eligibility.
64
+
65
+ ## Supported host adapters
66
+
67
+ Current adapters:
68
+
69
+ - **Codex** — native model catalog, model/effort route mapping, generated project agents and config.
70
+ - **GitHub Copilot** — advisory model catalog and generated custom-agent projection.
71
+ - **Claude Code** — Claude model catalog and generated subagent projection.
72
+ - **Portable** — host-neutral installable capability bundle.
73
+ - **Providers** — direct API model catalogs for OpenAI, Anthropic, Google, DeepSeek, plus transport metadata.
74
+
75
+ Core remains model-neutral. Current model identities and host selectors live only in adapters.
76
+
77
+ ## Installation
78
+
79
+ A local clone of the EmbrAIon repository is **not required**.
80
+
81
+ ### Requirements
82
+
83
+ - Python 3.11+
84
+ - `pipx` is recommended for an isolated CLI installation
85
+ - Git is only needed while installing directly from the GitHub repository before the PyPI release
86
+
87
+ ### 1. Install EmbrAIon
88
+
89
+ Recommended:
90
+
91
+ ```bash
92
+ pipx install "git+https://github.com/GORYNED/EmbrAIon.git"
93
+ ```
94
+
95
+ If `pipx` is not installed yet:
96
+
97
+ ```bash
98
+ python -m pip install --user pipx
99
+ python -m pipx ensurepath
100
+ ```
101
+
102
+ Then open a new terminal and run the install command above.
103
+
104
+
105
+ After EmbrAIon is published to PyPI, the normal installation will become:
106
+
107
+ ```bash
108
+ pipx install embraion
109
+ ```
110
+
111
+ A regular `pip` installation is also supported:
112
+
113
+ ```bash
114
+ python -m pip install "git+https://github.com/GORYNED/EmbrAIon.git"
115
+ ```
116
+
117
+ ### 2. Verify the installation
118
+
119
+ ```bash
120
+ embraion --version
121
+ embraion validate
122
+ embraion doctor
123
+ ```
124
+
125
+ The installed package contains the canonical Core, adapters, schemas, templates, policies, documentation, and other framework data required by the CLI. EmbrAIon does not depend on a checked-out repository after installation.
126
+
127
+ ## Add EmbrAIon to a project
128
+
129
+ Create the project overlay:
130
+
131
+ ```bash
132
+ cd /path/to/your/project
133
+ embraion init --name MyProject
134
+ ```
135
+
136
+ This creates:
137
+
138
+ ```text
139
+ .embraion/
140
+ └── project.yaml
141
+ ```
142
+
143
+ The project overlay pins the framework version and is where project-specific capabilities can be declared without modifying Core.
144
+
145
+ ### Install a host projection
146
+
147
+ Codex:
148
+
149
+ ```bash
150
+ embraion install --host codex --destination .
151
+ ```
152
+
153
+ GitHub Copilot:
154
+
155
+ ```bash
156
+ embraion install --host copilot --destination .
157
+ ```
158
+
159
+ Claude Code:
160
+
161
+ ```bash
162
+ embraion install --host claude-code --destination .
163
+ ```
164
+
165
+ Portable bundle:
166
+
167
+ ```bash
168
+ embraion install --host portable --destination ./vendor/embraion
169
+ ```
170
+
171
+ Use `--force` only when intentionally replacing an existing generated projection.
172
+
173
+ ## How a task flows through EmbrAIon
174
+
175
+ A substantial task conceptually follows this path:
176
+
177
+ ```text
178
+ User goal
179
+
180
+ Project overlay + Core catalog
181
+
182
+ Relevant rules / agents / skills / workflows
183
+
184
+ Data class + access profile + complexity
185
+
186
+ Host adapter + model route
187
+
188
+ Implementation
189
+
190
+ Validation
191
+
192
+ Independent review
193
+
194
+ Verification
195
+
196
+ Delivery / human merge gate
197
+ ```
198
+
199
+ For substantial specification-driven work, Spec Kit is recommended as an independent companion. It refines planning and specification but does not replace Core rules, project truth, compatibility contracts, or validation evidence.
200
+
201
+ ## CLI
202
+
203
+ ### Framework and project
204
+
205
+ ```text
206
+ embraion init
207
+ embraion install
208
+ embraion update
209
+ embraion sync
210
+ embraion validate
211
+ embraion doctor
212
+ ```
213
+
214
+ ### Routing and runtime state
215
+
216
+ Resolve a route:
217
+
218
+ ```bash
219
+ embraion route --host codex --route-class strong --data PRIVATE
220
+ ```
221
+
222
+ Create a bounded dispatch plan:
223
+
224
+ ```bash
225
+ embraion dispatch \
226
+ --task "Implement feature" \
227
+ --role worker \
228
+ --host codex \
229
+ --route-class economy-write \
230
+ --data PRIVATE \
231
+ --access write \
232
+ --owned-path "src/**"
233
+ ```
234
+
235
+ Writable dispatch planning requires explicit owned paths and refuses the stable `main`/`master` branch. The plan and privacy-safe routing telemetry are written under `.embraion/state/`.
236
+
237
+ Start normalized session state:
238
+
239
+ ```bash
240
+ embraion session start \
241
+ --session-id task-001 \
242
+ --task "Implement feature" \
243
+ --role lead \
244
+ --host codex \
245
+ --access plan
246
+ ```
247
+
248
+ Inspect or update it:
249
+
250
+ ```bash
251
+ embraion session show
252
+ embraion session set --state review --validation passed
253
+ ```
254
+
255
+ The host adapter performs actual AI execution; EmbrAIon owns canonical routing, generated agent definitions, access/ownership boundaries, dispatch plans, normalized state, and privacy-safe operational telemetry.
256
+
257
+ ### Security
258
+
259
+ ```bash
260
+ embraion security scan --path .
261
+ ```
262
+
263
+ The scanner checks for high-risk configuration problems such as possible embedded credentials and policy drift.
264
+
265
+ ### MCP inventory
266
+
267
+ ```bash
268
+ embraion mcp inventory
269
+ ```
270
+
271
+ This creates a normalized privacy-safe inventory under `.embraion/state/`. Environment-variable names may be recorded; secret values are never intentionally persisted.
272
+
273
+ ### Worktrees
274
+
275
+ ```bash
276
+ embraion worktree list
277
+ embraion worktree create ai/my-task
278
+ embraion worktree gc
279
+ embraion worktree salvage /path/to/worktree
280
+ ```
281
+
282
+ `gc` is dry-run by default and only considers directly proven, clean, unlocked worktrees. Use `--apply` explicitly to remove safe candidates.
283
+
284
+ ### Learning
285
+
286
+ Record repeated evidence:
287
+
288
+ ```bash
289
+ embraion learning observe \
290
+ --id repeated-review-gap \
291
+ --kind repeated-failure \
292
+ --target-type skill \
293
+ --target-id review \
294
+ --summary "Repeated review gap"
295
+ ```
296
+
297
+ Promotion is gated:
298
+
299
+ ```text
300
+ observe → accumulate evidence → propose → approve → promote
301
+ ```
302
+
303
+ Promotion never edits Core automatically. A promoted candidate still requires an ordinary reviewed engineering change.
304
+
305
+ ### Behavioral evals
306
+
307
+ Run an eval case:
308
+
309
+ ```bash
310
+ embraion eval run \
311
+ --case reviewer-readonly \
312
+ --record path/to/execution-record.json
313
+ ```
314
+
315
+ Create and compare baselines:
316
+
317
+ ```bash
318
+ embraion eval baseline --reports build/evals --output baseline.json
319
+ embraion eval compare --baseline baseline.json --reports build/evals
320
+ ```
321
+
322
+ ## Generate adapter projections
323
+
324
+ Generate all supported projections without installing them into a project:
325
+
326
+ ```bash
327
+ embraion sync --host all --output build/generated --force
328
+ ```
329
+
330
+ Generated outputs are disposable projections. Canonical policy always remains in `core/`.
331
+
332
+ ## Repository layout
333
+
334
+ ```text
335
+ brand/ Brand specification and README assets
336
+ core/ Canonical rules, agents, skills, workflows, routing, knowledge
337
+ adapters/ Codex, Copilot, Claude Code, Portable, provider integrations
338
+ tools/ CLI, runtime, learning, security, MCP, worktree, validation, sync
339
+ schemas/ Machine-readable contracts
340
+ templates/ Project overlay templates
341
+ docs/ Canonical English documentation
342
+ localization/ Russian, Simplified Chinese, Hindi, and Spanish translations
343
+ tests/ Deterministic unit/integration tests
344
+ evals/ Behavioral cases, baselines, graders, fixtures, reports
345
+ examples/ Reference integrations
346
+ ```
347
+
348
+ ## Validation and CI
349
+
350
+ Every push and pull request is intended to run:
351
+
352
+ - schema and catalog validation;
353
+ - localization parity;
354
+ - unit and integration tests;
355
+ - security scanning;
356
+ - generation of all host projections;
357
+ - behavioral eval smoke tests.
358
+
359
+ Tagged releases generate source, Codex, Copilot, Claude Code, and Portable archives.
360
+
361
+ ## Documentation
362
+
363
+ Canonical documentation: [docs/](docs/README.md)
364
+
365
+ Translations:
366
+
367
+ - [Русский](localization/docs/ru/README.md)
368
+ - [简体中文](localization/docs/zh-CN/README.md)
369
+ - [Español](localization/docs/es/README.md)
370
+ - [हिन्दी](localization/docs/hi/README.md)
371
+
372
+ ## License and brand
373
+
374
+ EmbrAIon source code and documentation are licensed under the [MIT License](LICENSE), except where a file or directory explicitly states otherwise.
375
+
376
+ The **EmbrAIon** and **GORYNED** names, logos, wordmarks, visual marks, and the files under `brand/assets/` are **not licensed under MIT**. The MIT License does not grant trademark or brand-identity rights. See [TRADEMARKS.md](TRADEMARKS.md) for the canonical policy.
377
+
378
+ ## Current status
379
+
380
+ EmbrAIon is **pre-stable**. The architecture and first executable CLI are in place, but the public compatibility contract is not frozen yet.
381
+
382
+ Before the first stable release, model catalogs, generated host projections, validation coverage, security rules, installation behavior, and release packaging may still evolve.
383
+
384
+ ---
385
+
386
+ **EmbrAIon** · **AI-FIRST ENGINEERING SYSTEM** · **[by GORYNED](https://goryned.com)**
387
+
388
+ <sub>Last updated: 2026-09-23 21:13 UTC</sub>