CHANGELOG.md
LICENSE
MANIFEST.in
README.md
VERSION
VERSION.md
pyproject.toml
requirements.txt
setup.py
agents/README.md
core/greenlang/__init__.py
core/greenlang/_version.py
core/greenlang/agents/mock.py
core/greenlang/cards/__init__.py
core/greenlang/cards/generator.py
core/greenlang/cards/templates.py
core/greenlang/cards/validator.py
core/greenlang/cli/__init__.py
core/greenlang/cli/__main__.py
core/greenlang/cli/cmd_doctor.py
core/greenlang/cli/cmd_init.py
core/greenlang/cli/cmd_pack.py
core/greenlang/cli/cmd_policy.py
core/greenlang/cli/cmd_run.py
core/greenlang/cli/cmd_verify.py
core/greenlang/cli/main.py
core/greenlang/hub/__init__.py
core/greenlang/hub/index.py
core/greenlang/packs/installer.py
core/greenlang/packs/loader.py
core/greenlang/packs/loader_simple.py
core/greenlang/packs/manifest.py
core/greenlang/packs/registry.py
core/greenlang/policy/enforcer.py
core/greenlang/policy/opa.py
core/greenlang/policy/bundles/install.rego
core/greenlang/policy/bundles/run.rego
core/greenlang/provenance/key_provider.py
core/greenlang/provenance/ledger.py
core/greenlang/provenance/sbom.py
core/greenlang/provenance/sign.py
core/greenlang/provenance/signing.py
core/greenlang/provenance/utils.py
core/greenlang/runtime/__init__.py
core/greenlang/runtime/executor.py
core/greenlang/runtime/golden.py
core/greenlang/sdk/__init__.py
core/greenlang/sdk/base.py
core/greenlang/sdk/context.py
core/greenlang/sdk/pipeline.py
core/greenlang/security/__init__.py
core/greenlang/security/network.py
core/greenlang/security/paths.py
core/greenlang/security/signatures.py
core/greenlang/utils/net.py
datasets/README.md
datasets/emission_factors/CARD.md
examples/README.md
examples/boiler_agent_integration.py
examples/climatenza_demo.py
examples/developer_guide.py
examples/example_usage.py
examples/fuel_agent_integration.py
examples/global_building_example.py
examples/sample_input.json
examples/fixtures/custom_country_factors.json
examples/fixtures/custom_workflow.yaml
examples/fixtures/workflow_minimal.yaml
examples/fixtures/workflow_v1_legacy.yaml
examples/packs/advanced/README.md
examples/packs/advanced/backup-pipeline.yaml
examples/packs/advanced/main-analysis.yaml
examples/packs/advanced/pack.yaml
examples/packs/advanced/validation-pipeline.yaml
examples/packs/minimal/gl.yaml
examples/packs/minimal/pack.yaml
examples/pipelines/complex/README.md
examples/pipelines/complex/error-recovery-example.yaml
examples/pipelines/complex/gl.yaml
examples/pipelines/complex/parallel-execution-example.yaml
examples/pipelines/minimal/gl.yaml
examples/sdk/README.md
examples/sdk/basic_usage.py
examples/sdk/pack_loading.py
examples/sdk/pipeline_creation.py
examples/tests/conftest.py
examples/tests/ex_01_fuel_agent_basic.py
examples/tests/ex_02_fuel_agent_error.py
examples/tests/ex_03_grid_factor_dataset.py
examples/tests/ex_04_input_validator_normalize.py
examples/tests/ex_05_carbon_aggregate_invariants.py
examples/tests/ex_06_intensity_formulas.py
examples/tests/ex_07_benchmark_boundaries.py
examples/tests/ex_08_recommendations_mapping.py
examples/tests/ex_09_report_json_and_md.py
examples/tests/ex_10_workflow_minimal_yaml.py
examples/tests/ex_11_cross_country_factors.py
examples/tests/ex_12_cli_run_to_json.py
examples/tests/ex_13_cli_calc_markdown_snapshot.py
examples/tests/ex_14_portfolio_small.py
examples/tests/ex_15_plugin_discovery.py
examples/tests/ex_16_assistant_mocked.py
examples/tests/ex_17_dataset_provenance.py
examples/tests/ex_18_env_overrides.py
examples/tests/ex_19_property_tests.py
examples/tests/ex_20_parallel_determinism.py
examples/tests/ex_21_caching.py
examples/tests/ex_22_backward_compatibility.py
examples/tests/ex_23_json_schema_validation.py
examples/tests/ex_24_doctest_example.py
examples/tests/ex_25_concurrency.py
examples/tests/ex_26_long_run_smoke.py
examples/tests/ex_27_windows_normalization.py
examples/tests/ex_28_custom_agent_tutorial.py
examples/tests/ex_29_country_factors_tutorial.py
examples/tests/ex_30_workflow_xlsx_tutorial.py
examples/tutorials/add_country_factors.py
examples/tutorials/custom_agent_30_lines.py
examples/tutorials/custom_workflow_xlsx.py
examples/utils/dataset.py
examples/utils/normalizers.py
greenlang/__init__.py
greenlang/_version.py
greenlang/types.py
greenlang/agents/__init__.py
greenlang/agents/base.py
greenlang/agents/benchmark_agent.py
greenlang/agents/boiler_agent.py
greenlang/agents/building_profile_agent.py
greenlang/agents/carbon_agent.py
greenlang/agents/demo_agent.py
greenlang/agents/energy_balance_agent.py
greenlang/agents/field_layout_agent.py
greenlang/agents/fuel_agent.py
greenlang/agents/grid_factor_agent.py
greenlang/agents/intensity_agent.py
greenlang/agents/load_profile_agent.py
greenlang/agents/mock.py
greenlang/agents/recommendation_agent.py
greenlang/agents/report_agent.py
greenlang/agents/site_input_agent.py
greenlang/agents/solar_resource_agent.py
greenlang/agents/types.py
greenlang/agents/validator_agent.py
greenlang/auth/__init__.py
greenlang/auth/audit.py
greenlang/auth/auth.py
greenlang/auth/rbac.py
greenlang/auth/tenant.py
greenlang/cards/__init__.py
greenlang/cards/generator.py
greenlang/cards/templates.py
greenlang/cards/validator.py
greenlang/cli/__init__.py
greenlang/cli/__main__.py
greenlang/cli/agent_registry.py
greenlang/cli/assistant.py
greenlang/cli/assistant_rag.py
greenlang/cli/cmd_capabilities.py
greenlang/cli/cmd_demo.py
greenlang/cli/cmd_doctor.py
greenlang/cli/cmd_init.py
greenlang/cli/cmd_pack.py
greenlang/cli/cmd_pack_new.py
greenlang/cli/cmd_policy.py
greenlang/cli/cmd_run.py
greenlang/cli/cmd_schema.py
greenlang/cli/cmd_validate.py
greenlang/cli/cmd_verify.py
greenlang/cli/complete_cli.py
greenlang/cli/dev_interface.py
greenlang/cli/enhanced_main.py
greenlang/cli/jsonl_logger.py
greenlang/cli/main.py
greenlang/cli/main_new.py
greenlang/cli/main_old.py
greenlang/cli/pack.py
greenlang/cli/policy.py
greenlang/cli/telemetry.py
greenlang/cli/tenant.py
greenlang/cli/templates/pack_basic/CARD.md
greenlang/cli/templates/pack_basic/README.md
greenlang/cli/templates/pack_basic/gl.yaml
greenlang/cli/templates/pack_basic/pack.yaml
greenlang/compat/__init__.py
greenlang/compat/testing.py
greenlang/configs/boiler_efficiencies.json
greenlang/configs/carbon_footprint.yaml
greenlang/configs/fuel_properties.json
greenlang/core/__init__.py
greenlang/core/artifact_manager.py
greenlang/core/context_manager.py
greenlang/core/orchestrator.py
greenlang/core/workflow.py
greenlang/data/__init__.py
greenlang/data/emission_factors.json
greenlang/data/emission_factors.py
greenlang/data/global_benchmarks.json
greenlang/data/global_emission_factors.json
greenlang/data/models.py
greenlang/examples/pack_basic/pack.yaml
greenlang/examples/pipeline_basic/gl.yaml
greenlang/hub/__init__.py
greenlang/hub/archive.py
greenlang/hub/auth.py
greenlang/hub/cli.py
greenlang/hub/client.py
greenlang/hub/index.py
greenlang/hub/manifest.py
greenlang/middleware/rate_limiter.py
greenlang/packs/dependency_resolver.py
greenlang/packs/installer.py
greenlang/packs/loader.py
greenlang/packs/loader_simple.py
greenlang/packs/manifest.py
greenlang/packs/registry.py
greenlang/policy/enforcer.py
greenlang/policy/opa.py
greenlang/provenance/__init__.py
greenlang/provenance/key_provider.py
greenlang/provenance/ledger.py
greenlang/provenance/sbom.py
greenlang/provenance/sign.py
greenlang/provenance/signing.py
greenlang/provenance/utils.py
greenlang/registry/oci_client.py
greenlang/runtime/__init__.py
greenlang/runtime/executor.py
greenlang/runtime/golden.py
greenlang/runtime/guard.py
greenlang/runtime/backends/__init__.py
greenlang/runtime/backends/base.py
greenlang/runtime/backends/docker.py
greenlang/runtime/backends/executor.py
greenlang/runtime/backends/factory.py
greenlang/runtime/backends/k8s.py
greenlang/runtime/backends/local.py
greenlang/schemas/boiler_input.schema.json
greenlang/schemas/fuel_input.schema.json
greenlang/sdk/__init__.py
greenlang/sdk/base.py
greenlang/sdk/builder.py
greenlang/sdk/client.py
greenlang/sdk/context.py
greenlang/sdk/enhanced_client.py
greenlang/sdk/pipeline.py
greenlang/sdk/pipeline_spec.py
greenlang/security/__init__.py
greenlang/security/key_manager.py
greenlang/security/network.py
greenlang/security/paths.py
greenlang/security/signatures.py
greenlang/security/signing.py
greenlang/telemetry/__init__.py
greenlang/telemetry/health.py
greenlang/telemetry/logging.py
greenlang/telemetry/metrics.py
greenlang/telemetry/monitoring.py
greenlang/telemetry/performance.py
greenlang/telemetry/tracing.py
greenlang/utils/net.py
greenlang/utils/performance_tracker.py
greenlang/utils/unit_converter.py
greenlang_cli.egg-info/PKG-INFO
greenlang_cli.egg-info/SOURCES.txt
greenlang_cli.egg-info/dependency_links.txt
greenlang_cli.egg-info/entry_points.txt
greenlang_cli.egg-info/not-zip-safe
greenlang_cli.egg-info/requires.txt
greenlang_cli.egg-info/top_level.txt
tests/test_agents.py
tests/test_agents_typed.py
tests/test_cache_invalidation.py
tests/test_calculation.py
tests/test_capabilities.py
tests/test_ci_setup.py
tests/test_dev_interface.py
tests/test_end_to_end.py
tests/test_greenlang.py
tests/test_orchestrator.py
tests/test_policy_default_deny.py
tests/test_security.py
tests/test_security_denials.py
tests/test_security_integration.py
tests/test_utils.py
tests/fixtures/boiler_biomass_modern.json
tests/fixtures/boiler_condensing_efficient.json
tests/fixtures/boiler_heat_pump.json
tests/fixtures/boiler_oil_legacy.json
tests/fixtures/boiler_portfolio.json
tests/fixtures/boiler_standard_gas.json
tests/fixtures/building_india_office.json
tests/fixtures/building_us_office.json
tests/fixtures/factors_minimal.json
tests/fixtures/fuel_diesel_gallons.json
tests/fixtures/fuel_electricity_india.json
tests/fixtures/fuel_electricity_us.json
tests/fixtures/fuel_natural_gas_therms.json
tests/fixtures/fuel_portfolio_mixed.json
tests/fixtures/fuel_renewable_solar.json
tests/fixtures/workflow_commercial.yaml
tests/fixtures/data/building_india_hospital.json
tests/fixtures/schemas/analysis.schema.json
tests/fixtures/schemas/report.schema.json
tests/fixtures/workflows/broken_missing_agent.yaml
tests/fixtures/workflows/commercial_building_emissions.yaml
tests/fixtures/workflows/india_building_workflow.yaml
tests/fixtures/workflows/parallel_example.yaml
tests/fixtures/workflows/portfolio_analysis.yaml
workflows/commercial_building_emissions.yaml
workflows/india_building_workflow.yaml