esaa-core 0.5.0b1__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 (121) hide show
  1. esaa_core-0.5.0b1/CHANGELOG.md +10 -0
  2. esaa_core-0.5.0b1/CODE_OF_CONDUCT.md +11 -0
  3. esaa_core-0.5.0b1/CONTRIBUTING.md +23 -0
  4. esaa_core-0.5.0b1/LICENSE +21 -0
  5. esaa_core-0.5.0b1/MANIFEST.in +10 -0
  6. esaa_core-0.5.0b1/PKG-INFO +942 -0
  7. esaa_core-0.5.0b1/docs/operations/repository-hygiene.md +8 -0
  8. esaa_core-0.5.0b1/docs/plugins/authoring.md +54 -0
  9. esaa_core-0.5.0b1/docs/plugins/installing.md +33 -0
  10. esaa_core-0.5.0b1/docs/plugins/lifecycle.md +44 -0
  11. esaa_core-0.5.0b1/docs/plugins/security.md +38 -0
  12. esaa_core-0.5.0b1/examples/plugins.md +16 -0
  13. esaa_core-0.5.0b1/pyproject.toml +50 -0
  14. esaa_core-0.5.0b1/readme.md +916 -0
  15. esaa_core-0.5.0b1/setup.cfg +4 -0
  16. esaa_core-0.5.0b1/src/audit/amend_claude_md.py +35 -0
  17. esaa_core-0.5.0b1/src/audit/bump_version.py +40 -0
  18. esaa_core-0.5.0b1/src/audit/contract_consistency.py +149 -0
  19. esaa_core-0.5.0b1/src/audit/critical_findings.py +269 -0
  20. esaa_core-0.5.0b1/src/audit/document_future_templates.py +46 -0
  21. esaa_core-0.5.0b1/src/audit/eventstore_integrity.py +73 -0
  22. esaa_core-0.5.0b1/src/audit/rename_parcer.py +42 -0
  23. esaa_core-0.5.0b1/src/audit/schema_conformance.py +64 -0
  24. esaa_core-0.5.0b1/src/audit/traceability_and_report.py +118 -0
  25. esaa_core-0.5.0b1/src/esaa/__init__.py +17 -0
  26. esaa_core-0.5.0b1/src/esaa/__main__.py +4 -0
  27. esaa_core-0.5.0b1/src/esaa/adapters/__init__.py +5 -0
  28. esaa_core-0.5.0b1/src/esaa/adapters/base.py +17 -0
  29. esaa_core-0.5.0b1/src/esaa/adapters/http_llm.py +63 -0
  30. esaa_core-0.5.0b1/src/esaa/adapters/mock.py +103 -0
  31. esaa_core-0.5.0b1/src/esaa/bootstrap.py +72 -0
  32. esaa_core-0.5.0b1/src/esaa/cli.py +571 -0
  33. esaa_core-0.5.0b1/src/esaa/compat.py +27 -0
  34. esaa_core-0.5.0b1/src/esaa/conflicts.py +45 -0
  35. esaa_core-0.5.0b1/src/esaa/constants.py +39 -0
  36. esaa_core-0.5.0b1/src/esaa/dispatch.py +187 -0
  37. esaa_core-0.5.0b1/src/esaa/errors.py +19 -0
  38. esaa_core-0.5.0b1/src/esaa/file_effects.py +388 -0
  39. esaa_core-0.5.0b1/src/esaa/metrics.py +131 -0
  40. esaa_core-0.5.0b1/src/esaa/plugins.py +666 -0
  41. esaa_core-0.5.0b1/src/esaa/projector.py +340 -0
  42. esaa_core-0.5.0b1/src/esaa/reject_codes.py +201 -0
  43. esaa_core-0.5.0b1/src/esaa/runner_metrics.py +114 -0
  44. esaa_core-0.5.0b1/src/esaa/runtime_policy.py +152 -0
  45. esaa_core-0.5.0b1/src/esaa/scenarios.py +172 -0
  46. esaa_core-0.5.0b1/src/esaa/service.py +2767 -0
  47. esaa_core-0.5.0b1/src/esaa/snapshot.py +159 -0
  48. esaa_core-0.5.0b1/src/esaa/state_machine.py +108 -0
  49. esaa_core-0.5.0b1/src/esaa/store.py +254 -0
  50. esaa_core-0.5.0b1/src/esaa/templates/AGENT_CONTRACT.yaml +312 -0
  51. esaa_core-0.5.0b1/src/esaa/templates/ORCHESTRATOR_CONTRACT.yaml +285 -0
  52. esaa_core-0.5.0b1/src/esaa/templates/RUNTIME_POLICY.yaml +36 -0
  53. esaa_core-0.5.0b1/src/esaa/templates/agent_result.schema.json +254 -0
  54. esaa_core-0.5.0b1/src/esaa/templates/agents_swarm.yaml +49 -0
  55. esaa_core-0.5.0b1/src/esaa/templates/esaa-plugin.schema.json +65 -0
  56. esaa_core-0.5.0b1/src/esaa/templates/issues.schema.json +192 -0
  57. esaa_core-0.5.0b1/src/esaa/templates/lessons.schema.json +174 -0
  58. esaa_core-0.5.0b1/src/esaa/templates/roadmap.schema.json +363 -0
  59. esaa_core-0.5.0b1/src/esaa/utils.py +29 -0
  60. esaa_core-0.5.0b1/src/esaa/validator.py +122 -0
  61. esaa_core-0.5.0b1/src/esaa/vocabulary.py +47 -0
  62. esaa_core-0.5.0b1/src/esaa_core.egg-info/PKG-INFO +942 -0
  63. esaa_core-0.5.0b1/src/esaa_core.egg-info/SOURCES.txt +119 -0
  64. esaa_core-0.5.0b1/src/esaa_core.egg-info/dependency_links.txt +1 -0
  65. esaa_core-0.5.0b1/src/esaa_core.egg-info/entry_points.txt +2 -0
  66. esaa_core-0.5.0b1/src/esaa_core.egg-info/requires.txt +7 -0
  67. esaa_core-0.5.0b1/src/esaa_core.egg-info/top_level.txt +2 -0
  68. esaa_core-0.5.0b1/tests/test_activity_clear_lessons_reseed.py +9 -0
  69. esaa_core-0.5.0b1/tests/test_adapters_llm.py +260 -0
  70. esaa_core-0.5.0b1/tests/test_atomic_file_effects.py +139 -0
  71. esaa_core-0.5.0b1/tests/test_atomic_file_effects_integration.py +108 -0
  72. esaa_core-0.5.0b1/tests/test_audit_critical_findings.py +76 -0
  73. esaa_core-0.5.0b1/tests/test_baseline_lessons_seed.py +60 -0
  74. esaa_core-0.5.0b1/tests/test_behavioral_critical_findings.py +12 -0
  75. esaa_core-0.5.0b1/tests/test_deterministic_cli_commands.py +285 -0
  76. esaa_core-0.5.0b1/tests/test_done_evidence_quality.py +9 -0
  77. esaa_core-0.5.0b1/tests/test_dry_run_semantics.py +9 -0
  78. esaa_core-0.5.0b1/tests/test_external_runner_metrics.py +134 -0
  79. esaa_core-0.5.0b1/tests/test_file_effect_artifact_retention.py +19 -0
  80. esaa_core-0.5.0b1/tests/test_file_effect_artifacts.py +71 -0
  81. esaa_core-0.5.0b1/tests/test_file_effect_recovery.py +11 -0
  82. esaa_core-0.5.0b1/tests/test_hotfix_create_e2e_validation.py +21 -0
  83. esaa_core-0.5.0b1/tests/test_hotfix_create_validation.py +118 -0
  84. esaa_core-0.5.0b1/tests/test_hotfix_lifecycle.py +54 -0
  85. esaa_core-0.5.0b1/tests/test_hotfix_production_trace.py +36 -0
  86. esaa_core-0.5.0b1/tests/test_http_llm_adapter.py +77 -0
  87. esaa_core-0.5.0b1/tests/test_independent_qa_review_policy.py +9 -0
  88. esaa_core-0.5.0b1/tests/test_issue_report_done_command.py +9 -0
  89. esaa_core-0.5.0b1/tests/test_metrics.py +57 -0
  90. esaa_core-0.5.0b1/tests/test_parallel_dispatch.py +45 -0
  91. esaa_core-0.5.0b1/tests/test_plugin_cli.py +38 -0
  92. esaa_core-0.5.0b1/tests/test_plugin_directory_format.py +111 -0
  93. esaa_core-0.5.0b1/tests/test_plugin_loader.py +126 -0
  94. esaa_core-0.5.0b1/tests/test_plugin_manager.py +94 -0
  95. esaa_core-0.5.0b1/tests/test_plugin_publication_assets.py +52 -0
  96. esaa_core-0.5.0b1/tests/test_plugin_publication_workflow.py +216 -0
  97. esaa_core-0.5.0b1/tests/test_plugin_status.py +129 -0
  98. esaa_core-0.5.0b1/tests/test_post_survey_fixes.py +270 -0
  99. esaa_core-0.5.0b1/tests/test_prior_status_done_issue_report.py +116 -0
  100. esaa_core-0.5.0b1/tests/test_projection_workflow.py +81 -0
  101. esaa_core-0.5.0b1/tests/test_public_beta_release.py +174 -0
  102. esaa_core-0.5.0b1/tests/test_reject_codes_inventory.py +107 -0
  103. esaa_core-0.5.0b1/tests/test_repository_hygiene.py +39 -0
  104. esaa_core-0.5.0b1/tests/test_review_role_policy.py +122 -0
  105. esaa_core-0.5.0b1/tests/test_run_consumes_plugin_tasks.py +88 -0
  106. esaa_core-0.5.0b1/tests/test_run_plugin_dispatch_parity.py +9 -0
  107. esaa_core-0.5.0b1/tests/test_runner_metrics_contracts.py +53 -0
  108. esaa_core-0.5.0b1/tests/test_runner_metrics_e2e.py +14 -0
  109. esaa_core-0.5.0b1/tests/test_runtime_policy.py +62 -0
  110. esaa_core-0.5.0b1/tests/test_serializable_harness_integration.py +70 -0
  111. esaa_core-0.5.0b1/tests/test_serializable_store_lock.py +119 -0
  112. esaa_core-0.5.0b1/tests/test_service_run_and_boundaries.py +95 -0
  113. esaa_core-0.5.0b1/tests/test_snapshot.py +24 -0
  114. esaa_core-0.5.0b1/tests/test_snapshot_compaction.py +55 -0
  115. esaa_core-0.5.0b1/tests/test_state_machine_and_dispatch.py +153 -0
  116. esaa_core-0.5.0b1/tests/test_store_and_compat.py +80 -0
  117. esaa_core-0.5.0b1/tests/test_store_lock.py +33 -0
  118. esaa_core-0.5.0b1/tests/test_validator_min_checks.py +62 -0
  119. esaa_core-0.5.0b1/tests/test_verify_and_replay.py +38 -0
  120. esaa_core-0.5.0b1/tests/test_vocabulary_evolution.py +42 -0
  121. esaa_core-0.5.0b1/tests/test_write_conflict_policy.py +95 -0
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+
3
+ ## 0.5.0b1
4
+
5
+ Public beta preparation for `esaa-core`.
6
+
7
+ This release focuses on the local ESAA runtime, deterministic verification,
8
+ installable roadmap plugins, bundled plugin examples, external runner metrics,
9
+ hotfix flow, snapshots, and publication-ready package assets.
10
+
@@ -0,0 +1,11 @@
1
+ # Code of Conduct
2
+
3
+ This project expects respectful, practical collaboration.
4
+
5
+ Be clear, patient, and constructive. Critique ideas and code, not people. When
6
+ you find a problem, prefer evidence, reproduction steps, and a proposed path
7
+ forward.
8
+
9
+ Harassment, personal attacks, and intentionally disruptive behavior are not
10
+ acceptable in project spaces.
11
+
@@ -0,0 +1,23 @@
1
+ # Contributing
2
+
3
+ Contributions are welcome when they preserve the ESAA model: the event store is
4
+ append-only, read models are projections, and the Orchestrator is the only
5
+ authority that applies state transitions.
6
+
7
+ Before proposing a change, run the local test suite:
8
+
9
+ ```powershell
10
+ $env:PYTHONPATH='src'
11
+ python -B -m pytest -q
12
+ python -B -m esaa --root . verify
13
+ ```
14
+
15
+ For plugin changes, also check:
16
+
17
+ ```powershell
18
+ $env:PYTHONPATH='src'
19
+ python -B -m esaa --root . plugin list --available
20
+ ```
21
+
22
+ Keep changes small, documented, and covered by tests when behavior changes.
23
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ESAA Contributors
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,10 @@
1
+ include LICENSE
2
+ include CHANGELOG.md
3
+ include CONTRIBUTING.md
4
+ include CODE_OF_CONDUCT.md
5
+ include readme.md
6
+ recursive-include docs *.md
7
+ recursive-include examples *.md
8
+ recursive-include src/esaa/templates *
9
+ global-exclude __pycache__/*
10
+ global-exclude *.py[cod]