fable-engine 1.3.1__py3-none-any.whl

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 (104) hide show
  1. fable_compressor.py +356 -0
  2. fable_engine/__init__.py +1 -0
  3. fable_engine/actions/__init__.py +291 -0
  4. fable_engine/actions/cas.py +182 -0
  5. fable_engine/actions/deliberation.py +523 -0
  6. fable_engine/actions/fleet.py +807 -0
  7. fable_engine/actions/lifecycle.py +298 -0
  8. fable_engine/actions/scrapers.py +116 -0
  9. fable_engine/actions/system3.py +815 -0
  10. fable_engine/browser.py +824 -0
  11. fable_engine/cas.py +974 -0
  12. fable_engine/fable_session.json +510 -0
  13. fable_engine/guards.py +283 -0
  14. fable_engine/schema.py +714 -0
  15. fable_engine/scrapers/__init__.py +32 -0
  16. fable_engine/scrapers/arxiv.py +115 -0
  17. fable_engine/scrapers/base.py +386 -0
  18. fable_engine/scrapers/github.py +129 -0
  19. fable_engine/scrapers/reddit.py +154 -0
  20. fable_engine/scrapers/web.py +120 -0
  21. fable_engine/scrapers/x.py +125 -0
  22. fable_engine/scrapers/youtube.py +132 -0
  23. fable_engine/server.py +414 -0
  24. fable_engine/session.py +1819 -0
  25. fable_engine/test_server.py +1362 -0
  26. fable_engine/updater.py +541 -0
  27. fable_engine-1.3.1.dist-info/LICENSE +22 -0
  28. fable_engine-1.3.1.dist-info/METADATA +173 -0
  29. fable_engine-1.3.1.dist-info/RECORD +104 -0
  30. fable_engine-1.3.1.dist-info/WHEEL +5 -0
  31. fable_engine-1.3.1.dist-info/entry_points.txt +5 -0
  32. fable_engine-1.3.1.dist-info/top_level.txt +6 -0
  33. fable_mode/__init__.py +3 -0
  34. fable_mode/__main__.py +4 -0
  35. fable_mode/adapters.py +1014 -0
  36. fable_mode/installer.py +553 -0
  37. fable_mode/launcher.py +437 -0
  38. fable_mode/manifest.py +142 -0
  39. fable_mode/resources.json +114 -0
  40. fable_mode/safety.py +103 -0
  41. fable_mode_entry.py +10 -0
  42. fable_v2/__init__.py +146 -0
  43. fable_v2/adapters.py +151 -0
  44. fable_v2/coder_fleet/__init__.py +100 -0
  45. fable_v2/coder_fleet/ast_tools.py +158 -0
  46. fable_v2/coder_fleet/compute.py +199 -0
  47. fable_v2/coder_fleet/design_engine.py +1316 -0
  48. fable_v2/coder_fleet/diagnostics.py +293 -0
  49. fable_v2/coder_fleet/fleet_dispatcher.py +214 -0
  50. fable_v2/coder_fleet/mock_auditor.py +306 -0
  51. fable_v2/coder_fleet/mutation.py +216 -0
  52. fable_v2/coder_fleet/property_oracle.py +260 -0
  53. fable_v2/coder_fleet/receipt_attestor.py +122 -0
  54. fable_v2/coder_fleet/red_team_swarm.py +908 -0
  55. fable_v2/coder_fleet/test_harness.py +198 -0
  56. fable_v2/coder_fleet/vector_engine.py +1287 -0
  57. fable_v2/coder_fleet/visual.py +357 -0
  58. fable_v2/coder_fleet/workspace.py +153 -0
  59. fable_v2/cortical/__init__.py +20 -0
  60. fable_v2/cortical/plasticity_engine.py +992 -0
  61. fable_v2/execution_broker.py +811 -0
  62. fable_v2/proof_engine.py +1141 -0
  63. fable_v2/protocol.py +485 -0
  64. fable_v2/runtime.py +1010 -0
  65. fable_v2/system3/__init__.py +204 -0
  66. fable_v2/system3/causal.py +558 -0
  67. fable_v2/system3/dialectical.py +577 -0
  68. fable_v2/system3/evolution.py +503 -0
  69. fable_v2/system3/executive.py +338 -0
  70. fable_v2/system3/free_energy.py +479 -0
  71. fable_v2/system3/hyperbolic.py +555 -0
  72. fable_v2/system3/induction.py +336 -0
  73. fable_v2/system3/kripke.py +548 -0
  74. fable_v2/system3/oracle.py +745 -0
  75. fable_v2/verifiers.py +72 -0
  76. tests/__init__.py +1 -0
  77. tests/test_anti_loop_circuit_breaker.py +64 -0
  78. tests/test_auto_updater.py +407 -0
  79. tests/test_coder_fleet.py +535 -0
  80. tests/test_delegation_compiler.py +54 -0
  81. tests/test_descriptor_boundaries.py +126 -0
  82. tests/test_design_engine.py +603 -0
  83. tests/test_epistemic_evidence_validator.py +66 -0
  84. tests/test_execution_broker.py +233 -0
  85. tests/test_fable_v2.py +406 -0
  86. tests/test_fleet_transitions.py +116 -0
  87. tests/test_fsm_redteam_evolution.py +406 -0
  88. tests/test_goal_rubric_and_pipeline.py +367 -0
  89. tests/test_hebbian_plasticity.py +585 -0
  90. tests/test_packaging_runtime.py +194 -0
  91. tests/test_proof_engine.py +259 -0
  92. tests/test_red_team_swarm.py +645 -0
  93. tests/test_redteam_remediation.py +169 -0
  94. tests/test_registration_transaction.py +375 -0
  95. tests/test_requested_regressions.py +467 -0
  96. tests/test_scrapers.py +370 -0
  97. tests/test_server_actions.py +93 -0
  98. tests/test_server_frontier_actions.py +269 -0
  99. tests/test_server_protocol.py +88 -0
  100. tests/test_stealth_browser.py +970 -0
  101. tests/test_system3.py +381 -0
  102. tests/test_system3_deep_integration.py +385 -0
  103. tests/test_system3_frontier.py +436 -0
  104. tests/test_vector_engine.py +608 -0
fable_compressor.py ADDED
@@ -0,0 +1,356 @@
1
+ """
2
+ Fable-Mode Token Compression Subsystem (FableCompress)
3
+ ======================================================
4
+ Pure standard library Python implementation of content-addressed storage (CAS),
5
+ adaptive micro-payload batching, high-entropy micro-bytecode serialization,
6
+ zero-copy windowed line slice viewing, and token compression verification.
7
+
8
+ Author: Antigravity Autonomous Subagent Fleet
9
+ License: MIT
10
+ """
11
+
12
+ from __future__ import annotations
13
+
14
+ import json
15
+ import os
16
+ import pathlib
17
+ import sys
18
+ import tempfile
19
+ import threading
20
+ import hashlib
21
+ import time
22
+ import unittest
23
+ from typing import Any, Dict, Iterator, List, Optional, Tuple, Union
24
+
25
+ # Ensure UTF-8 output encoding across Windows consoles and standard streams
26
+ if hasattr(sys.stdout, "reconfigure"):
27
+ try:
28
+ sys.stdout.reconfigure(encoding="utf-8")
29
+ except Exception:
30
+ pass
31
+
32
+ # Canonical implementations re-exported from fable_engine.cas
33
+ from fable_engine.cas import (
34
+ DATA_DIR,
35
+ FABLE_CAS_DIR,
36
+ MAX_CAS_OBJECT_BYTES,
37
+ MAX_SLICE_RESPONSE_BYTES,
38
+ AdaptiveChunkAccumulator,
39
+ CASNotFoundError,
40
+ CASSliceViewer,
41
+ CAS_ENGINE,
42
+ CompositeFrame,
43
+ FableCASError,
44
+ FableCASStore,
45
+ FableCompress,
46
+ FableGrammar333,
47
+ IntegrityError,
48
+ ThreadSafeLRUCache,
49
+ _assert_private_path,
50
+ _open_directory_nofollow,
51
+ _safe_cas_node,
52
+ )
53
+
54
+
55
+ # ============================================================================
56
+ # Red-Team & Verification Test Suite
57
+ # ============================================================================
58
+
59
+ class TestFableCompressRedTeam(unittest.TestCase):
60
+ """
61
+ Comprehensive Red-Team and Invariant Verification Suite for FableCompress.
62
+ Asserts:
63
+ 1. Lock-free atomic tmp-replace integrity
64
+ 2. Zero third-party dependencies
65
+ 3. Strict UTF-8 Windows preservation
66
+ 4. 100% bit-exact lossless roundtrips
67
+ 5. Invariant <= 0.003 tokens/character on large payloads
68
+ """
69
+
70
+ def setUp(self):
71
+ self.test_dir = pathlib.Path(tempfile.mkdtemp(prefix="fable_test_"))
72
+ self.compressor = FableCompress(root_dir=self.test_dir)
73
+
74
+ def tearDown(self):
75
+ # Clean up temporary test files
76
+ import shutil
77
+ if self.test_dir.exists():
78
+ shutil.rmtree(self.test_dir, ignore_errors=True)
79
+
80
+ def test_01_cas_store_atomic_writes_and_sha256(self):
81
+ """Verify atomic writes, deterministic SHA-256 keys, and exact retrieval."""
82
+ store = self.compressor.cas_store
83
+ sample_text = "Fable-Mode Deterministic Deliberation Invariant Proof alpha beta gamma delta epsilon"
84
+
85
+ uri = store.put(sample_text)
86
+ self.assertTrue(uri.startswith("cas://"))
87
+ self.assertEqual(len(store.normalize_ref(uri)), 64)
88
+
89
+ # Retrieve text and bytes
90
+ retrieved_text = store.get_text(uri)
91
+ self.assertEqual(retrieved_text, sample_text)
92
+ self.assertEqual(store.get_bytes(uri), sample_text.encode("utf-8"))
93
+
94
+ # Verify integrity check returns True
95
+ self.assertTrue(store.verify_integrity(uri))
96
+
97
+ def test_02_cas_corruption_detection(self):
98
+ """Red-team tamper test: corrupting on-disk bytes must fail integrity validation."""
99
+ store = self.compressor.cas_store
100
+ sample_text = "Original pristine payload before adversarial tampering."
101
+ uri = store.put(sample_text)
102
+ file_path = store.get_file_path(uri)
103
+
104
+ # Clear memory cache so read hits disk
105
+ store.cache.clear()
106
+
107
+ # Corrupt single byte in file
108
+ with open(file_path, "r+b") as f:
109
+ f.seek(0)
110
+ f.write(b"X")
111
+
112
+ # Must raise IntegrityError when reading with verification enabled
113
+ with self.assertRaises(IntegrityError):
114
+ store.get_bytes(uri, verify=True)
115
+
116
+ self.assertFalse(store.verify_integrity(uri))
117
+
118
+ def test_03_lru_cache_bounds_and_eviction(self):
119
+ """Verify LRU cache capacity limits and eviction behavior."""
120
+ small_store = FableCASStore(root_dir=self.test_dir / "lru_test", cache_capacity=3)
121
+ uris = [small_store.put(f"item_{i}") for i in range(5)]
122
+
123
+ # Cache should only hold 3 items
124
+ self.assertEqual(len(small_store.cache), 3)
125
+
126
+ # Oldest items (0 and 1) should be evicted from memory cache but persist on disk
127
+ self.assertFalse(small_store.cache.contains(small_store.normalize_ref(uris[0])))
128
+ self.assertTrue(small_store.exists(uris[0]))
129
+ self.assertEqual(small_store.get_text(uris[0]), "item_0")
130
+
131
+ def test_04_adaptive_chunk_accumulator_coalescing(self):
132
+ """Verify sub-1000 character stream micro-payload batching into 1KB+ frames."""
133
+ acc = self.compressor.accumulator
134
+ micro_payloads = [f"Micro-action log entry #{i:04d}: processed step safely." for i in range(40)]
135
+
136
+ all_flushed_uris = []
137
+ for p in micro_payloads:
138
+ uris = acc.add(p, metadata={"step": "telemetry"})
139
+ all_flushed_uris.extend(uris)
140
+
141
+ # Final flush
142
+ all_flushed_uris.extend(acc.flush())
143
+
144
+ self.assertGreater(len(all_flushed_uris), 0)
145
+ stats = acc.get_stats()
146
+ self.assertEqual(stats["total_payloads_ingested"], 40)
147
+
148
+ # Verify lossless extraction of every micro-payload from the flushed frames
149
+ extracted_count = 0
150
+ for uri in all_flushed_uris:
151
+ frame_json = self.compressor.cas_store.get_text(uri)
152
+ frame = CompositeFrame.deserialize_json(frame_json)
153
+ for idx, item in enumerate(frame.items):
154
+ p_text, meta = acc.extract_item(uri, idx)
155
+ self.assertEqual(p_text, micro_payloads[extracted_count])
156
+ self.assertEqual(meta.get("step"), "telemetry")
157
+ extracted_count += 1
158
+
159
+ self.assertEqual(extracted_count, 40)
160
+
161
+ def test_05_grammar333_micro_bytecode_roundtrip(self):
162
+ """Verify 100% bit-exact lossless roundtrip for all tool action types."""
163
+ test_actions = [
164
+ {
165
+ "action_type": "run_command",
166
+ "command": "pytest -v tests/test_cas.py",
167
+ "cwd": "C:/Projects/Fable",
168
+ "exit_code": 0,
169
+ "stdout_ref": "cas://abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789",
170
+ },
171
+ {
172
+ "action_type": "view_file",
173
+ "path": "c:/Users/hp1/Desktop/Documents/fable_compressor.py",
174
+ "start_line": 1,
175
+ "end_line": 100,
176
+ "content_ref": "cas://1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
177
+ },
178
+ {
179
+ "action_type": "edit_file",
180
+ "target_file": "c:/repo/module.py",
181
+ "start_line": 42,
182
+ "end_line": 45,
183
+ "target_content": "def old_fn(): pass",
184
+ "replacement_content": "def new_fn(): return True",
185
+ },
186
+ {
187
+ "action_type": "mcp_call",
188
+ "server": "fable-engine",
189
+ "tool": "fable_session",
190
+ "arguments": {"action": "log_refinement_cycle", "cycle": 4},
191
+ "result_ref": "cas://0000111122223333444455556666777788889999aaaabbbbccccddddeeeeffff",
192
+ },
193
+ {
194
+ "action_type": "cas_ref",
195
+ "cas_ref": "cas://deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef",
196
+ "label": "system_prompt_manifest",
197
+ },
198
+ ]
199
+
200
+ for action in test_actions:
201
+ encoded_bytes = FableGrammar333.serialize(action)
202
+ self.assertTrue(encoded_bytes.startswith(FableGrammar333.MAGIC_HEADER))
203
+ decoded = FableGrammar333.deserialize(encoded_bytes)
204
+ self.assertEqual(decoded, action)
205
+
206
+ def test_06_cas_slice_viewer_zero_copy(self):
207
+ """Verify windowed line slice extractor with 1-based indexing and boundaries."""
208
+ sample_lines = [f"Line {i:03d}: The quick brown fox jumps over the lazy dog." for i in range(1, 101)]
209
+ raw_doc = "\n".join(sample_lines)
210
+ uri = self.compressor.cas_store.put(raw_doc)
211
+
212
+ viewer = self.compressor.slice_viewer
213
+
214
+ # Exact line count
215
+ self.assertEqual(viewer.get_line_count(uri), 99) # 99 newlines in 100 lines
216
+
217
+ # Slice lines 10 to 15 (1-indexed inclusive)
218
+ slice_result = viewer.view_slice(uri, 10, 15)
219
+ expected = "\n".join(sample_lines[9:15])
220
+ self.assertEqual(slice_result, expected)
221
+
222
+ # Slice with line numbers
223
+ numbered = viewer.view_slice(uri, 1, 2, include_line_numbers=True)
224
+ self.assertIn(" 1 | Line 001:", numbered)
225
+ self.assertIn(" 2 | Line 002:", numbered)
226
+
227
+ # Edge cases: out of bounds end line
228
+ full_slice = viewer.view_slice(uri, 1, 500)
229
+ self.assertEqual(full_slice, raw_doc)
230
+
231
+ def test_07_concurrent_multithreaded_writes(self):
232
+ """Red-team race condition test: 20 concurrent threads writing to CAS."""
233
+ store = self.compressor.cas_store
234
+ errors: List[Exception] = []
235
+
236
+ def worker(thread_id: int):
237
+ try:
238
+ for j in range(20):
239
+ data = f"Thread-{thread_id} iteration {j}: payload content {hashlib.md5(f'{thread_id}-{j}'.encode()).hexdigest()}"
240
+ uri = store.put(data)
241
+ read_back = store.get_text(uri)
242
+ if read_back != data:
243
+ raise ValueError(f"Mismatch in thread {thread_id}!")
244
+ except Exception as e:
245
+ errors.append(e)
246
+
247
+ threads = [threading.Thread(target=worker, args=(i,)) for i in range(20)]
248
+ for t in threads:
249
+ t.start()
250
+ for t in threads:
251
+ t.join()
252
+
253
+ self.assertEqual(len(errors), 0, f"Thread errors encountered: {errors}")
254
+
255
+ def test_08_fuzzing_unicode_and_special_chars(self):
256
+ """Red-team fuzz test: UTF-8 edge cases, surrogates, emojis, binary strings."""
257
+ fuzz_samples = [
258
+ "",
259
+ "A",
260
+ "\n\n\n\r\n\t",
261
+ "CJK Unicode: test characters",
262
+ "\x00\x01\x02\x03\x7f\x80\xff" * 50,
263
+ json.dumps({"null": None, "bool": True, "float": 3.141592653589793, "nested": [1, 2, {"a": "b"}]}),
264
+ "Line with no ending newline",
265
+ "Line with CRLF\r\nAnother Line\r\nFinal Line\r\n",
266
+ ]
267
+
268
+ for idx, sample in enumerate(fuzz_samples):
269
+ uri = self.compressor.cas_store.put(sample)
270
+ retrieved = self.compressor.cas_store.get_text(uri) if isinstance(sample, str) else self.compressor.cas_store.get_bytes(uri)
271
+ self.assertEqual(retrieved, sample, f"Fuzz sample {idx} failed roundtrip")
272
+
273
+ def test_09_invariant_token_ratio_lte_0_003(self):
274
+ """
275
+ CRITICAL INVARIANT TEST:
276
+ Asserts that CAS-compressed representations achieve <= 0.003 tokens/character
277
+ on realistic large tool payloads (10KB, 50KB, 100KB, 500KB).
278
+ """
279
+ payload_sizes = [10_000, 50_000, 100_000, 500_000]
280
+
281
+ print("\n" + "=" * 70)
282
+ print("FABLE-MODE TOKEN COMPRESSION INVARIANT PROOF (<= 0.003 tokens/char)")
283
+ print("=" * 70)
284
+
285
+ for size in payload_sizes:
286
+ # Generate realistic structured tool trace / log output
287
+ raw_payload = (
288
+ f"[TRACE_START: size={size}]\n"
289
+ + "function analyze_ast_node(node: ASTNode) -> DiagnosticResult {\n"
290
+ + " // Fable-Mode recursive Deliberation pass\n"
291
+ + " const state = evaluate_invariants(node.get_constraints());\n"
292
+ + " return { valid: state.is_consistent(), score: 0.998 };\n"
293
+ + "}\n"
294
+ ) * (size // 200 + 1)
295
+ raw_payload = raw_payload[:size]
296
+
297
+ # Compress payload to CAS
298
+ compressed_node = self.compressor.compress_payload_to_cas(raw_payload, label="ast_analysis_dump")
299
+
300
+ # Canonical representation passed into LLM prompt
301
+ compressed_repr = json.dumps(compressed_node, separators=(",", ":"))
302
+
303
+ # Calculate token ratio
304
+ ratio = self.compressor.calculate_token_ratio(raw_payload, compressed_repr)
305
+ raw_tokens = self.compressor.estimate_token_count(raw_payload)
306
+ comp_tokens = self.compressor.estimate_token_count(compressed_repr)
307
+
308
+ pct_savings = (1.0 - (comp_tokens / float(raw_tokens))) * 100.0
309
+
310
+ print(
311
+ f"Payload: {size:7d} chars | "
312
+ f"Raw Tokens: {raw_tokens:6d} -> Comp Tokens: {comp_tokens:3d} | "
313
+ f"Ratio: {ratio:.6f} tokens/char | "
314
+ f"Savings: {pct_savings:.2f}% | "
315
+ f"Invariant (<=0.003): {'[PASS]' if ratio <= 0.003 else '[FAIL]'}"
316
+ )
317
+
318
+ # Strict assertion: Token ratio MUST be <= 0.003
319
+ self.assertLessEqual(
320
+ ratio,
321
+ 0.003,
322
+ f"Token ratio {ratio:.6f} exceeded invariant threshold 0.003 for size {size}"
323
+ )
324
+
325
+ # Verify 100% bit-exact lossless roundtrip recovery
326
+ recovered_text = self.compressor.decompress_cas_payload(compressed_node)
327
+ self.assertEqual(len(recovered_text), len(raw_payload))
328
+ self.assertEqual(recovered_text, raw_payload)
329
+
330
+ print("=" * 70 + "\n")
331
+
332
+
333
+ # ============================================================================
334
+ # 7. Main CLI Execution & Verification Entry Point
335
+ # ============================================================================
336
+
337
+ def run_verification() -> int:
338
+ """Execute test suite and print formatted report."""
339
+ print("=" * 70)
340
+ print("Fable-Mode Token Compression Subsystem (FableCompress) Verification")
341
+ print("=" * 70)
342
+
343
+ suite = unittest.TestLoader().loadTestsFromTestCase(TestFableCompressRedTeam)
344
+ runner = unittest.TextTestRunner(verbosity=2)
345
+ result = runner.run(suite)
346
+
347
+ if result.wasSuccessful():
348
+ print("\nALL TESTS PASSED! Strict Invariants & Bit-Exact Recovery Verified.")
349
+ return 0
350
+ else:
351
+ print(f"\nVERIFICATION FAILED: {len(result.failures)} failures, {len(result.errors)} errors.")
352
+ return 1
353
+
354
+
355
+ if __name__ == "__main__":
356
+ sys.exit(run_verification())
@@ -0,0 +1 @@
1
+ """Canonical Fable V1 MCP engine package."""
@@ -0,0 +1,291 @@
1
+ """Fable-Mode Modular Action Dispatch Registry and Facade."""
2
+ from __future__ import annotations
3
+
4
+ import logging
5
+ from typing import Any, Callable, Dict
6
+
7
+ logger = logging.getLogger("fable-engine.actions")
8
+
9
+ from fable_engine.guards import GLOBAL_VELOCITY_PROFILER
10
+
11
+ from fable_engine.actions.lifecycle import (
12
+ _handle_create_session,
13
+ _handle_set_timer,
14
+ _handle_get_status,
15
+ _handle_advance_phase,
16
+ _handle_unlock_execution,
17
+ _handle_checkpoint_session,
18
+ _handle_restore_session,
19
+ _handle_list_sessions,
20
+ )
21
+ from fable_engine.actions.deliberation import (
22
+ _handle_log_epistemic_item,
23
+ _handle_record_invariant,
24
+ _handle_log_refinement_cycle,
25
+ _handle_compile_delegation_contract,
26
+ _handle_track_file_change,
27
+ _handle_get_session_lineage,
28
+ _handle_inspect_plan,
29
+ _handle_verify_proof,
30
+ _handle_record_visual_mockups,
31
+ _handle_validate_event_history,
32
+ )
33
+ from fable_engine.actions.cas import (
34
+ _handle_compress_payload,
35
+ _handle_decompress_payload,
36
+ _handle_view_slice,
37
+ _handle_accumulate_payload,
38
+ _handle_flush_accumulator,
39
+ _handle_get_compression_stats,
40
+ )
41
+ from fable_engine.actions.system3 import (
42
+ _handle_system3_dialectical_synthesis,
43
+ _handle_system3_causal_simulate,
44
+ _handle_system3_evolve_paradigms,
45
+ _handle_system3_induce_axioms,
46
+ _handle_system3_meta_reflect,
47
+ _handle_system3_tri_level_orchestrate,
48
+ _handle_system3_hyperbolic_embed,
49
+ _handle_system3_kripke_verify,
50
+ _handle_system3_active_inference,
51
+ _handle_system3_proof_oracle,
52
+ )
53
+ from fable_engine.actions.fleet import (
54
+ _handle_set_goal_rubric,
55
+ _handle_evaluate_goal_rubric,
56
+ _handle_get_goal_rubric,
57
+ _handle_register_automation_pipeline,
58
+ _handle_red_team_code_review,
59
+ _handle_record_breakage_report,
60
+ _handle_verify_red_team_remediation,
61
+ _handle_evolve_cortex,
62
+ _handle_cortical_define_lobe,
63
+ _handle_cortical_list_lobes,
64
+ _handle_check_auto_update,
65
+ _handle_apply_auto_update,
66
+ _handle_audit_anti_slop,
67
+ _handle_infer_design_brief,
68
+ _handle_generate_design_tokens,
69
+ _handle_generate_awwwards_scaffold,
70
+ _handle_validate_preflight_design,
71
+ _handle_list_design_archetypes,
72
+ )
73
+ from fable_engine.actions.scrapers import (
74
+ _handle_scrape_web,
75
+ _handle_scrape_youtube,
76
+ _handle_scrape_reddit,
77
+ _handle_scrape_x,
78
+ _handle_scrape_github,
79
+ _handle_scrape_arxiv,
80
+ )
81
+
82
+ ACTION_DISPATCH: Dict[str, Callable[[Dict[str, Any]], str]] = {
83
+ "create_session": _handle_create_session,
84
+ "init": _handle_create_session,
85
+ "create": _handle_create_session,
86
+ "set_timer": _handle_set_timer,
87
+ "update_timer": _handle_set_timer,
88
+ "timer": _handle_set_timer,
89
+ "get_status": _handle_get_status,
90
+ "telemetry": _handle_get_status,
91
+ "status": _handle_get_status,
92
+ "advance_phase": _handle_advance_phase,
93
+ "next_phase": _handle_advance_phase,
94
+ "advance": _handle_advance_phase,
95
+ "log_epistemic_item": _handle_log_epistemic_item,
96
+ "log_item": _handle_log_epistemic_item,
97
+ "epistemic_log": _handle_log_epistemic_item,
98
+ "record_invariant": _handle_record_invariant,
99
+ "add_invariant": _handle_record_invariant,
100
+ "invariant": _handle_record_invariant,
101
+ "log_refinement_cycle": _handle_log_refinement_cycle,
102
+ "record_refinement": _handle_log_refinement_cycle,
103
+ "refine": _handle_log_refinement_cycle,
104
+ "unlock_execution": _handle_unlock_execution,
105
+ "unlock": _handle_unlock_execution,
106
+ "checkpoint_session": _handle_checkpoint_session,
107
+ "save_session": _handle_checkpoint_session,
108
+ "checkpoint": _handle_checkpoint_session,
109
+ "save": _handle_checkpoint_session,
110
+ "restore_session": _handle_restore_session,
111
+ "load_session": _handle_restore_session,
112
+ "restore": _handle_restore_session,
113
+ "load": _handle_restore_session,
114
+ "list_sessions": _handle_list_sessions,
115
+ "list": _handle_list_sessions,
116
+ "compile_delegation_contract": _handle_compile_delegation_contract,
117
+ "compile_contract": _handle_compile_delegation_contract,
118
+ "validate_contract": _handle_compile_delegation_contract,
119
+ "compress_payload": _handle_compress_payload,
120
+ "compress": _handle_compress_payload,
121
+ "cas_put": _handle_compress_payload,
122
+ "cas_store": _handle_compress_payload,
123
+ "decompress_payload": _handle_decompress_payload,
124
+ "decompress": _handle_decompress_payload,
125
+ "cas_get": _handle_decompress_payload,
126
+ "cas_read": _handle_decompress_payload,
127
+ "view_slice": _handle_view_slice,
128
+ "cas_slice": _handle_view_slice,
129
+ "slice": _handle_view_slice,
130
+ "accumulate_payload": _handle_accumulate_payload,
131
+ "accumulate": _handle_accumulate_payload,
132
+ "cas_accumulate": _handle_accumulate_payload,
133
+ "flush_accumulator": _handle_flush_accumulator,
134
+ "flush_cas": _handle_flush_accumulator,
135
+ "cas_flush": _handle_flush_accumulator,
136
+ "get_compression_stats": _handle_get_compression_stats,
137
+ "compression_stats": _handle_get_compression_stats,
138
+ "cas_stats": _handle_get_compression_stats,
139
+ "system3_dialectical_synthesis": _handle_system3_dialectical_synthesis,
140
+ "dialectical_synthesis": _handle_system3_dialectical_synthesis,
141
+ "triz_synthesis": _handle_system3_dialectical_synthesis,
142
+ "synthesis": _handle_system3_dialectical_synthesis,
143
+ "system3_causal_simulate": _handle_system3_causal_simulate,
144
+ "causal_simulate": _handle_system3_causal_simulate,
145
+ "causal_graph": _handle_system3_causal_simulate,
146
+ "do_calculus": _handle_system3_causal_simulate,
147
+ "system3_evolve_paradigms": _handle_system3_evolve_paradigms,
148
+ "evolve_paradigms": _handle_system3_evolve_paradigms,
149
+ "evolution_generation": _handle_system3_evolve_paradigms,
150
+ "genetic_optimize": _handle_system3_evolve_paradigms,
151
+ "system3_induce_axioms": _handle_system3_induce_axioms,
152
+ "induce_axioms": _handle_system3_induce_axioms,
153
+ "neuro_symbolic_induction": _handle_system3_induce_axioms,
154
+ "formalize_axioms": _handle_system3_induce_axioms,
155
+ "system3_meta_reflect": _handle_system3_meta_reflect,
156
+ "meta_reflect": _handle_system3_meta_reflect,
157
+ "cognitive_audit": _handle_system3_meta_reflect,
158
+ "meta_cognition": _handle_system3_meta_reflect,
159
+ "system3_tri_level_orchestrate": _handle_system3_tri_level_orchestrate,
160
+ "tri_level_orchestrate": _handle_system3_tri_level_orchestrate,
161
+ "cognitive_gear_shift": _handle_system3_tri_level_orchestrate,
162
+ "arbitrate_cognition": _handle_system3_tri_level_orchestrate,
163
+ "system3_hyperbolic_embed": _handle_system3_hyperbolic_embed,
164
+ "hyperbolic_embed": _handle_system3_hyperbolic_embed,
165
+ "poincare_embed": _handle_system3_hyperbolic_embed,
166
+ "hyperbolic_tree": _handle_system3_hyperbolic_embed,
167
+ "system3_kripke_verify": _handle_system3_kripke_verify,
168
+ "kripke_verify": _handle_system3_kripke_verify,
169
+ "modal_verify": _handle_system3_kripke_verify,
170
+ "ctl_check": _handle_system3_kripke_verify,
171
+ "system3_active_inference": _handle_system3_active_inference,
172
+ "active_inference": _handle_system3_active_inference,
173
+ "free_energy": _handle_system3_active_inference,
174
+ "fe_step": _handle_system3_active_inference,
175
+ "system3_proof_oracle": _handle_system3_proof_oracle,
176
+ "proof_oracle": _handle_system3_proof_oracle,
177
+ "curry_howard": _handle_system3_proof_oracle,
178
+ "formal_prove": _handle_system3_proof_oracle,
179
+ "track_file_change": _handle_track_file_change,
180
+ "track_file": _handle_track_file_change,
181
+ "record_file_change": _handle_track_file_change,
182
+ "get_session_lineage": _handle_get_session_lineage,
183
+ "lineage": _handle_get_session_lineage,
184
+ "session_lineage": _handle_get_session_lineage,
185
+ "inspect_plan": _handle_inspect_plan,
186
+ "plan": _handle_inspect_plan,
187
+ "inspect_blueprint": _handle_inspect_plan,
188
+ "verify_proof": _handle_verify_proof,
189
+ "validate_proof": _handle_verify_proof,
190
+ "check_proof": _handle_verify_proof,
191
+ "record_visual_mockups": _handle_record_visual_mockups,
192
+ "visual_mockups": _handle_record_visual_mockups,
193
+ "record_mockups": _handle_record_visual_mockups,
194
+ "validate_event_history": _handle_validate_event_history,
195
+ "validate_event_chain": _handle_validate_event_history,
196
+ "audit_events": _handle_validate_event_history,
197
+ "set_goal_rubric": _handle_set_goal_rubric,
198
+ "register_goal_rubric": _handle_set_goal_rubric,
199
+ "goal_rubric": _handle_set_goal_rubric,
200
+ "evaluate_goal_rubric": _handle_evaluate_goal_rubric,
201
+ "eval_goal_rubric": _handle_evaluate_goal_rubric,
202
+ "evaluate_rubric": _handle_evaluate_goal_rubric,
203
+ "score_rubric": _handle_evaluate_goal_rubric,
204
+ "get_goal_rubric": _handle_get_goal_rubric,
205
+ "get_rubric": _handle_get_goal_rubric,
206
+ "inspect_rubric": _handle_get_goal_rubric,
207
+ "register_automation_pipeline": _handle_register_automation_pipeline,
208
+ "register_pipeline": _handle_register_automation_pipeline,
209
+ "automation_pipeline": _handle_register_automation_pipeline,
210
+ "red_team_code_review": _handle_red_team_code_review,
211
+ "red_team_review": _handle_red_team_code_review,
212
+ "code_review_swarm": _handle_red_team_code_review,
213
+ "adversarial_review": _handle_red_team_code_review,
214
+ "record_breakage_report": _handle_record_breakage_report,
215
+ "log_breakage_report": _handle_record_breakage_report,
216
+ "breakage_report": _handle_record_breakage_report,
217
+ "verify_red_team_remediation": _handle_verify_red_team_remediation,
218
+ "verify_remediation": _handle_verify_red_team_remediation,
219
+ "red_team_verify": _handle_verify_red_team_remediation,
220
+ "evolve_cortex": _handle_evolve_cortex,
221
+ "cortical_evolve": _handle_evolve_cortex,
222
+ "evolve": _handle_evolve_cortex,
223
+ "cortical_define_lobe": _handle_cortical_define_lobe,
224
+ "define_cortical_lobe": _handle_cortical_define_lobe,
225
+ "sprout_cortical_lobe": _handle_cortical_define_lobe,
226
+ "cortical_list_lobes": _handle_cortical_list_lobes,
227
+ "list_cortical_lobes": _handle_cortical_list_lobes,
228
+ "list_lobes": _handle_cortical_list_lobes,
229
+ "check_auto_update": _handle_check_auto_update,
230
+ "auto_update_check": _handle_check_auto_update,
231
+ "apply_auto_update": _handle_apply_auto_update,
232
+ "auto_update_apply": _handle_apply_auto_update,
233
+ "audit_anti_slop": _handle_audit_anti_slop,
234
+ "anti_slop_audit": _handle_audit_anti_slop,
235
+ "infer_design_brief": _handle_infer_design_brief,
236
+ "design_brief": _handle_infer_design_brief,
237
+ "generate_design_tokens": _handle_generate_design_tokens,
238
+ "design_tokens": _handle_generate_design_tokens,
239
+ "generate_awwwards_scaffold": _handle_generate_awwwards_scaffold,
240
+ "awwwards_scaffold": _handle_generate_awwwards_scaffold,
241
+ "validate_preflight_design": _handle_validate_preflight_design,
242
+ "preflight_design": _handle_validate_preflight_design,
243
+ "list_design_archetypes": _handle_list_design_archetypes,
244
+ "design_archetypes": _handle_list_design_archetypes,
245
+ "list_archetypes": _handle_list_design_archetypes,
246
+ "archetypes": _handle_list_design_archetypes,
247
+ "scrape_web": _handle_scrape_web,
248
+ "web_scrape": _handle_scrape_web,
249
+ "scrape_youtube": _handle_scrape_youtube,
250
+ "youtube_scrape": _handle_scrape_youtube,
251
+ "scrape_reddit": _handle_scrape_reddit,
252
+ "reddit_scrape": _handle_scrape_reddit,
253
+ "scrape_x": _handle_scrape_x,
254
+ "x_scrape": _handle_scrape_x,
255
+ "twitter_scrape": _handle_scrape_x,
256
+ "scrape_github": _handle_scrape_github,
257
+ "github_scrape": _handle_scrape_github,
258
+ "scrape_arxiv": _handle_scrape_arxiv,
259
+ "arxiv_scrape": _handle_scrape_arxiv,
260
+ }
261
+
262
+
263
+ def handle_fable_session(arguments: Dict[str, Any]) -> str:
264
+ """Main dispatch handler for fable_session tool actions."""
265
+ try:
266
+ action = arguments.get("action", "").strip().lower()
267
+ if not action:
268
+ return "Error: Missing required parameter 'action'."
269
+ GLOBAL_VELOCITY_PROFILER.record_request(action, arguments)
270
+
271
+ handler = ACTION_DISPATCH.get(action)
272
+ if handler is not None:
273
+ return handler(arguments)
274
+ else:
275
+ return (
276
+ f"Error: Unknown action '{action}'. Supported actions: "
277
+ f"'create_session', 'set_timer', 'get_status', 'telemetry', 'advance_phase', "
278
+ f"'log_epistemic_item', 'record_invariant', 'log_refinement_cycle', 'unlock_execution', "
279
+ f"'checkpoint_session', 'restore_session', 'list_sessions', 'compile_delegation_contract', "
280
+ f"'compress_payload', 'decompress_payload', 'view_slice', 'accumulate_payload', 'flush_accumulator', 'get_compression_stats', "
281
+ f"'system3_dialectical_synthesis', 'system3_causal_simulate', 'system3_evolve_paradigms', 'system3_induce_axioms', 'system3_meta_reflect', 'system3_tri_level_orchestrate', "
282
+ f"'system3_hyperbolic_embed', 'system3_kripke_verify', 'system3_active_inference', 'system3_proof_oracle', "
283
+ f"'track_file_change', 'get_session_lineage', 'inspect_plan', 'verify_proof', 'record_visual_mockups', 'validate_event_history', "
284
+ f"'set_goal_rubric', 'evaluate_goal_rubric', 'get_goal_rubric', 'register_automation_pipeline', "
285
+ f"'red_team_code_review', 'record_breakage_report', 'verify_red_team_remediation', "
286
+ f"'cortical_define_lobe', 'cortical_list_lobes', 'check_auto_update', 'apply_auto_update', 'evolve_cortex', "
287
+ f"'audit_anti_slop', 'infer_design_brief', 'generate_design_tokens', 'generate_awwwards_scaffold', 'validate_preflight_design', 'list_design_archetypes'."
288
+ )
289
+ except Exception as ex:
290
+ return f"Error: {str(ex)}"
291
+