LICENSE
README.md
pyproject.toml
src/po_core/__init__.py
src/po_core/cli.py
src/po_core/database.py
src/po_core/ensemble.py
src/po_core/migrate_to_db.py
src/po_core/mock_philosophers.py
src/po_core/party_machine.py
src/po_core/po_claude_client.py
src/po_core/po_self.py
src/po_core/po_system_prompt.py
src/po_core/po_test_runner.py
src/po_core/po_trace.py
src/po_core/po_trace_db.py
src/po_core/po_viewer.py
src/po_core/py.typed
src/po_core/runner.py
src/po_core/tensor_metrics.py
src/po_core/visualizations.py
src/po_core/adapters/__init__.py
src/po_core/adapters/llm_adapter.py
src/po_core/adapters/memory_poself.py
src/po_core/aggregator/__init__.py
src/po_core/aggregator/conflict_resolver.py
src/po_core/aggregator/pareto.py
src/po_core/aggregator/policy_aware.py
src/po_core/aggregator/weighted_vote.py
src/po_core/app/__init__.py
src/po_core/app/api.py
src/po_core/app/composer.py
src/po_core/app/ethics_engine.py
src/po_core/app/output_adapter.py
src/po_core/app/plan_builder.py
src/po_core/app/policy_engine.py
src/po_core/app/question_layer.py
src/po_core/app/responsibility_engine.py
src/po_core/app/session_engine.py
src/po_core/app/values_clarifier.py
src/po_core/app/rest/__init__.py
src/po_core/app/rest/__main__.py
src/po_core/app/rest/auth.py
src/po_core/app/rest/config.py
src/po_core/app/rest/models.py
src/po_core/app/rest/rate_limit.py
src/po_core/app/rest/review_store.py
src/po_core/app/rest/server.py
src/po_core/app/rest/store.py
src/po_core/app/rest/routers/__init__.py
src/po_core/app/rest/routers/health.py
src/po_core/app/rest/routers/philosophers.py
src/po_core/app/rest/routers/reason.py
src/po_core/app/rest/routers/review.py
src/po_core/app/rest/routers/trace.py
src/po_core/app/rest/routers/tradeoff_map.py
src/po_core/autonomy/__init__.py
src/po_core/autonomy/solarwill/__init__.py
src/po_core/autonomy/solarwill/engine.py
src/po_core/autonomy/solarwill/model.py
src/po_core/autonomy/solarwill/planner.py
src/po_core/autonomy/solarwill/update.py
src/po_core/axis/__init__.py
src/po_core/axis/preferences.py
src/po_core/axis/scoring.py
src/po_core/axis/spec.py
src/po_core/axis/specs/v1.json
src/po_core/cli/__init__.py
src/po_core/cli/commands.py
src/po_core/cli/experiment.py
src/po_core/cli/interactive.py
src/po_core/cli/trace_formatter.py
src/po_core/config/llm_philosopher_map.yaml
src/po_core/deliberation/__init__.py
src/po_core/deliberation/cards.py
src/po_core/deliberation/clustering.py
src/po_core/deliberation/emergence.py
src/po_core/deliberation/engine.py
src/po_core/deliberation/influence.py
src/po_core/deliberation/protocol.py
src/po_core/deliberation/roles.py
src/po_core/deliberation/synthesis.py
src/po_core/domain/__init__.py
src/po_core/domain/context.py
src/po_core/domain/experiment.py
src/po_core/domain/intent.py
src/po_core/domain/keys.py
src/po_core/domain/memory_snapshot.py
src/po_core/domain/pareto_config.py
src/po_core/domain/proposal.py
src/po_core/domain/safety_mode.py
src/po_core/domain/safety_verdict.py
src/po_core/domain/tensor_snapshot.py
src/po_core/domain/trace_event.py
src/po_core/experiments/__init__.py
src/po_core/experiments/analyzer.py
src/po_core/experiments/promoter.py
src/po_core/experiments/runner.py
src/po_core/experiments/storage.py
src/po_core/memory/__init__.py
src/po_core/memory/philosophical_memory.py
src/po_core/memory/procedural_store.py
src/po_core/memory/semantic_store.py
src/po_core/meta/__init__.py
src/po_core/meta/ethics_monitor.py
src/po_core/meta/philosopher_ledger.py
src/po_core/philosophers/__init__.py
src/po_core/philosophers/appiah.py
src/po_core/philosophers/arendt.py
src/po_core/philosophers/aristotle.py
src/po_core/philosophers/badiou.py
src/po_core/philosophers/base.py
src/po_core/philosophers/beauvoir.py
src/po_core/philosophers/butler.py
src/po_core/philosophers/charles_taylor.py
src/po_core/philosophers/confucius.py
src/po_core/philosophers/deleuze.py
src/po_core/philosophers/derrida.py
src/po_core/philosophers/descartes.py
src/po_core/philosophers/dewey.py
src/po_core/philosophers/dogen.py
src/po_core/philosophers/dummy.py
src/po_core/philosophers/epicurus.py
src/po_core/philosophers/fanon.py
src/po_core/philosophers/foucault.py
src/po_core/philosophers/hegel.py
src/po_core/philosophers/heidegger.py
src/po_core/philosophers/husserl.py
src/po_core/philosophers/jonas.py
src/po_core/philosophers/jung.py
src/po_core/philosophers/kant.py
src/po_core/philosophers/kierkegaard.py
src/po_core/philosophers/lacan.py
src/po_core/philosophers/laozi.py
src/po_core/philosophers/levinas.py
src/po_core/philosophers/llm_personas.py
src/po_core/philosophers/llm_philosopher.py
src/po_core/philosophers/manifest.py
src/po_core/philosophers/marcus_aurelius.py
src/po_core/philosophers/merleau_ponty.py
src/po_core/philosophers/nagarjuna.py
src/po_core/philosophers/nietzsche.py
src/po_core/philosophers/nishida.py
src/po_core/philosophers/parmenides.py
src/po_core/philosophers/peirce.py
src/po_core/philosophers/plato.py
src/po_core/philosophers/registry.py
src/po_core/philosophers/sartre.py
src/po_core/philosophers/schopenhauer.py
src/po_core/philosophers/spinoza.py
src/po_core/philosophers/tags.py
src/po_core/philosophers/template.py
src/po_core/philosophers/wabi_sabi.py
src/po_core/philosophers/watsuji.py
src/po_core/philosophers/weil.py
src/po_core/philosophers/wittgenstein.py
src/po_core/philosophers/zhuangzi.py
src/po_core/ports/__init__.py
src/po_core/ports/aggregator.py
src/po_core/ports/memory.py
src/po_core/ports/memory_read.py
src/po_core/ports/memory_write.py
src/po_core/ports/solarwill.py
src/po_core/ports/tensor_engine.py
src/po_core/ports/trace.py
src/po_core/ports/wethics_gate.py
src/po_core/runtime/__init__.py
src/po_core/runtime/battalion_table.py
src/po_core/runtime/pareto_table.py
src/po_core/runtime/settings.py
src/po_core/runtime/shadow_guard.py
src/po_core/runtime/voice_loader.py
src/po_core/runtime/wiring.py
src/po_core/safety/__init__.py
src/po_core/safety/fallback.py
src/po_core/safety/philosopher_profiles.py
src/po_core/safety/policy_scoring.py
src/po_core/safety/w_ethics.py
src/po_core/safety/wethics_gate/__init__.py
src/po_core/safety/wethics_gate/action_gate.py
src/po_core/safety/wethics_gate/detectors.py
src/po_core/safety/wethics_gate/explanation.py
src/po_core/safety/wethics_gate/gate.py
src/po_core/safety/wethics_gate/intention_gate.py
src/po_core/safety/wethics_gate/metrics.py
src/po_core/safety/wethics_gate/policy_gate.py
src/po_core/safety/wethics_gate/select.py
src/po_core/safety/wethics_gate/semantic_drift.py
src/po_core/safety/wethics_gate/types.py
src/po_core/safety/wethics_gate/policies/__init__.py
src/po_core/safety/wethics_gate/policies/action_acttype_001.py
src/po_core/safety/wethics_gate/policies/action_mode_001.py
src/po_core/safety/wethics_gate/policies/action_outguard_001.py
src/po_core/safety/wethics_gate/policies/base.py
src/po_core/safety/wethics_gate/policies/intention_goalkey_001.py
src/po_core/safety/wethics_gate/policies/intention_mode_001.py
src/po_core/safety/wethics_gate/policies/presets.py
src/po_core/tensors/__init__.py
src/po_core/tensors/axis_calibration.py
src/po_core/tensors/base.py
src/po_core/tensors/blocked_tensor.py
src/po_core/tensors/concept_quantifier.py
src/po_core/tensors/engine.py
src/po_core/tensors/freedom_pressure.py
src/po_core/tensors/freedom_pressure_v2.py
src/po_core/tensors/interaction_tensor.py
src/po_core/tensors/semantic_profile.py
src/po_core/tensors/metrics/__init__.py
src/po_core/tensors/metrics/blocked_tensor.py
src/po_core/tensors/metrics/freedom_pressure.py
src/po_core/tensors/metrics/interaction_tensor.py
src/po_core/tensors/metrics/semantic_delta.py
src/po_core/text/__init__.py
src/po_core/text/embedding_cache.py
src/po_core/text/normalize.py
src/po_core/trace/__init__.py
src/po_core/trace/annotator.py
src/po_core/trace/decision_compare.py
src/po_core/trace/decision_events.py
src/po_core/trace/event_log.py
src/po_core/trace/in_memory.py
src/po_core/trace/noop.py
src/po_core/trace/pareto_events.py
src/po_core/trace/replay.py
src/po_core/trace/schema.py
src/po_core/trace/synthesis_report_events.py
src/po_core/trace/tracer.py
src/po_core/viewer/__init__.py
src/po_core/viewer/decision_report_md.py
src/po_core/viewer/evolution_graph.py
src/po_core/viewer/philosopher_view.py
src/po_core/viewer/pipeline_view.py
src/po_core/viewer/preference_view.py
src/po_core/viewer/pressure_display.py
src/po_core/viewer/tension_map.py
src/po_core/viewer/tensor_view.py
src/po_core/viewer/tradeoff_map.py
src/po_core/viewer/visualizer.py
src/po_core/viewer/web/__init__.py
src/po_core/viewer/web/app.py
src/po_core/viewer/web/figures.py
src/po_core_flyingpig.egg-info/PKG-INFO
src/po_core_flyingpig.egg-info/SOURCES.txt
src/po_core_flyingpig.egg-info/dependency_links.txt
src/po_core_flyingpig.egg-info/entry_points.txt
src/po_core_flyingpig.egg-info/requires.txt
src/po_core_flyingpig.egg-info/top_level.txt
tests/test_all_39_philosophers.py
tests/test_api_auth_cors.py
tests/test_arbitration_trace.py
tests/test_axis_scoring_v1.py
tests/test_axis_spec.py
tests/test_calibration_params_load.py
tests/test_cards_schema.py
tests/test_comparative_benchmark.py
tests/test_conflict_resolver.py
tests/test_decision_comparison_event.py
tests/test_decision_events.py
tests/test_deliberation_engine.py
tests/test_deliberation_protocol_v1.py
tests/test_dependency_rules.py
tests/test_emit_pareto_debug_events.py
tests/test_ethics_engine.py
tests/test_ethics_guardrails.py
tests/test_ethics_non_interference.py
tests/test_ethics_ruleset.py
tests/test_execution_coverage.py
tests/test_features.py
tests/test_freedom_pressure_japanese.py
tests/test_golden_coverage.py
tests/test_golden_e2e.py
tests/test_golden_regression.py
tests/test_input_schema.py
tests/test_interaction_matrix.py
tests/test_interaction_tensor_japanese.py
tests/test_invariants.py
tests/test_no_short_id_special_cases.py
tests/test_observe_device_smoke.py
tests/test_output_adapter_question_suppression.py
tests/test_output_schema.py
tests/test_paper_pipeline.py
tests/test_pareto_aggregator.py
tests/test_pareto_debug_payload.py
tests/test_pareto_table_loader.py
tests/test_phase25_reproduce.py
tests/test_philosopher_bridge.py
tests/test_philosopher_cards.py
tests/test_philosopher_concurrency.py
tests/test_philosopher_contract.py
tests/test_philosopher_plugin_template.py
tests/test_philosopher_registry_scaling.py
tests/test_philosopher_uniqueness.py
tests/test_philosophers_pipeline.py
tests/test_philosophers_pytest.py
tests/test_plan_non_interference.py
tests/test_po_self_v2.py
tests/test_policy_aware_aggregator.py
tests/test_policy_invariants.py
tests/test_policy_lab.py
tests/test_questions_v2.py
tests/test_recommendation_policy.py
tests/test_registry_composition_tags.py
tests/test_registry_import_strictness.py
tests/test_release_readiness.py
tests/test_responsibility_stakeholders.py
tests/test_role_coverage.py
tests/test_run_turn_e2e.py
tests/test_runtime_settings_philosopher_limits.py
tests/test_safety_integration.py
tests/test_safety_mode_thresholds.py
tests/test_semantic_delta.py
tests/test_session_answers_schema.py
tests/test_session_replay_e2e.py
tests/test_session_replay_unit.py
tests/test_shadow_guard.py
tests/test_smoke_pipeline.py
tests/test_synthesis_engine.py
tests/test_synthesis_report_scoreboard.py
tests/test_tensor_metrics.py
tests/test_trace_event_log.py
tests/test_trace_metrics.py
tests/test_trace_pareto_events.py
tests/test_trace_pareto_includes_config_version.py
tests/test_trace_schema_contract.py
tests/test_traceability.py
tests/test_traceability_config_lock.py
tests/test_two_track_plan.py
tests/test_values_clarification.py
tests/test_vertical_slice.py
tests/test_viewer_candidate_final_diff.py
tests/test_viewer_pipeline.py
tests/test_wethics_acttype_001.py
tests/test_wethics_fail_closed.py
tests/test_wethics_goalkey_001.py
tests/test_wethics_mode_001.py