adamast 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.
- adamast-0.1.0/CHANGELOG.md +272 -0
- adamast-0.1.0/LICENSE +202 -0
- adamast-0.1.0/MANIFEST.in +23 -0
- adamast-0.1.0/PKG-INFO +239 -0
- adamast-0.1.0/README.md +204 -0
- adamast-0.1.0/SKILL.md +48 -0
- adamast-0.1.0/adamast.egg-info/PKG-INFO +239 -0
- adamast-0.1.0/adamast.egg-info/SOURCES.txt +265 -0
- adamast-0.1.0/adamast.egg-info/dependency_links.txt +1 -0
- adamast-0.1.0/adamast.egg-info/entry_points.txt +16 -0
- adamast-0.1.0/adamast.egg-info/requires.txt +15 -0
- adamast-0.1.0/adamast.egg-info/top_level.txt +5 -0
- adamast-0.1.0/adamast_integration/__init__.py +1 -0
- adamast-0.1.0/adamast_integration/claude_code/__init__.py +11 -0
- adamast-0.1.0/adamast_integration/claude_code/assets/final_gate_tail.md +31 -0
- adamast-0.1.0/adamast_integration/claude_code/assets/hook_events.json +28 -0
- adamast-0.1.0/adamast_integration/claude_code/assets/standing_prompt.md +14 -0
- adamast-0.1.0/adamast_integration/claude_code/browser_picker.py +136 -0
- adamast-0.1.0/adamast_integration/claude_code/config.py +548 -0
- adamast-0.1.0/adamast_integration/claude_code/custom.py +241 -0
- adamast-0.1.0/adamast_integration/claude_code/dispatcher.py +249 -0
- adamast-0.1.0/adamast_integration/claude_code/hooks/__init__.py +1 -0
- adamast-0.1.0/adamast_integration/claude_code/hooks/post_tool_use.py +8 -0
- adamast-0.1.0/adamast_integration/claude_code/hooks/post_tool_use_failure.py +8 -0
- adamast-0.1.0/adamast_integration/claude_code/hooks/session_end.py +8 -0
- adamast-0.1.0/adamast_integration/claude_code/hooks/session_start.py +8 -0
- adamast-0.1.0/adamast_integration/claude_code/hooks/stop.py +8 -0
- adamast-0.1.0/adamast_integration/claude_code/hooks/subagent_stop.py +8 -0
- adamast-0.1.0/adamast_integration/claude_code/hooks/task_completed.py +8 -0
- adamast-0.1.0/adamast_integration/claude_code/hooks/user_prompt_submit.py +8 -0
- adamast-0.1.0/adamast_integration/claude_code/install.py +726 -0
- adamast-0.1.0/adamast_integration/claude_code/learning_jobs.py +192 -0
- adamast-0.1.0/adamast_integration/claude_code/manage_hooks.py +185 -0
- adamast-0.1.0/adamast_integration/claude_code/native_worker.py +175 -0
- adamast-0.1.0/adamast_integration/claude_code/prompts.py +61 -0
- adamast-0.1.0/adamast_integration/claude_code/reflection.py +9 -0
- adamast-0.1.0/adamast_integration/claude_code/runtime.py +1487 -0
- adamast-0.1.0/adamast_integration/claude_code/session_routes.py +90 -0
- adamast-0.1.0/adamast_integration/claude_code/state.py +39 -0
- adamast-0.1.0/adamast_integration/claude_code/subagent_protocol.py +48 -0
- adamast-0.1.0/adamast_integration/claude_code/transcript.py +128 -0
- adamast-0.1.0/adamast_integration/claude_code/uninstall.py +147 -0
- adamast-0.1.0/adamast_integration/codex/__init__.py +1 -0
- adamast-0.1.0/adamast_integration/codex/assets/SKILL.md +69 -0
- adamast-0.1.0/adamast_integration/codex/assets/final_gate_tail.md +10 -0
- adamast-0.1.0/adamast_integration/codex/assets/openai.yaml +3 -0
- adamast-0.1.0/adamast_integration/codex/assets/standing_prompt.md +31 -0
- adamast-0.1.0/adamast_integration/codex/browser_picker.py +136 -0
- adamast-0.1.0/adamast_integration/codex/config.py +373 -0
- adamast-0.1.0/adamast_integration/codex/dispatcher.py +240 -0
- adamast-0.1.0/adamast_integration/codex/install.py +526 -0
- adamast-0.1.0/adamast_integration/codex/learning_jobs.py +146 -0
- adamast-0.1.0/adamast_integration/codex/native_worker.py +177 -0
- adamast-0.1.0/adamast_integration/codex/prompts.py +46 -0
- adamast-0.1.0/adamast_integration/codex/runtime.py +1462 -0
- adamast-0.1.0/adamast_integration/codex/selector.py +3 -0
- adamast-0.1.0/adamast_integration/codex/session_routes.py +90 -0
- adamast-0.1.0/adamast_integration/codex/state.py +39 -0
- adamast-0.1.0/adamast_integration/codex/subagent_protocol.py +53 -0
- adamast-0.1.0/adamast_integration/codex/transcript.py +416 -0
- adamast-0.1.0/adamast_integration/codex/uninstall.py +131 -0
- adamast-0.1.0/adamast_integration/interactive/__init__.py +1 -0
- adamast-0.1.0/adamast_integration/interactive/browser_picker.py +392 -0
- adamast-0.1.0/adamast_integration/interactive/defaults.py +16 -0
- adamast-0.1.0/adamast_integration/interactive/learning_jobs.py +1346 -0
- adamast-0.1.0/adamast_integration/interactive/selector.py +304 -0
- adamast-0.1.0/adamast_integration/interactive/session_routes.py +303 -0
- adamast-0.1.0/adamast_integration/interactive/subagent_protocol.py +520 -0
- adamast-0.1.0/adamast_integration/interactive/worker_contract.py +164 -0
- adamast-0.1.0/adamast_integration/shared.py +87 -0
- adamast-0.1.0/adamast_integration/single_llm/__init__.py +15 -0
- adamast-0.1.0/adamast_integration/single_llm/assets/standing_prompt.md +15 -0
- adamast-0.1.0/adamast_integration/single_llm/cli.py +275 -0
- adamast-0.1.0/adamast_integration/single_llm/runtime.py +435 -0
- adamast-0.1.0/adamast_runtime/__init__.py +116 -0
- adamast-0.1.0/adamast_runtime/assets/adamast_config.schema.json +409 -0
- adamast-0.1.0/adamast_runtime/assets/checkpoint_reflection.md +61 -0
- adamast-0.1.0/adamast_runtime/assets/dashboard.html +1170 -0
- adamast-0.1.0/adamast_runtime/assets/format_repair.md +14 -0
- adamast-0.1.0/adamast_runtime/assets/model_profiles.json +18 -0
- adamast-0.1.0/adamast_runtime/assets/pre_submission_protocol.md +22 -0
- adamast-0.1.0/adamast_runtime/assets/refinement_repair.md +19 -0
- adamast-0.1.0/adamast_runtime/assets/refinement_support_judge.md +16 -0
- adamast-0.1.0/adamast_runtime/assets/reflection_refiner_system.md +28 -0
- adamast-0.1.0/adamast_runtime/assets/reflection_refiner_user.md +42 -0
- adamast-0.1.0/adamast_runtime/assets/standard_refinement_prompt.md +42 -0
- adamast-0.1.0/adamast_runtime/checkpoint_prompt.py +82 -0
- adamast-0.1.0/adamast_runtime/config.py +160 -0
- adamast-0.1.0/adamast_runtime/dashboard.py +666 -0
- adamast-0.1.0/adamast_runtime/doctor.py +535 -0
- adamast-0.1.0/adamast_runtime/evidence.py +108 -0
- adamast-0.1.0/adamast_runtime/evidence_export.py +70 -0
- adamast-0.1.0/adamast_runtime/fsio.py +65 -0
- adamast-0.1.0/adamast_runtime/generation.py +623 -0
- adamast-0.1.0/adamast_runtime/import_generation.py +365 -0
- adamast-0.1.0/adamast_runtime/learning_calls.py +510 -0
- adamast-0.1.0/adamast_runtime/lifecycle.py +327 -0
- adamast-0.1.0/adamast_runtime/lineage.py +81 -0
- adamast-0.1.0/adamast_runtime/models.py +80 -0
- adamast-0.1.0/adamast_runtime/options.py +105 -0
- adamast-0.1.0/adamast_runtime/program.py +562 -0
- adamast-0.1.0/adamast_runtime/project_scope.py +78 -0
- adamast-0.1.0/adamast_runtime/protocol.py +273 -0
- adamast-0.1.0/adamast_runtime/redaction.py +109 -0
- adamast-0.1.0/adamast_runtime/refinement.py +733 -0
- adamast-0.1.0/adamast_runtime/reflection.py +310 -0
- adamast-0.1.0/adamast_runtime/reflection_refinement.py +551 -0
- adamast-0.1.0/adamast_runtime/register_taxonomy.py +464 -0
- adamast-0.1.0/adamast_runtime/repository.py +65 -0
- adamast-0.1.0/adamast_runtime/status.py +158 -0
- adamast-0.1.0/adamast_runtime/taxonomy_data.py +358 -0
- adamast-0.1.0/adamast_runtime/traces.py +228 -0
- adamast-0.1.0/adamast_runtime/traces_cli.py +255 -0
- adamast-0.1.0/adamast_runtime/worker_state.py +151 -0
- adamast-0.1.0/docs/API_OR_RUNTIME.md +56 -0
- adamast-0.1.0/docs/ARCHITECTURE.md +74 -0
- adamast-0.1.0/docs/CLAUDE_CODE.md +172 -0
- adamast-0.1.0/docs/CODEX.md +235 -0
- adamast-0.1.0/docs/COMPATIBILITY.md +48 -0
- adamast-0.1.0/docs/CONCEPTS.md +93 -0
- adamast-0.1.0/docs/CONFIGURATION.md +186 -0
- adamast-0.1.0/docs/CUSTOMIZATION.md +187 -0
- adamast-0.1.0/docs/DASHBOARD.md +63 -0
- adamast-0.1.0/docs/EXAMPLE_RUN.md +98 -0
- adamast-0.1.0/docs/GETTING_STARTED.md +230 -0
- adamast-0.1.0/docs/INSTALLATION.md +139 -0
- adamast-0.1.0/docs/INTEGRATION.md +238 -0
- adamast-0.1.0/docs/INTERACTIVE_CONVERSATIONS_RFC.md +397 -0
- adamast-0.1.0/docs/INTERACTIVE_SETUP.md +124 -0
- adamast-0.1.0/docs/NATIVE_LEARNING.md +92 -0
- adamast-0.1.0/docs/README.md +60 -0
- adamast-0.1.0/docs/SINGLE_LLM.md +87 -0
- adamast-0.1.0/docs/TAXONOMIES.md +77 -0
- adamast-0.1.0/docs/TRACES_AND_LEARNING.md +163 -0
- adamast-0.1.0/docs/TROUBLESHOOTING.md +206 -0
- adamast-0.1.0/docs/WEB_API.md +130 -0
- adamast-0.1.0/docs/adamast_runtime_loop.png +0 -0
- adamast-0.1.0/docs/assets/screenshots/dashboard-demo.png +0 -0
- adamast-0.1.0/docs/index.md +152 -0
- adamast-0.1.0/finding/__init__.py +6 -0
- adamast-0.1.0/finding/__main__.py +3 -0
- adamast-0.1.0/finding/assets/webview.html +259 -0
- adamast-0.1.0/finding/cli.py +95 -0
- adamast-0.1.0/finding/mast.json +91 -0
- adamast-0.1.0/finding/mast.py +23 -0
- adamast-0.1.0/finding/resolver.py +61 -0
- adamast-0.1.0/finding/store.py +191 -0
- adamast-0.1.0/finding/webview.py +478 -0
- adamast-0.1.0/judge_types/__init__.py +67 -0
- adamast-0.1.0/judge_types/assets/calibration/system.md +22 -0
- adamast-0.1.0/judge_types/assets/calibration/user.md +26 -0
- adamast-0.1.0/judge_types/assets/coverage/system.md +21 -0
- adamast-0.1.0/judge_types/assets/coverage/user.md +30 -0
- adamast-0.1.0/judge_types/assets/mapping/system.md +17 -0
- adamast-0.1.0/judge_types/assets/mapping/user.md +36 -0
- adamast-0.1.0/judge_types/assets/quality/system.md +22 -0
- adamast-0.1.0/judge_types/assets/quality/user.md +24 -0
- adamast-0.1.0/judge_types/assets/selection/system.md +16 -0
- adamast-0.1.0/judge_types/assets/selection/user.md +28 -0
- adamast-0.1.0/judge_types/reflection_judge/__init__.py +24 -0
- adamast-0.1.0/judge_types/reflection_judge/_llm.py +96 -0
- adamast-0.1.0/judge_types/reflection_judge/assets/analysis_system.md +12 -0
- adamast-0.1.0/judge_types/reflection_judge/assets/analysis_user.md +169 -0
- adamast-0.1.0/judge_types/reflection_judge/assets/mapping_system.md +11 -0
- adamast-0.1.0/judge_types/reflection_judge/assets/mapping_user.md +35 -0
- adamast-0.1.0/judge_types/reflection_judge/assets/retry_user.md +9 -0
- adamast-0.1.0/judge_types/reflection_judge/assets/schema_enums.json +122 -0
- adamast-0.1.0/judge_types/reflection_judge/assets/single_call_system.md +5 -0
- adamast-0.1.0/judge_types/reflection_judge/assets/single_call_user.md +20 -0
- adamast-0.1.0/judge_types/reflection_judge/judge.py +314 -0
- adamast-0.1.0/judge_types/reflection_judge/prompts.py +78 -0
- adamast-0.1.0/judge_types/reflection_judge/schema.py +238 -0
- adamast-0.1.0/judge_types/reflection_judge/selection.py +132 -0
- adamast-0.1.0/judge_types/selection_summary_judge.py +51 -0
- adamast-0.1.0/judge_types/simple.py +717 -0
- adamast-0.1.0/pyproject.toml +99 -0
- adamast-0.1.0/setup.cfg +4 -0
- adamast-0.1.0/tests/test_adapter_contracts.py +176 -0
- adamast-0.1.0/tests/test_claude_code_integration.py +1502 -0
- adamast-0.1.0/tests/test_claude_native_learning.py +708 -0
- adamast-0.1.0/tests/test_cli.py +68 -0
- adamast-0.1.0/tests/test_codex_integration.py +1659 -0
- adamast-0.1.0/tests/test_codex_learning_jobs.py +997 -0
- adamast-0.1.0/tests/test_config.py +430 -0
- adamast-0.1.0/tests/test_conversation_scope.py +595 -0
- adamast-0.1.0/tests/test_custom_hooks.py +716 -0
- adamast-0.1.0/tests/test_dashboard.py +471 -0
- adamast-0.1.0/tests/test_doctor.py +230 -0
- adamast-0.1.0/tests/test_fsio.py +142 -0
- adamast-0.1.0/tests/test_generation_lifecycle.py +460 -0
- adamast-0.1.0/tests/test_import_generation.py +257 -0
- adamast-0.1.0/tests/test_judge_implementations.py +361 -0
- adamast-0.1.0/tests/test_judge_types.py +288 -0
- adamast-0.1.0/tests/test_learning_calls.py +694 -0
- adamast-0.1.0/tests/test_lifecycle.py +305 -0
- adamast-0.1.0/tests/test_mast.py +86 -0
- adamast-0.1.0/tests/test_project_scope.py +77 -0
- adamast-0.1.0/tests/test_protocol.py +256 -0
- adamast-0.1.0/tests/test_redaction.py +47 -0
- adamast-0.1.0/tests/test_refinement_lifecycle.py +529 -0
- adamast-0.1.0/tests/test_refiner_no_retire.py +65 -0
- adamast-0.1.0/tests/test_reflection_parser.py +175 -0
- adamast-0.1.0/tests/test_register_taxonomy.py +319 -0
- adamast-0.1.0/tests/test_repository.py +43 -0
- adamast-0.1.0/tests/test_resolver.py +53 -0
- adamast-0.1.0/tests/test_runtime_options.py +81 -0
- adamast-0.1.0/tests/test_runtime_robustness.py +72 -0
- adamast-0.1.0/tests/test_single_llm_integration.py +410 -0
- adamast-0.1.0/tests/test_skip_judge.py +166 -0
- adamast-0.1.0/tests/test_status.py +65 -0
- adamast-0.1.0/tests/test_store.py +187 -0
- adamast-0.1.0/tests/test_taxonomy_data.py +167 -0
- adamast-0.1.0/tests/test_traces.py +89 -0
- adamast-0.1.0/tests/test_traces_cli.py +151 -0
- adamast-0.1.0/tests/test_webview.py +350 -0
- adamast-0.1.0/vendor/__init__.py +1 -0
- adamast-0.1.0/vendor/adamast/LICENSE +202 -0
- adamast-0.1.0/vendor/adamast/VENDORED.md +27 -0
- adamast-0.1.0/vendor/adamast/__init__.py +53 -0
- adamast-0.1.0/vendor/adamast/__main__.py +6 -0
- adamast-0.1.0/vendor/adamast/api.py +139 -0
- adamast-0.1.0/vendor/adamast/assets/classifier_system.md +2 -0
- adamast-0.1.0/vendor/adamast/assets/classifier_user.md +11 -0
- adamast-0.1.0/vendor/adamast/classifier.py +210 -0
- adamast-0.1.0/vendor/adamast/cli.py +109 -0
- adamast-0.1.0/vendor/adamast/config.py +74 -0
- adamast-0.1.0/vendor/adamast/llm.py +219 -0
- adamast-0.1.0/vendor/adamast/pipeline/__init__.py +5 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/README.md +12 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/a_failure_categories.md +49 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/category_a_architectural.md +25 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/category_a_common_header.md +14 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/category_a_empirical.md +25 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/category_ab_requirements.md +10 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/category_b_stage.md +24 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/category_c_common_header.md +9 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/category_c_domain_seeded.md +26 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/category_c_requirements.md +12 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/category_c_trace_grounded.md +26 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/category_merge.md +21 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/category_stage_execution.md +22 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/check_overlaps.md +22 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/checker_terms.json +109 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/cross_category_dedup.md +37 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/cross_category_validate.md +34 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/domain_analysis.md +41 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/fix_category_a.md +31 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/fix_category_b.md +29 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/fix_category_c.md +34 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/fix_validation_issues.md +20 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/max_codes_cap.md +16 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/role_classification.md +24 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/role_definitions.json +22 -0
- adamast-0.1.0/vendor/adamast/pipeline/assets/trace_structure.md +54 -0
- adamast-0.1.0/vendor/adamast/pipeline/check.py +599 -0
- adamast-0.1.0/vendor/adamast/pipeline/dedup.py +80 -0
- adamast-0.1.0/vendor/adamast/pipeline/domain.py +42 -0
- adamast-0.1.0/vendor/adamast/pipeline/generator.py +532 -0
- adamast-0.1.0/vendor/adamast/pipeline/pipeline.py +284 -0
- adamast-0.1.0/vendor/adamast/pipeline/prompts.py +100 -0
- adamast-0.1.0/vendor/adamast/pipeline/structure.py +425 -0
- adamast-0.1.0/vendor/adamast/pipeline/validate.py +104 -0
- adamast-0.1.0/vendor/adamast/traces/__init__.py +18 -0
- adamast-0.1.0/vendor/adamast/traces/loader.py +225 -0
- adamast-0.1.0/vendor/adamast/traces/normalizer.py +758 -0
- adamast-0.1.0/vendor/adamast/traces/signals.py +290 -0
- adamast-0.1.0/vendor/adamast/utils.py +168 -0
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable user-facing changes are documented here.
|
|
4
|
+
|
|
5
|
+
## Unreleased
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- The managed dashboard's readiness budget is 15 seconds by default (was 5)
|
|
10
|
+
and can be overridden with `ADAMAST_DASHBOARD_TIMEOUT`; the previous fixed
|
|
11
|
+
budget made dashboard startup flake on slow hosts and CI runners.
|
|
12
|
+
|
|
13
|
+
## 0.1.0 - 2026-07-16
|
|
14
|
+
|
|
15
|
+
AdaMAST is the new name of this project (previously ATLAS, distributed as
|
|
16
|
+
`atlas-skill`). Versioning restarts at 0.1.0 under the new `adamast`
|
|
17
|
+
distribution name; entries below 0.1.0 describe the `atlas-skill` lineage.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Package renamed `atlas-skill` → `adamast`; every `atlas-*` console command
|
|
22
|
+
is now `adamast-*` (`adamast-claude-install`, `adamast-doctor`, …).
|
|
23
|
+
- Python packages renamed: `atlas_integration` → `adamast_integration` and
|
|
24
|
+
`atlas_runtime` → `adamast_runtime`.
|
|
25
|
+
- User-level config and state paths renamed: `~/.claude/atlas-skill.json` →
|
|
26
|
+
`~/.claude/adamast.json`, `~/.codex/atlas-skill.json` →
|
|
27
|
+
`~/.codex/adamast.json`, data home `~/.atlas-skill` → `~/.adamast`, and
|
|
28
|
+
the project-local config default `atlas.json` → `adamast.json`.
|
|
29
|
+
- Environment variables renamed to `ADAMAST_*` (`ADAMAST_HOME`,
|
|
30
|
+
`ADAMAST_STORE_DIR`, `ADAMAST_TRACE_ROOT`, `ADAMAST_DISABLE_DASHBOARD`,
|
|
31
|
+
`ADAMAST_JUDGE_CAP`); the config/manifest key `atlas_model` is now
|
|
32
|
+
`adamast_model`; the learning receipt tag is now
|
|
33
|
+
`<ADAMAST_TAXONOMY_RECEIPT>`.
|
|
34
|
+
- The vendored research generation pipeline is now `vendor/adamast` (env
|
|
35
|
+
vars `ADAMAST_MODEL`, `ADAMAST_TIMEOUT`, `ADAMAST_MAX_WORKERS`,
|
|
36
|
+
`ADAMAST_MAX_CODES`), and the paper is referenced as the AdaMAST paper
|
|
37
|
+
(`docs/adamast_paper.pdf`). The built-in MAST taxonomy is unchanged.
|
|
38
|
+
|
|
39
|
+
### Added
|
|
40
|
+
|
|
41
|
+
- The `release` workflow publishes to PyPI through Trusted Publishing after
|
|
42
|
+
the GitHub release job succeeds.
|
|
43
|
+
|
|
44
|
+
### Migration
|
|
45
|
+
|
|
46
|
+
- Uninstall the old package before installing the new one — both ship the
|
|
47
|
+
shared `finding`, `judge_types`, and `vendor` modules and would collide:
|
|
48
|
+
run `atlas-claude-uninstall --user-level` / `atlas-codex-uninstall
|
|
49
|
+
--user-level`, `pip uninstall atlas-skill`, then `pip install adamast` and
|
|
50
|
+
re-run `adamast-claude-install --user-level` /
|
|
51
|
+
`adamast-codex-install --user-level`.
|
|
52
|
+
- To keep learned state, move `~/.atlas-skill` to `~/.adamast`, rename
|
|
53
|
+
`.atlas-*` marker files and directories inside it to `.adamast-*`, and
|
|
54
|
+
rename the `atlas_model` key in program manifests to `adamast_model`.
|
|
55
|
+
|
|
56
|
+
## 1.1.0b7 - 2026-07-15
|
|
57
|
+
|
|
58
|
+
### Changed
|
|
59
|
+
|
|
60
|
+
- Codex hook registrations now use distinct transient status messages for
|
|
61
|
+
taxonomy restore, state checks, trace saving, learning reconciliation, and
|
|
62
|
+
polling.
|
|
63
|
+
- The managed Codex skill now requires one compact checkpoint after an actual
|
|
64
|
+
failed tool call, using evidence already visible to the agent.
|
|
65
|
+
- Codex learning lifecycle notices remain queued through terminal `Stop` and
|
|
66
|
+
`SubagentStop` events and are consumed only when `SessionStart` or
|
|
67
|
+
`UserPromptSubmit` can render them through the active model.
|
|
68
|
+
|
|
69
|
+
### Fixed
|
|
70
|
+
|
|
71
|
+
- Codex `PostToolUse` no longer emits an unsupported `additionalContext`
|
|
72
|
+
payload or guesses failures from successful source and log text.
|
|
73
|
+
- Learning lifecycle notices are no longer consumed by a `PostToolUse` event
|
|
74
|
+
that cannot deliver them to the active Codex model.
|
|
75
|
+
|
|
76
|
+
## 1.1.0b6 - 2026-07-15
|
|
77
|
+
|
|
78
|
+
### Fixed
|
|
79
|
+
|
|
80
|
+
- Codex `SubagentStop` hooks reconcile completed candidate or support-review
|
|
81
|
+
receipts but no longer claim the next native-learning phase. Claims now wait
|
|
82
|
+
for `SessionStart` or `UserPromptSubmit`, which can deliver the launch
|
|
83
|
+
directive to the active model instead of stranding an invisible support job.
|
|
84
|
+
|
|
85
|
+
## 1.1.0b5 - 2026-07-15
|
|
86
|
+
|
|
87
|
+
### Changed
|
|
88
|
+
|
|
89
|
+
- Codex installs `SessionStart` for context compaction as well as startup and
|
|
90
|
+
resume, giving long-running desktop tasks a supported developer-context
|
|
91
|
+
boundary for native taxonomy dispatch when `UserPromptSubmit` is absent.
|
|
92
|
+
- Native learning now reports the independent support-review stage explicitly,
|
|
93
|
+
and the manifest's diagnostic job summary stays aligned with the durable job
|
|
94
|
+
file while jobs are queued, claimed, or waiting for activation.
|
|
95
|
+
- Native subagent receipt examples now contain real nested JSON objects instead
|
|
96
|
+
of quoted placeholders. One legacy stringified object layer is decoded before
|
|
97
|
+
the same strict candidate or support-review validation runs.
|
|
98
|
+
|
|
99
|
+
### Fixed
|
|
100
|
+
|
|
101
|
+
- Visible prose in refinement prompts and generated taxonomy summaries now uses
|
|
102
|
+
a typographic em dash instead of a double hyphen. Command options, CSS custom
|
|
103
|
+
properties, class names, badges, and Markdown syntax remain unchanged.
|
|
104
|
+
|
|
105
|
+
## 1.1.0b4 - 2026-07-15
|
|
106
|
+
|
|
107
|
+
### Fixed
|
|
108
|
+
|
|
109
|
+
- Codex no longer opens the taxonomy browser from a new `SessionStart` event.
|
|
110
|
+
The picker opens on the first real `UserPromptSubmit`, so background host
|
|
111
|
+
tasks and spawned agent sessions cannot create unsolicited browser windows.
|
|
112
|
+
- Native learning polling and job claims now require an active taxonomy
|
|
113
|
+
selection when the conversation selector is enabled. Internal sessions no
|
|
114
|
+
longer receive recursive taxonomy-generation directives.
|
|
115
|
+
- Resuming a selected Codex conversation remains silent and preserves its
|
|
116
|
+
existing taxonomy; resuming an unselected pending conversation waits for the
|
|
117
|
+
next user prompt instead of reopening the browser immediately.
|
|
118
|
+
- Detached taxonomy pickers now tolerate slow Windows interpreter startup and
|
|
119
|
+
terminate their worker if readiness still fails, instead of leaving an
|
|
120
|
+
orphaned localhost process.
|
|
121
|
+
|
|
122
|
+
## 1.1.0b3 - 2026-07-15
|
|
123
|
+
|
|
124
|
+
### Added
|
|
125
|
+
|
|
126
|
+
- Codex-native taxonomy learning now uses a subagent in the active task with a
|
|
127
|
+
durable claim/receipt protocol. It no longer requires a standalone Codex CLI
|
|
128
|
+
login or an external model API key.
|
|
129
|
+
- Every Codex lifecycle hook polls generation and refinement progress,
|
|
130
|
+
idempotently repairing a missed threshold trigger on the next event.
|
|
131
|
+
- Codex conversations can select MAST in a project that already has a learned
|
|
132
|
+
taxonomy. The selection creates a durable isolated `fresh-*` task group and
|
|
133
|
+
preserves the project's shared default taxonomy.
|
|
134
|
+
- Codex conversations open a session-bound localhost taxonomy library directly
|
|
135
|
+
from `SessionStart`. The browser applies and persists the choice before
|
|
136
|
+
reporting success, without depending on a later `UserPromptSubmit` event.
|
|
137
|
+
- The taxonomy library now uses the AdaMAST runtime visual language, provides a
|
|
138
|
+
searchable taxonomy rail and full code inspection, and treats generated
|
|
139
|
+
evidence as secondary expandable provenance.
|
|
140
|
+
- Claude Code taxonomy learning now uses native Agent subtasks in the active
|
|
141
|
+
session with the same durable claim/receipt lifecycle as Codex. It no longer
|
|
142
|
+
requires a standalone `claude -p` login or external model API key.
|
|
143
|
+
- Claude Code now supports the session-bound browser library, direct taxonomy
|
|
144
|
+
activation, durable fresh-MAST conversation routes, and missed-threshold
|
|
145
|
+
polling on every successful lifecycle hook.
|
|
146
|
+
- The documentation site now leads with host installation, native-learning
|
|
147
|
+
behavior, architecture ownership, and a complete local dashboard example.
|
|
148
|
+
|
|
149
|
+
### Changed
|
|
150
|
+
|
|
151
|
+
- Codex taxonomy workers receive only a frozen prompt and output schema, then
|
|
152
|
+
return a bounded receipt through `SubagentStop`. The foreground hook
|
|
153
|
+
coordinator remains the sole validator and activation owner.
|
|
154
|
+
- `codex.worker_model` and `codex.codex_cli_path` remain readable compatibility
|
|
155
|
+
fields but are not used by native in-task learning.
|
|
156
|
+
- `claude_code.worker_model` and `claude_code.claude_cli_path` remain readable
|
|
157
|
+
compatibility fields but are not used by native in-session learning.
|
|
158
|
+
- Taxonomy selectors and the browser catalog prefer a human-facing
|
|
159
|
+
`display_name` while keeping generated taxonomy IDs as immutable internal
|
|
160
|
+
keys. Older records fall back to their domain, and new native candidates may
|
|
161
|
+
provide a concise display name.
|
|
162
|
+
- Host-neutral browser transport, fresh-session routing, threshold polling,
|
|
163
|
+
and receipt validation now live in `adamast_integration/interactive`; Codex and
|
|
164
|
+
Claude Code retain stable facade modules for compatibility.
|
|
165
|
+
|
|
166
|
+
### Fixed
|
|
167
|
+
|
|
168
|
+
- Final-gate status parsing now accepts a bounded vocabulary and uses a
|
|
169
|
+
runtime-owned repair counter, preventing negated prose or model-supplied
|
|
170
|
+
attempt counts from bypassing the gate.
|
|
171
|
+
- Native taxonomy replacement codes now require exact frozen-trace quotes;
|
|
172
|
+
activation verifies every span and records a per-code validation result.
|
|
173
|
+
- Active sessions now carry heartbeat leases, and activation/status paths
|
|
174
|
+
conservatively reconcile abandoned sessions after a legacy grace lease.
|
|
175
|
+
- Malformed or unreadable trace files now abort learning snapshots with the
|
|
176
|
+
affected path instead of silently changing the evidence set.
|
|
177
|
+
- Codex compact checkpoints recognize `no further action required` as complete.
|
|
178
|
+
- Codex and Claude uninstallers now remove exact managed dispatcher commands
|
|
179
|
+
while preserving unrelated hooks with AdaMAST-like names or config paths.
|
|
180
|
+
- Repository licensing, vendored-pipeline provenance, result-artifact claims,
|
|
181
|
+
package maps, linting, and a 78% coverage floor now match the shipped files.
|
|
182
|
+
|
|
183
|
+
- Codex user-level hooks now ignore host-maintenance conversations rooted in
|
|
184
|
+
`~/.codex/memories`, preventing internal memory work from opening a taxonomy
|
|
185
|
+
browser alongside an unrelated user task.
|
|
186
|
+
- Resumed Codex and Claude Code conversations recover an exact legacy inline
|
|
187
|
+
taxonomy reply from their transcript before launching the browser. This
|
|
188
|
+
repairs selections missed when `UserPromptSubmit` was not emitted.
|
|
189
|
+
- Codex and Claude Code context now distinguishes the taxonomy originally
|
|
190
|
+
selected as a lineage seed from the generated or refined taxonomy currently
|
|
191
|
+
active. Checkpoints are explicitly directed to the active taxonomy's codes
|
|
192
|
+
instead of continuing to present MAST as pinned after activation.
|
|
193
|
+
- Resumed Codex and Claude Code conversations now retain their original AdaMAST
|
|
194
|
+
program scope even when the host reports a different current working
|
|
195
|
+
directory. Existing selected or disabled session state is migrated into the
|
|
196
|
+
new durable conversation-scope binding before a selector can reopen.
|
|
197
|
+
- The browser selector confirmation now names the active host instead of
|
|
198
|
+
always telling Claude Code users to return to Codex.
|
|
199
|
+
- Codex Desktop sessions that omit `UserPromptSubmit` no longer remain stuck in
|
|
200
|
+
`AdaMAST is waiting for taxonomy selection` after a browser choice.
|
|
201
|
+
- The Codex selector now displays MAST as a numbered choice even when the
|
|
202
|
+
project already has a learned taxonomy; its reply instructions no longer
|
|
203
|
+
advertise a hidden option.
|
|
204
|
+
- Claude taxonomy receipts bypass the ordinary blocking `SubagentStop`
|
|
205
|
+
reflection, preventing the learning Agent from recursively gating itself;
|
|
206
|
+
all other Claude subagents retain the existing checkpoint behavior.
|
|
207
|
+
|
|
208
|
+
- The user-level interactive placeholder model (`interactive-session`)
|
|
209
|
+
adopts whatever AdaMAST model a program already records instead of raising
|
|
210
|
+
a conflict. Program state written by an earlier release (which recorded
|
|
211
|
+
the old default model) no longer fails every hook event in previously
|
|
212
|
+
used projects.
|
|
213
|
+
|
|
214
|
+
## 1.1.0b2 - 2026-07-14
|
|
215
|
+
|
|
216
|
+
### Fixed
|
|
217
|
+
|
|
218
|
+
- Claude Code hooks are registered as `python -m
|
|
219
|
+
adamast_integration.claude_code.dispatcher` instead of an absolute dispatcher
|
|
220
|
+
file path, so switching between wheel and editable installs (or relocating
|
|
221
|
+
the package) no longer breaks every hook event.
|
|
222
|
+
- Shared state files (program manifest, session state, worker heartbeats,
|
|
223
|
+
traces, learning jobs, evidence, dashboard state) retry atomic replaces and
|
|
224
|
+
reads on Windows sharing violations instead of failing hooks and background
|
|
225
|
+
learning jobs with transient `PermissionError`.
|
|
226
|
+
- Read-only manifest lock cycles (activation polls, cadence checks) no longer
|
|
227
|
+
rewrite the manifest file on every exit.
|
|
228
|
+
- Hook dispatchers pin stdin/stdout/stderr to UTF-8, fixing mojibake in gate
|
|
229
|
+
and selector text on Windows hosts.
|
|
230
|
+
- Native learning workers scrub the spawning session's transport variables
|
|
231
|
+
(`ANTHROPIC_BASE_URL`, host OAuth plumbing, `OPENAI_BASE_URL`) so the
|
|
232
|
+
detached CLI authenticates with its own persisted login instead of failing
|
|
233
|
+
with 401s against a session-scoped gateway. Deliberate user API keys are
|
|
234
|
+
preserved.
|
|
235
|
+
|
|
236
|
+
## 1.1.0b1 - 2026-07-14
|
|
237
|
+
|
|
238
|
+
### Added
|
|
239
|
+
|
|
240
|
+
- User-level, zero-config Codex and Claude Code installers.
|
|
241
|
+
- One completed assistant episode per trace for interactive conversations.
|
|
242
|
+
- Automatic Git-project and task-group scoping shared across conversations.
|
|
243
|
+
- In-chat taxonomy selection with MAST, compatible stored taxonomies, and an
|
|
244
|
+
AdaMAST-off choice.
|
|
245
|
+
- Detached native taxonomy generation and refinement workers that reuse the
|
|
246
|
+
signed-in Codex or Claude Code CLI instead of requiring a separate API key.
|
|
247
|
+
- Visible, exactly-once generation and refinement trigger/completion notices.
|
|
248
|
+
- Durable, idempotent learning jobs with frozen evidence snapshots, stale-job
|
|
249
|
+
recovery, validation before activation, and taxonomy lineage.
|
|
250
|
+
- Interactive installation and native-worker diagnostics in `adamast-doctor`.
|
|
251
|
+
|
|
252
|
+
### Changed
|
|
253
|
+
|
|
254
|
+
- Codex skill guidance now installs to the documented user skill directory,
|
|
255
|
+
`~/.agents/skills`.
|
|
256
|
+
- Codex and Claude Code use a shared interactive learning-state contract while
|
|
257
|
+
retaining host-specific worker launchers.
|
|
258
|
+
- Bedrock taxonomy calls honor the configured AdaMAST timeout and adaptive retry
|
|
259
|
+
policy.
|
|
260
|
+
|
|
261
|
+
### Compatibility
|
|
262
|
+
|
|
263
|
+
- Existing `codex_learning` manifest state migrates to `interactive_learning`
|
|
264
|
+
on first use.
|
|
265
|
+
- Project-local, provider-backed installs keep their existing required config
|
|
266
|
+
and defaults.
|
|
267
|
+
|
|
268
|
+
## 1.0.0
|
|
269
|
+
|
|
270
|
+
- Initial packaged AdaMAST runtime with MAST fallback, trace persistence,
|
|
271
|
+
generation/refinement, dashboard, Claude Code, Codex, single-LLM, and
|
|
272
|
+
harness-neutral integrations.
|
adamast-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
include README.md
|
|
2
|
+
include CHANGELOG.md
|
|
3
|
+
include SKILL.md
|
|
4
|
+
include LICENSE
|
|
5
|
+
recursive-include docs *.md
|
|
6
|
+
recursive-include docs *.png
|
|
7
|
+
recursive-include finding *.json
|
|
8
|
+
recursive-include finding/assets *.html
|
|
9
|
+
recursive-include adamast_runtime/assets *.md
|
|
10
|
+
recursive-include adamast_runtime/assets *.html
|
|
11
|
+
recursive-include adamast_runtime/assets *.json
|
|
12
|
+
recursive-include adamast_integration/claude_code/assets *.md
|
|
13
|
+
recursive-include adamast_integration/claude_code/assets *.json
|
|
14
|
+
recursive-include adamast_integration/codex/assets *.md
|
|
15
|
+
recursive-include adamast_integration/codex/assets *.yaml
|
|
16
|
+
recursive-include adamast_integration/single_llm/assets *.md
|
|
17
|
+
recursive-include judge_types/assets *.md
|
|
18
|
+
recursive-include judge_types/reflection_judge/assets *.md
|
|
19
|
+
recursive-include judge_types/reflection_judge/assets *.json
|
|
20
|
+
recursive-include vendor/adamast/assets *.md
|
|
21
|
+
recursive-include vendor/adamast/pipeline/assets *.md
|
|
22
|
+
recursive-include vendor/adamast/pipeline/assets *.json
|
|
23
|
+
recursive-include vendor/adamast LICENSE VENDORED.md
|