Thinking about giving AI more freedom to operate within your team's tools? One of our tech bloggers just learned a powerful lesson about the importance of verifying AI actions, even when everything seems to be running smoothly. What this means for you is that building trust in our intelligent systems requires more than just watching them work; it also demands ensuring we understand how they work and exactly what they're doing. The story begins when our colleague granted an AI real permission to post messages directly to their team's Slack channels. To prevent any unwelcome surprises, they built three checking steps into how the AI would use this permission. But the real surprise came after auditing the AI's logs: one of those three checks had never actually been used! This clearly shows that 'it worked' and 'I can verify what it did' are two very different claims when it comes to AI actions. Our colleague faced a particularly interesting problem with Slack channel IDs. These IDs are machine-readable strings that are hard for humans to quickly read and sanity-check, unlike an AI that handles them with ease. So, a clever check was put in place: instead of the AI using a raw channel ID directly, it was made to first search for the channel name using a function like `slack_search_channels`. This simple shift meant that a step previously opaque and non-auditable by humans became one that anyone could visually confirm. What this means for us is that as we integrate AI into our workflows, we shouldn't just let it exist. We must design systems in a way that allows us to verify the correctness of its decisions and actions. Building clear verification checks, even if the AI doesn't always seem to use them, adds a crucial layer of transparency and accountability. It's not about distrusting the AI's capabilities, but rather about building confidence and ensuring we maintain control over how it impacts our daily operations. This experience is a strong reminder of the importance of baking human oversight and transparency into every step of the AI journey.