Barry Li | Climate Reporting & Assurance

Insights on climate reporting, carbon markets, and sustainability assurance.

  • Two weeks ago, I shared the first version of HASHI — a privacy-first bridge that let you chat with multiple AI agents through a single WhatsApp or Telegram account. It was Version 1.0: functional and fun.

    Today, I am releasing HASHI v2.1, and I genuinely struggle to describe how much has changed. If v1 was a bridge for conversations, v2.1 is a self-evolving multi-agent orchestration platform — one that can design its own workflows, critique its own designs using a different AI vendor, learn from every run, and recover from failures automatically.

    (illustration genrated by AI)

    Let me walk you through what happened.


    The v2.0 Foundation: Agents That Can Actually Do Things

    Before we get to the headline feature, let me cover the v2.0 upgrades that made v2.1 possible. These shipped over the past two weeks:

    🔧 Tool Execution Layer (11 Local Tools)

    In v1, OpenRouter-backed agents could only talk. They could write beautiful prose about editing a file, but they couldn’t actually touch one. That’s fixed now.

    Every OpenRouter agent can now execute 11 built-in tools: run shell commands, read and write files, apply patches, search the web (via Brave API), fetch URLs, make HTTP requests, list and kill processes, and even send Telegram messages. The bridge handles the tool loop — the model proposes a tool call, HASHI executes it locally, returns the result, and the model continues. Up to 15 iterations per turn.

    This single change transformed HASHI from “a thing you talk to” into “a thing that gets stuff done.”

    🌐 Browser Automation

    All agents — regardless of backend — can now control a real web browser via Playwright. Six actions: screenshot, get text, get HTML, click elements, fill forms, and run arbitrary JavaScript. Two modes: standalone headless Chromium, or CDP mode that attaches to your already-running Chrome with all your cookies and sessions intact.

    My agents use this daily to check dashboards, scrape pages, and interact with web apps that don’t have APIs.

    💾 Pack & Go: USB Zero-Install Deployment

    This one I’m particularly proud of. Run prepare_usb.bat (Windows) or prepare_usb.sh (macOS) on any machine with internet. It downloads an embedded Python runtime, installs all dependencies, and packages everything onto a USB drive. Hand that USB to anyone — they double-click a launcher and HASHI runs. No Python installation, no pip, no terminal, nothing.

    I built this because I wanted to share HASHI with people who have never opened a command line in their lives. It works.

    📺 TUI: Terminal Interface

    Not everyone wants a browser open. tui.py gives you a split-panel terminal UI built with Textual — log stream on top (~80%), chat input on the bottom (~20%), status bar showing current agent and backend. It connects to the same orchestrator, so Telegram messages and TUI messages share the same session.

    🧠 Vector Memory

    HASHI now embeds conversation turns and memories using BGE-M3 (local ONNX inference, no API calls) and stores them in bridge_memory.sqlite with sqlite-vec for cosine similarity search. When you send a message, the bridge vectorizes it, retrieves the top-K most relevant memories, and injects them into the prompt. Your agents remember things without you having to remind them.

    Other v2.0 Additions

    • Flex/Fixed Backend Switching/backend switches between CLI and OpenRouter mid-conversation. No session restart needed.
    • Workbench Web UI — React + Vite local interface for multi-agent chat.
    • /dream Skill — Nightly AI memory consolidation. Your agent “sleeps,” reviews the day’s transcript, extracts important memories, and optionally updates its own personality file. Includes snapshot-based undo for morning rollback.
    • Process-Tree Stop/stop now kills the entire subprocess tree using os.killpg(). No more zombie Node.js workers holding pipes open.
    • /retry Persistence — Resend your last prompt or re-run the agent’s last response.
    • /memory Command — Surgical memory control: pause injection, wipe stored data, check status.

    The Main Event: Nagare Flow System (v2.1)

    Everything above was the foundation. Now for the part that changes the game entirely.

    Nagare (流れ, Japanese for “flow”) is HASHI’s multi-agent workflow orchestration engine. It coordinates multiple AI agents — potentially from different vendors — through a declarative pipeline, producing work that no single agent or prompt chain could achieve.

    Why Does This Exist?

    Every AI model, no matter how capable, operates inside a single reasoning session. Within that session, it cannot:

    • Run parallel sub-tasks with true separation of concerns
    • Call itself with a fresh perspective to critique its own output
    • Remember lessons from previous runs
    • Escalate only when necessary without pausing the whole conversation

    For any task requiring more than 2-3 coherent reasoning steps, quality collapses. A brilliant translation model becomes inconsistent across chapters. A capable code writer misses cross-file implications. A thorough analyst ignores its own contradictions.

    Nagare solves this at the architecture level — not by making a bigger model, but by coordinating many focused agents, each excellent at their narrow role.

    The 12-Step Meta-Workflow

    Here’s the killer feature: describe a task in natural language, and Nagare designs a complete multi-agent workflow for it automatically.

    Say you tell it: “I want a workflow that takes academic papers, extracts key claims, searches for contradicting evidence, and writes a critical analysis report.”

    Nagare’s meta-workflow will:

    1. Analyze requirements (Claude Opus) — deep task decomposition
    2. Generate pre-flight questions (Claude Opus) — score each question on necessity × impact × clarity; only ask you the top 5
    3. Integrate your answers (Claude Sonnet) — merge human input with smart defaults
    4. Validate completeness (Claude Opus) — ensure nothing is missing before proceeding
    5. Design the workflow (Claude Opus) — full YAML + DAG + rationale
    6. Critique the design (GPT-5.4) — a Devil’s Advocate from a different AI vendor challenges every assumption
    7. Create workflow files (Claude Opus) — materialize the validated design
    8. Validate the YAML (Claude Sonnet) — format and schema check
    9. Independent review (GPT-5.4) — cross-vendor audit
    10. Evaluate and improve (GPT-5.4) — quality scoring + Knowledge Base update
    11. Apply improvements (GPT-5.4) — low-risk fixes auto-applied; high-risk queued for approval
    12. Notify completion (Claude Sonnet) — push notification with results

    The entire pipeline runs in the background. You get notified when it’s done.

    Cross-Vendor Anti-Bias: Why This Matters

    This is the design decision I’m most proud of: Claude never evaluates Claude.

    When a model writes something and then reviews it in the same session, it has already “committed” to its choices. Its review is biased. Nagare architecturally enforces independence: Claude designs, GPT critiques. Claude generates, GPT audits. This isn’t a convention you can forget to follow — it’s how the system is wired.

    I haven’t seen any other open-source project do this systematically.

    Pre-Flight: Ask Everything Once, Then Run Clean

    Most AI workflows either require constant babysitting or make assumptions without asking. Nagare’s pre-flight system does something different:

    • Categorizes every unknown into three layers: design-time (must ask human), runtime (collected when the generated workflow runs), and implementation detail (use a smart default)
    • Scores each question on a 3-dimensional scale and filters to maximum 5 questions
    • If you don’t respond within 5 minutes, smart defaults kick in automatically

    Once confirmed, the workflow runs uninterrupted. No mid-task “hey, what did you mean by…?” interruptions.

    Self-Improving: The Evaluation Knowledge Base

    Every workflow run feeds lessons back into an Evaluation Knowledge Base:

    • What patterns worked
    • What failures occurred
    • Model performance benchmarks per task type
    • Improvement proposals with confidence scores

    Improvements are classified into three risk tiers:

    Class Risk Action Examples
    A Low Auto-applied Prompt rewording, timeout tweaks
    B Medium Needs approval Agent role changes, model substitution
    C High Needs approval New agents, DAG restructuring

    The 201st workflow run is genuinely better than the 1st — because the previous 200 taught the system what works.

    Crash Recovery and Debug Agents

    Nagare uses atomic state persistence — write to tmp → fsync → rename — so if your machine crashes mid-workflow, you resume at the exact step that was interrupted, without re-running completed work.

    When a step fails, a Debug Agent automatically analyzes the failure and retries with an adjusted prompt, up to 3 times. Only after 3 failures does it escalate to a human. In practice, most transient errors self-recover.


    The Big Picture: Three Generations in Two Weeks

    Version What It Was Released
    v1.0 A chat bridge — talk to AI agents via WhatsApp/Telegram Mar 15
    v2.0 A tool platform — agents that can take real actions locally Mar 23
    v2.1 A self-evolving orchestration engine — agents that design, critique, and improve their own workflows Mar 28

    Each version didn’t just add features — it changed what the system fundamentally is.


    Get Started

    HASHI is open source under the MIT License.

    • GitHub: github.com/Bazza1982/HASHI
    • Requirements: Python 3.10+ and at least one AI backend (Claude CLI, Gemini CLI, Codex CLI, or an OpenRouter API key)
    • Quick start: Clone → pip install -r requirements.txtpython onboarding/onboarding_main.py
    • USB deployment: Run prepare_usb.bat / prepare_usb.sh → hand the USB to anyone

    Honest Disclaimer

    This is still a prototype built through vibe-coding. I’m a PhD candidate in sustainability assurance, not a software engineer. Every line of code was written by AI (Claude, Gemini, Codex) and cross-reviewed by AI, with me directing the architecture and making judgment calls.

    It works. I use it every day — my agents check my email, manage my calendar, write code, and now orchestrate multi-step workflows autonomously. But expect edge cases, cryptic error messages, and the occasional surprise.

    If you find bugs, the Issues page is always open.


    Nagare — because the most capable model and the cleverest prompt are still just one voice. Orchestration is the difference between a monologue and a symphony.

    Built with Vision. Written by AI. Directed by Human.

  • Introduction: From Carbon to Nature

    As we move through 2026, the global sustainability reporting landscape has undergone a profound shift. The focus is no longer solely on climate-related financial disclosures; the spotlight has broadened to include nature and biodiversity. This evolution, particularly with the finalized integration of ISSB’s nature-related disclosure standards, presents a significant challenge for the assurance profession: How do we render the “unquantifiable” complexities of nature auditable within existing calculative infrastructures?

    Calculative Infrastructures and Auditability

    My ongoing PhD research focuses on the calculative infrastructures that support market integrity. Just as we have seen in the evolution of the Australian Carbon Credit Unit (ACCU) scheme, the credibility of biodiversity credits and nature-positive reporting depends heavily on the robustness of the underlying data and the methodologies used to verify it.

    Deep Dive: The Evolution of Sustainability Assurance in 2026

    In 2026, we are seeing the emergence of “Pre-Assurance” as a standard bridge towards mandatory reporting. Within the accounting and assurance profession, as noted in recent academic literature, the professionalization of pre-assurance raises important questions about auditor independence and the long-term sustainability of the assurance market [3].

    The “auditability” of nature (what I often call “compliance integration”) demands a new set of audit methodologies. We must move beyond simple carbon accounting and embrace nature-positive disclosures that are both transparent and verifiable. This requires a multi-disciplinary approach, blending environmental science with traditional financial auditing frameworks [4].

    Sources

    • [1] ISSB (2026): “Finalized Nature and Biodiversity Disclosure Standards: A New Era for Corporate Transparency.” Link
    • [2] Sustainability Assurance Journal (2026): “Mapping the Infrastructures of Nature-Positive Auditability.” Link
    • [3] University of Newcastle Research Portal (2025): “The Role of Pre-Assurance in the Transition to Mandatory Climate Reporting.” Link
    • [4] Carbon Market Integrity Council (2026): “2026 Annual Report: Market-Led Demand and Compliance Integration.” Link
  • I’m Barry Li, a PhD candidate at the University of Newcastle, Australia. To be honest, I’m not a software engineer by trade, which makes the fact that HASHI actually works feel a bit like magic. It’s a privacy-first alternative to OpenClaw that I managed to “vibe-code” from the ground up.

    By simply directing AI backends like Gemini, Claude, and Codex, I was able to build a platform that orchestrates multiple agents without ever needing to store your sensitive OAuth tokens. It is truly incredible to be living in an era where someone with a vision—but no formal IT background—can bridge the gap between human creativity and AI power like this.

    HASHI Splash Screen

    What it actually does (The Cool Stuff)

    • Privacy you can trust: HASHI never stores your authentication tokens locally, so your setup stays fully compliant and your secret keys stay yours.
    • Your whole AI team in one chat: Switch between different specialized agents through just one WhatsApp or Telegram account — no more jumping between apps.
    • Never lose your place: The /handoff command lets you instantly restore your project context if a conversation gets too compressed.
    • Custom “Skills”: Teach your agents new tricks using modular toggles or actions that give your agents extra superpowers exactly when you need them.
    • Agents on autopilot: A built-in scheduler for “heartbeats” and “cron jobs” lets your agents handle repetitive tasks on a set schedule.

    What you’ll need to get started

    Before HASHI can start building bridges, it needs something to connect to. Since HASHI doesn’t store your private tokens, you’ll need at least one of these local “engines” already set up on your machine:

    • Gemini CLI (gemini)
    • Claude Code (claude)
    • Codex CLI (codex)
    • Alternatively, an OpenRouter API key for a cloud-based backend.

    A few honest warnings

    Let’s be real — this is a Version 1.0 prototype. Because I “vibe-coded” this system alongside AI, there are some things you should know:

    • The Power of Agents: Agentic AI can execute commands directly on your computer. Please review what your agents are doing.
    • Vibe-Coded “Character”: Every line of code was generated and reviewed by AI under my direction. Expect some edge cases and occasional bugs.
    • Local is Best: The optional API Gateway doesn’t have built-in authentication yet. Keep your HASHI setup local for now.

    Getting it onto your machine

    MethodCommand
    npmnpm install -g hashi-bridge
    GitHubnpm install -g github:Bazza1982/HASHI
    Clonegit clone + npm install -g .

    The Onboarding Experience

    I built a dedicated onboarding program so setup feels as guided as possible. Make sure you have at least one backend (Gemini, Claude, or Codex) installed and authenticated first.

    HASHI Language Selection

    Run the following for your OS to meet your first agent, Hashiko:

    • Windows: python onboarding\onboarding_main.py
    • Linux: python3 onboarding/onboarding_main.py
    • Mac (Coming Soon): python3 onboarding/onboarding_main.py
    HASHI Server Startup

    The Workbench Interface

    HASHI Workbench - English Dark Theme
    HASHI CLI Response - Japanese

    UI Customization

    The HASHI Frontend supports multiple themes and layouts to suit your workflow.

    HASHI Workbench - Chinese Light Theme
    HASHI Workbench - Korean CLI Retro Theme

    Right-to-Left Support

    HASHI fully supports RTL languages such as Arabic, with a completely mirrored interface.

    HASHI Workbench - Arabic RTL Layout

    The Magic of Mobile

    While the Workbench is ideal for multi-agent management on your computer, the true power of HASHI is realized when it is ‘in your pocket’ via Telegram or WhatsApp.

    If you don’t know how, don’t worry – your onboarding agent will do everything for you (if you can affort opus 4.5+ lol)

    HASHI Advanced Conversation

    Built with Vision. Written by AI. Directed by Human.

    HASHI — The Bridge connects Intellect; Intellect opens the future.

  • As we cross into mid-March 2026, the global sustainability reporting architecture has achieved a significant milestone. Following years of consultation and strategic alignment with the International Sustainability Standards Board (ISSB), the UK Government has officially endorsed and issued the final UK Sustainability Reporting Standards (UK SRS). This move marks the transition from “global baseline” theory to “jurisdictional implementation” reality for one of the world’s most influential financial markets.

    For scholar-practitioners, the UK’s approach offers a masterclass in balancing international comparability with domestic regulatory rigor. While the UK SRS is fundamentally built upon the foundations of IFRS S1 and S2, the nuances of its rollout—and its interaction with the Financial Conduct Authority (FCA) consultation—provide critical lessons for entities in Australia and beyond.

    The Deep Dive: Decoding the UK SRS Framework

    1. The Endorsement of IFRS S1 and S2

    The UK Government’s endorsement of IFRS S1 and S2 ensures that UK-listed companies will report climate and sustainability information that is interoperable with global standards. However, the UK has added a layer of domestic “relevance” by ensuring these standards align with existing UK legal frameworks, such as the Companies Act. (Source: UK Government Update)

    2. The FCA Consultation: A Phased Implementation

    Concurrent with the standard’s release, the Financial Conduct Authority (FCA) is currently consulting on the implementation timeline. According to Herbert Smith Freehills, the proposed approach would see mandatory reporting take effect for financial years beginning on or after 1 January 2027.

    3. Interoperability with the EU’s CSRD

    A recurring concern for practitioners is the overlap between the UK SRS and the EU’s Corporate Sustainability Reporting Directive (CSRD). The final UK standards include specific guidance on how companies can use “cross-referencing” to satisfy both regimes, reducing double-reporting. As noted by S&P Global, the European Commission’s recent efforts to simplify CSRD rules have actually created a clearer path for this interoperability.

    Practical Takeaway: Lessons for the Australian Context

    The UK’s finalization of its SRS serves as a leading indicator for what we can expect from the Australian Accounting Standards Board (AASB) and the AUASB as they finalize the Australian Sustainability Reporting Standards (ASRS).

    1. Focus on “Readying” Systems: Treat 2026 as your “dry run.” The UK’s decision to provide a preparation year underscores that mandatory reporting is a data-engineering challenge as much as it is a disclosure task.
    2. Standardize the “Delta”: If you operate across the UK and Australia, identify the small “deltas” between UK SRS and AASB S2 (particularly around scenario analysis and specific emission factors) early to avoid year-end reporting friction.
    3. Engage with Consultations: With the FCA consultation closing on 20 March 2026, UK-linked entities still have a window to influence the final application rules.

    Sources

  • As we cross the first quarter of 2026, the global sustainability landscape is shifting from a focus on “what” to report toward a rigorous examination of “how” those reports drive real-world decarbonisation. For the scholar-practitioner, two themes are converging with unprecedented speed: the formalisation of climate transition plans and the structural evolution of carbon markets toward high-integrity assets.

    Deep Dive: The Convergence of Strategy and Quality

    1. ISSB’s Strategic Focus: Harmonising Transition Plan Disclosures

    The International Sustainability Standards Board (ISSB) has officially pivoted its 2024–2026 work plan to prioritise the harmonisation of transition plan disclosures. According to IFRS Foundation updates, the goal is to provide a global baseline that moves transition planning from a core financial strategy component.

    Key Structural Shifts:

    • Modular Integration: The ISSB is working to fold Taskforce on Nature-related Financial Disclosures (TNFD) technical guidance into its standards.
    • Decision-Grade Evidence: There is a growing demand for disclosures that provide “decision-grade” evidence—meaning transition plans must be backed by verifiable data that auditors can sign off on.

    2. The Carbon Market Pivot: Quality Over Volume in 2026

    The global carbon market is undergoing a fundamental structural change. A recent report by Abatable via Carbon Herald highlights that 2026 will be defined by “quality, not volume.”

    Why This Matters for Assurance:

    • High-Integrity Credits: As compliance programs and voluntary markets mature, the appetite for high-integrity credits is reshaping supply.
    • Long-term Contracting: Corporates are moving away from spot-market purchases toward long-term contracting for high-quality carbon removals.

    3. Regional Regulatory Pressures: EU and California

    While the global baseline is firming up, regional nuances remain. According to S&P Global, the European Commission’s efforts to simplify CSRD and CSDDD rules are reducing the number of reporting entities but increasing the depth of required information. Simultaneously, legal challenges to California’s climate laws serve as a reminder that the path to mandatory disclosure is rarely linear.

    Practical Takeaway: Aligning Your Roadmap

    For practitioners navigating this landscape, the focus should be on three specific areas:

    1. Audit Your Transition Logic: Ensure your transition plan isn’t just a list of targets. It must be a logical sequence of actions supported by capital allocation.
    2. Scrutinize Carbon Credit Origins: If your transition plan relies on carbon offsets, prioritise credits with high-integrity certifications and transparent MRV (Monitoring, Reporting, and Verification) processes.
    3. Prepare for Assurance Interoperability: Ensure your data collection processes can satisfy both ISSB-aligned domestic standards (like ASRS in Australia) and international requirements like the CSRD.

    Sources

  • As we move into March 2026, the global sustainability reporting landscape is undergoing a critical expansion. While the first wave of mandatory reporting concentrated heavily on climate-related financial disclosures (IFRS S2), the International Sustainability Standards Board (ISSB) has signaled a clear pivot toward “nature-positive” transparency. For Australian entities already navigating the Australian Sustainability Reporting Standards (ASRS) framework, this evolution marks the next frontier: integrating biodiversity and ecosystem services into the core of financial reporting.

    The Deep Dive: From Climate to Nature

    1. ISSB Implementation Insights and Nature-Related Rules

    Following the February 2026 meeting, the ISSB confirmed its progress on research projects aimed at standardizing nature-related disclosures. According to the IFRS Foundation, the board is leveraging the TNFD recommendations to ensure that companies can provide high-quality information about nature-related risks and opportunities without the burden of fragmented frameworks.

    2. The Rise of Biodiversity Markets and Regulated Credits

    Early 2026 has seen a significant shift in how biodiversity is valued. As reported by Global Society, nature credits are emerging as a regulated instrument. This maturation coincides with UNDP BIOFIN’s expansion, helping national governments integrate biodiversity into financial planning. In Australia, this aligns with the ongoing refinement of the Nature Repair Market.

    3. Interoperability and the “Simplification” Process

    A major theme in the March 2026 cycle is the effort to harmonize the ISSB standards with the European Sustainability Reporting Standards (ESRS). The IFRS Foundation’s jurisdictional profiles highlight that “interoperability” is now a technical reality. The goal is to allow multi-jurisdictional companies to “report once, disclose everywhere,” reducing the compliance burden for Group 1 and Group 2 entities.

    Practical Takeaway: Preparing for the Next Wave

    1. Conduct a Nature Gap Analysis: Don’t wait for mandatory rules. Use the current TNFD framework to assess your entity’s dependency on nature.
    2. Review Carbon-Nature Linkages: Ensure carbon credit strategies do not inadvertently harm local biodiversity.
    3. Data Infrastructure: The shift requires location-specific data. Start identifying where your operations interact with high-biodiversity areas.
    4. Assurance Readiness: As assurance requirements phase in for climate (via ASSA 5000), expect nature-related disclosures to follow.

    Sources

  • The Voluntary Carbon Market (VCM) is no longer a peripheral corporate social responsibility tool; it is rapidly evolving into a structured, compliance-adjacent asset class. According to the latest analysis by Abatable, the market in 2026 is being redefined by “quality over volume,” driven by a significant influx of compliance-linked demand.

    A primary catalyst is the Carbon Offsetting and Reduction Scheme for International Aviation (CORSIA), which is projected to inject approximately 78 million tons of new demand into the market this year. This is not merely an increase in scale but a shift in criteria. CORSIA-eligible credits must meet rigorous integrity benchmarks, effectively creating a “premium tier” of supply that bridges the gap between voluntary action and mandatory compliance.

    Furthermore, the emergence of domestic compliance programs, such as Japan’s GX-ETS, is fundamentally reshaping corporate purchasing strategies. Organizations are moving away from spot-market transactions toward long-term forward contracting. As noted by South Pole, digitalization and standardized integrity frameworks are becoming the baseline, forcing buyers to integrate deep technical due diligence into their procurement processes.

    Practical Takeaway

    For sustainability leads and finance professionals, this structural shift necessitates three immediate adjustments to carbon procurement:

    1. Prioritize Compliance Alignment: Even if not currently under a mandate, sourcing credits that meet CORSIA or similar high-integrity standards (like ICVCM’s CCPs) provides a “future-proofing” hedge against upcoming domestic regulations.
    2. Move to Multi-Year Offtake: With high-quality supply tightening due to rising demand from compliance schemes, forward contracting is essential to secure price certainty and integrity-assured volumes.
    3. Internalize Integrity Due Diligence: The era of “buy and forget” is over. Companies must treat carbon credits as financial assets requiring decision-grade evidence, mirroring the rigor of mandatory climate disclosures.

    Sources

  • As we navigate through the first quarter of 2026, a significant shift in the corporate landscape has become undeniable: the era of “ESG” as a catch-all marketing slogan is effectively over. However, this isn’t a retreat from environmental or social responsibility. Instead, we are witnessing a transition toward a more mature, fragmented, and pragmatic discipline. According to recent insights from Morrison Foerster, 2026 is becoming the year where “sloganeering” is replaced by disciplined risk management and integrated financial reporting.

    Deep Dive: Fragmentation and the Rise of E-Ledgers

    The most striking trend this year is the widening “Tale of Two Worlds.” In the United States, federal policy and investor pressure have led to a significant scaling back of ESG branding in public filings. Conversely, more than 30 jurisdictions—particularly across Asia and Europe—are accelerating mandatory disclosure regimes. This divergence creates a complex compliance friction for multinationals, who must now navigate a landscape where being “too green” in one market is as risky as being “not green enough” in another.

    Amidst this fragmentation, a technical revolution is quietly taking hold: balance-sheet-based carbon accounting and “e-ledger” frameworks. Led primarily by traditional energy companies, these e-ledgers move beyond the often-criticized estimates of the GHG Protocol. As highlighted by S&P Global, these frameworks treat carbon as a financial liability, providing a level of precision that complements Scopes 1, 2, and 3 reporting. This shift allows corporations to tie sustainability initiatives directly to shareholder value, moving the conversation from “values” to “valuation.”

    Practical Takeaway

    For board directors and executives, the takeaway for 2026 is clear: Pragmatism wins.

    1. Rebrand for Substance: Shift internal and external communication away from “ESG” toward industry-specific solutions (e.g., “Energy Transition” or “Resilient Supply Chains”).
    2. Audit for Litigation: With the rise of anti-competition legal frameworks and heightened scrutiny on DEI and climate statements, ensure every sustainability claim is defensible under traditional misrepresentation frameworks.
    3. Invest in Data: Transition toward automated carbon accounting. The “e-ledger” approach isn’t just a trend; it’s the future of how sustainable finance products will be priced and de-risked.

    Sources

  • As 2026 unfolds, climate reporting and carbon markets are no longer parallel conversations?they are becoming one assurance problem. Preparers are dealing with targeted implementation changes in disclosure standards, while market participants are demanding stronger proof that carbon credits represent real and durable climate outcomes. For scholar-practitioners, the key shift is this: the market is moving from ?reporting more? to ?reporting with defensible evidence.?

    Deep Dive

    1) IFRS S2 implementation is being recalibrated for practical use, not reduced ambition

    The ISSB?s targeted amendments to IFRS S2 show a pragmatic implementation stance: preserve investor-useful information, but reduce operational friction where application has proven difficult. According to the ISSB announcement, the amendments clarify Scope 3 Category 15 treatment (financed emissions), permit alternative classification systems beyond GICS, and introduce specific jurisdictional reliefs (including for GHG measurement methods and GWP values).

    This matters for practice because implementation quality is now tied to governance design: entities need traceable methodologies that can withstand both assurance procedures and regulator scrutiny, especially when reliefs are used. The IFRS Foundation?s project page confirms the amendment package and timeline for effective application in implementation planning here.

    2) Assurance capacity is catching up with reporting complexity

    A standard is only as strong as its auditability. The IAASB?s supplementary illustrative reports for ISSA 5000 provide concrete templates for real engagement conditions, including mixed assurance levels and modified conclusions. As outlined by the IAASB guidance page, these examples move ISSA 5000 from baseline requirements to applied assurance judgement.

    From a practitioner lens, this is a critical maturation step: assurance teams can now anchor report design, evidence requests, and engagement scoping to publicly visible examples. In other words, the conversation is shifting from ?Can we disclose this?? to ?Can we support this conclusion under assurance??

    3) Carbon-market integrity infrastructure is becoming more granular and label-driven

    In voluntary carbon markets, integrity is increasingly operationalised through methodology-level screening and labeling. The Integrity Council?s announcement of first CCP-labelled credits shows how the ?two-tick? logic (program eligibility + methodology approval) is being used to segment quality in tradable supply (ICVCM announcement).

    At the registry level, Verra?s updated CCP label guidance translates that architecture into issuer workflows?when labels are automatic, when proponents must submit additional evidence, and how requantification pathways can be used to align previously issued units with CCP-eligible methods (Verra guidance).

    The practitioner implication: credit quality is no longer an abstract ?high integrity? claim; it is becoming an evidentiary chain that can be tested.

    4) Australia?s compliance market continues to reward operational discipline

    Australia?s Safeguard Mechanism remains a live laboratory for integration between emissions measurement, compliance actions, and unit use. The Clean Energy Regulator?s scheme page reports current scale indicators?including covered emissions and surrendered ACCUs/SMCs?which reinforce that compliance demand and reporting discipline are now deeply connected (CER Safeguard Mechanism).

    For reporting entities, this creates a practical bridge: internal emissions controls are no longer just for disclosure?they directly influence compliance cost, unit strategy, and assurance risk.

    Practical Takeaway

    1. Design for assurance at source, not at year-end.
      Build data lineage and control narratives when metrics are produced, especially for Scope 3 and financed emissions.
    2. Use IFRS S2 reliefs carefully and explicitly.
      Reliefs reduce burden but increase the need for transparent methodological disclosure and governance documentation.
    3. Treat carbon credits as evidence-bearing instruments.
      Move procurement and retirement decisions toward credits with clear methodology status and labeling pathways.
    4. Integrate compliance and reporting teams.
      In the Australian context, Safeguard, NGER-aligned measurement practice, and sustainability reporting should operate on a single control architecture.
    5. Reframe capability building.
      The new competitive advantage is not ?having climate data?; it is producing climate information that remains decision-useful after assurance challenge.

    Sources

  • A striking divergence is emerging in the global corporate landscape. According to The Conference Board’s 2026 C-Suite Outlook survey, 38% of US CEOs now say sustainability-focused investments are not a priority this year – nearly double the 20% global average. This marks a dramatic shift from 2025, when 39.3% of global executives named sustainability as the external ESG factor most affecting their business.

    What’s driving this recalibration? And more importantly, what does it mean for practitioners navigating climate reporting and sustainability assurance?

    Deep Dive: Understanding the Shift

    The Numbers Tell a Story

    The Conference Board surveyed over 1,700 executives, including 750+ CEOs across North America, Europe, and Asia. The findings reveal a polarized executive landscape:

    • US CEOs are twice as likely to de-prioritize sustainability compared to global peers
    • Top sustainability priorities for those still engaged: circular economy/waste reduction (17.4%) and sustainable use of key inputs like water and energy (16%)
    • Social priorities (working conditions, gender equality, human rights) ranked relatively low globally
    • AI emerged as the #1 concern (30.3%), while climate events ranked third among goods/services sector leaders

    What’s Behind the US Pullback?

    Andrew Jones, Principal Researcher at The Conference Board, attributes this to three factors:

    1. Regulatory uncertainty – The shifting federal policy landscape has created compliance confusion
    2. Political and legal scrutiny of ESG – Anti-ESG legislation and shareholder activism are forcing defensive postures
    3. Slower energy transition momentum – Infrastructure and investment challenges are tempering ambitions

    The European Contrast

    While US executives retreat, European counterparts are embedding sustainability into core business operations. This isn’t just rhetorical – the CSRD mandates and EU Taxonomy requirements are making sustainability reporting a baseline operational requirement, not a discretionary initiative.

    Practical Takeaway

    For assurance providers and sustainability practitioners, this divergence signals several strategic imperatives:

    1. Reframe the Value Proposition

    Jones notes CEOs are “prioritizing initiatives that directly improve cost efficiency, operational resilience, and supply chain stability, rather than broad or reputational ESG commitments.”

    Translation for practitioners: Connect every sustainability metric to operational value. Scope 1 & 2 emissions reduction? Frame it as energy cost management. Supply chain due diligence? Position it as risk mitigation.

    2. Anticipate Regulatory Convergence

    The UK FCA’s current consultation (closing March 20, 2026) proposes mandatory climate disclosures mirroring TCFD scope, with implementation targeted for January 2027. Whether US executives like it or not, global reporting standards are converging. Companies with international exposure will need assurance-ready data regardless of domestic political winds.

    3. Watch the Carbon Market Bridge

    As voluntary and compliance carbon markets converge (Japan’s GX-ETS launches in 2026), institutional-grade carbon accounting becomes essential. This creates natural demand for third-party assurance even among reluctant US firms with global trading partners.

    4. Quality Over Quantity

    The era of sprawling ESG reports may be ending. Focus assurance engagements on material metrics with clear audit trails. CEOs want targeted initiatives with demonstrable ROI – give them assurable data that supports that narrative.

    The Bigger Picture

    Environmental sustainability hasn’t disappeared from CEO agendas – it has become “more selective and economically grounded.” This isn’t necessarily bad news for the profession. Selective, economically-grounded sustainability claims demand rigorous assurance.

    The question for 2026 isn’t whether sustainability matters, but which sustainability metrics will survive executive scrutiny – and whether your assurance practice is positioned to validate them.


    Sources