March 2026 Summaries
15 posts from Unleash
Filter
Month:
Year:
Post Summaries
Back to Blog
Alex Casalboni's examination of runtime control for AI agents reveals the inadequacies of prompt-based defenses in securing autonomous agents, as adaptive attacks bypass them over 90% of the time, leading to vulnerabilities such as execution poisoning and unauthorized actions. Instead of relying on input filtering, Casalboni advocates for a governance model focusing on the "action path" of agents, controlling how they call tools and what permissions they hold, through a 5-layer runtime stack that includes approval, authorization, policy checks, containment, and observability. This framework enables real-time management of agent capabilities using feature flags and the Model Context Protocol (MCP), which integrates security checks and authorization boundaries directly into the development process, thus maintaining deployment velocity without sacrificing control. By treating agent actions as dynamic software capabilities, the approach provides a more robust security solution that addresses the shortcomings of static orchestrators and LLM firewalls, allowing for scalable, resilient AI governance.
Mar 31, 2026
1,703 words in the original blog post.
Feature flags have evolved from simple engineering tools to essential components of modern infrastructure, providing automated control over production environments across various departments within an organization. Initially used by developers to manage code deployment without affecting live users, feature flags have expanded to involve SREs, product managers, QA teams, and sales teams, necessitating a transition to a shared FeatureOps model. This operational shift enables precise runtime configuration and rollback capabilities, allowing non-developers to manage user experiences and entitlements while mitigating technical debt and ensuring compliance. Mature companies are adopting centralized feature management platforms like Unleash to streamline flag management, integrate compliance systems, and maintain operational security. As organizations scale, the focus is on establishing robust governance and lifecycle management to prevent code bloat and maintain performance, highlighting the need for a secure and compliant infrastructure to support cross-functional access to production logic.
Mar 27, 2026
1,431 words in the original blog post.
Alex Casalboni's post on integrating feature flags with the Unleash MCP server and Kiro IDE provides a comprehensive guide to automating feature flag governance in software development. The process is broken down into four layers: connecting the MCP server, encoding policies with steering files, automating evaluations with hooks, and packaging everything into a shareable Kiro Power. The setup ensures that feature flags are managed consistently and effectively, using a combination of manual and automated workflows that follow team-specific conventions. By the end of the guide, teams can install a unified setup with a single click, simplifying the integration of feature flags into development projects while ensuring risk evaluation, consistent naming, and cleanup of stale flags. This structured approach enhances team collaboration and maintains feature flag integrity across various projects.
Mar 26, 2026
1,942 words in the original blog post.
SaaS engineering teams pursuing FedRAMP compliance often face challenges in maintaining agile deployment processes due to manual Change Advisory Boards, which can significantly delay software updates. The adoption of a FeatureOps model offers a solution by enabling faster federal software releases through deterministic telemetry and rollback controls, aligning with FedRAMP Rev. 5's agile change notification frameworks. Recent policy shifts, including a directive from the White House and the introduction of the Significant Change Notification process, support agile deployment lifecycles by allowing significant changes without advance government approval, provided they adhere to mandated protocols. Feature flags, although beneficial for altering production behavior without new deployments, pose compliance risks if unstructured, as they can lead to undocumented changes and production outages. To address these issues, organizations are encouraged to map deployment lifecycles to NIST 800-53 controls, enforce rigorous governance over feature flags, and utilize local evaluation architectures to confine data within secure boundaries. Automated feature management platforms, like Unleash, facilitate compliance by replacing manual ticketing with governed approval workflows that ensure the secure logging of changes and reviewer identities, thereby maintaining an open pathway for shipping critical code.
Mar 24, 2026
1,483 words in the original blog post.
The Model Context Protocol (MCP) is a framework that facilitates the integration of AI applications with external systems, offering promising capabilities such as feature flag control directly from an IDE. Despite its growing adoption and impressive download statistics, MCP presents significant security risks if used for autonomous feature management in production environments. The protocol's vulnerabilities, notably tool poisoning and high attack success rates, underscore the need for strict control measures, such as OAuth 2.1 authentication and human-in-the-loop approval processes, to prevent unauthorized changes. MCP's primary value lies in managing tool discovery and administration workflows, while standards like OpenFeature govern runtime evaluation. Instead of relying on AI for production-level decisions, teams should leverage MCP tools for reducing technical debt by identifying and removing stale feature flags. This approach emphasizes the importance of structured workflows, where AI assists in cleanup and governance tasks under strict supervision, ensuring secure and efficient continuous delivery without exposing infrastructure to critical vulnerabilities.
Mar 20, 2026
1,458 words in the original blog post.
Feature flags are a crucial tool in software development, enabling teams to separate the deployment of new features from their release, thereby enhancing deployment velocity and reducing incident risks. They allow for trunk-based development and operational control, significantly outpacing their use in marketing experimentation. However, the reliance on static configuration files can lead to technical debt, necessitating a dynamic architecture that isolates feature decision points from application routing. This approach requires an active runtime architecture, such as local edge evaluation, which prevents data exposure and reduces latency by keeping user context within the network. Effective management of feature flags involves setting maximum lifespans and automating removal pipelines to prevent codebase rot. Organizations like Unleash have demonstrated the scalability of this approach, processing trillions of evaluations daily while maintaining compliance and speed. Properly implemented, feature flags serve as a distributed continuous delivery architecture, allowing for frequent and secure releases without compromising system integrity.
Mar 18, 2026
1,315 words in the original blog post.
Advanced sandboxing techniques are essential for securely deploying AI agents, as standard language-level sandboxes and Docker containers provide inadequate protection against threats such as indirect prompt injection. True security requires hardware-level isolation through MicroVMs, userspace kernels, or WebAssembly components, which offer explicit capability boundaries and runtime feature control. Secure AI deployment also involves abstracting secrets via a man-in-the-middle proxy to prevent unauthorized access and using copy-on-write filesystem overlays to protect host files. Additionally, managing autonomous code requires a runtime control layer, such as FeatureOps, to separate deployment from user exposure and provide instant rollbacks for agent-generated logic. This approach ensures that while the host machine remains secure, the business environment is also protected from potentially destructive code, highlighting the importance of comprehensive AI governance starting at runtime.
Mar 16, 2026
1,660 words in the original blog post.
The text discusses the importance of aligning feature flag strategies with SOC 2 compliance requirements, emphasizing that feature flags, which can alter system behavior without code deployment, are increasingly viewed as production changes that must be managed with the same rigor as code commits. The document highlights the necessity of integrating feature flags into change management, access control, and auditability frameworks, noting that they can become compliance assets if managed correctly by providing detailed audit trails and precise access controls. It underscores the importance of the "four-eyes principle" in change management, ensuring that no single individual has unchecked power over production changes. Role-Based Access Control (RBAC) is recommended for logical access control to limit permissions appropriately, and the text also stresses the need for immutable audit logs to facilitate audits. Additionally, it points out the advantages of local evaluation for privacy compliance and the risks associated with stale feature flags. Overall, the article suggests that, when properly governed, feature flags can enhance both compliance and operational efficiency, aligning with high-performing engineering practices.
Mar 12, 2026
2,031 words in the original blog post.
Kiro, an AI-powered integrated development environment (IDE) by AWS, transforms the way feature flags are integrated into software development by introducing a spec-driven approach that identifies risks before coding begins. This method ensures that feature flags are part of the initial requirements, thus avoiding the typical afterthought addition during code reviews, which often leads to inconsistent naming and vague rollout plans. By using the EARS notation for structured requirements and integrating with Unleash's MCP server, Kiro automates the creation, naming, and deployment of feature flags, ensuring that high-risk tasks are flagged from the start. This approach is particularly beneficial in AI-assisted development, where rapid code production can outpace governance practices, leading to increased risk of issues like the global Google Cloud outage in 2025. Kiro's integration with Unleash includes tools that evaluate changes, detect existing flags, create new ones, and manage the entire lifecycle of feature flags, thus embedding governance into the development process and enabling safer, more reliable software releases.
Mar 11, 2026
1,911 words in the original blog post.
Enterprise feature flags have evolved from simple code toggles into sophisticated tools essential for managing large-scale software deployments, emphasizing governance, privacy, and performance. As organizations scale, managing feature flags becomes a complex engineering discipline, necessitating a robust governance layer with Single Sign-On (SSO) and Role-Based Access Control (RBAC) to prevent unauthorized changes and ensure compliance. Enterprise feature flags decouple deployment from release, providing a reliable control mechanism that supports fast-paced development while maintaining stability and security. These systems often employ local evaluation to keep user data within the organization's infrastructure, enhancing privacy and reducing latency. Lifecycle management is crucial to prevent technical debt from accumulating, requiring automated processes to identify and archive stale flags. Resilience is ensured through edge caching and redundancy, allowing flag evaluations to occur with minimal latency and safeguarding against system failures. Organizations like Wayfair illustrate that specialized feature management platforms can handle high volumes of traffic more cost-effectively than homegrown solutions. The adoption of open standards like OpenFeature mitigates vendor lock-in, enabling flexibility in switching providers without rewriting application logic, thus treating feature management as a commoditized infrastructure layer crucial for scaling software delivery.
Mar 10, 2026
1,867 words in the original blog post.
Feature flags, when not properly managed, can create compliance gaps within DevOps regulatory frameworks due to their ability to change system behavior without new code deployments, thus bypassing traditional change management controls. This oversight can lead to violations of standards such as NIST, SOC 2, and the EU's DORA, as feature flags are often seen as production changes needing the same level of scrutiny as code deployments. To mitigate these risks, organizations must treat feature flags as runtime configurations, subjecting them to rigorous change controls, documentation, and dual authorization to ensure compliance with frameworks like NIST SP 800-53 and ISO 27001. Platforms such as Unleash facilitate this process by embedding regulatory-grade controls, including tamper-evident audit logs and change request workflows, allowing for traceability and compliance without compromising the speed of delivery. Additionally, maintaining strict environment segregation and using automated monitoring to integrate feature flag logs into centralized observability stacks are crucial for ensuring data integrity and quick incident resolution. As regulations like GDPR and PCI DSS demand data sovereignty and detailed audit trails, compliant feature management strategies must also prevent data from leaving secure perimeters and require feature flag evaluations within controlled environments.
Mar 10, 2026
2,094 words in the original blog post.
Alex Casalboni's article explores the challenges and strategies of automating feature flag configuration using Terraform within infrastructure as code (IaC) environments. The primary focus is on balancing Terraform's stability and predictability with the dynamic, runtime nature of feature flags, which are often used for immediate changes like emergency kill switches. The article suggests a hybrid model that automates project creation and access control through Terraform while allowing feature flag states to be managed via API or UI for flexibility. It discusses using both the official Unleash provider for instance scaffolding and the community-owned Philips-Labs provider for flag logic. The piece highlights the risk of state drift when Terraform configurations conflict with manual changes, advocating for lifecycle ignore rules to manage this. Integrating governance through Terraform can ensure compliance, especially in regulated industries, while maintaining the agility of software delivery through the Unleash UI. The article concludes with best practices for automation, emphasizing the importance of defining what aspects of feature management belong in Terraform and what should remain in runtime environments.
Mar 09, 2026
2,154 words in the original blog post.
We’ve raised $35M in Series B to help enterprises ship AI-driven software faster, safer, and smarter
Unleash, an open-source FeatureOps platform, has raised $35 million in a Series B funding round led by One Peak, with existing investors Spark Capital, Frontline Ventures, and Firstminute Capital also participating. This funding aims to address the challenges posed by the rapid acceleration of AI in software development, which, while increasing speed, has also led to concerns about software stability and governance. Unleash provides a solution by offering enterprises real-time control over application behavior in production, ensuring that changes are reversible and guided by real-time signals. This approach is vital in managing the tension between AI-driven velocity and the need for reliability, compliance, and governance. Built on a community-driven, open-source foundation, Unleash has gained traction among enterprises like Lloyds Banking Group, Prudential, Wayfair, and Lenovo, particularly in regulated industries. The new funding will support global expansion and further investment in autonomous feature lifecycle management, reinforcing the platform's mission to balance AI speed with human oversight.
Mar 04, 2026
755 words in the original blog post.
Unleash 7.5, released on March 4, 2026, introduces several enhancements and new beta features designed to improve user experience and project management. Notably, user groups with root roles can now be assigned to projects, simplifying access management for teams using SSO providers. Additionally, Edge URLs can now be directly copied from the Admin settings for API access, with configuration options available for self-hosted customers. The update also addresses visibility issues for private project data, ensuring that only authorized users can access project metadata. Two new beta features are introduced: Impact Metrics, which allow users to track application-level metrics for error rates and latency, and Unleash MCP, a tool that integrates with AI coding assistants to manage feature flags safely. Users are encouraged to subscribe to release notes for ongoing updates and announcements.
Mar 04, 2026
365 words in the original blog post.
AI coding assistants are transforming software development by enabling rapid code generation, but this speed introduces challenges in system stability and resilience, as failures in production become more common. The focus is shifting from ensuring pure correctness to achieving reversibility, where issues can be quickly contained and resolved. FeatureOps emerges as a critical discipline to manage software behavior at runtime, using techniques such as feature flags, sandboxing, and runtime controls to reduce the impact of failures and maintain user protection. This approach allows for controlled feature releases, decoupling deployment from release, and enables fast recovery and rollback mechanisms to ensure stability without sacrificing speed. Organizations that adopt proper governance and runtime control practices, like Google and Cloudflare, find these methods accelerate delivery and improve confidence in deploying AI-generated code. The Unleash MCP server automates FeatureOps best practices, helping teams implement these strategies efficiently and manage feature flags across different environments, ensuring they can deploy rapidly while maintaining control over software behavior.
Mar 03, 2026
1,806 words in the original blog post.