AS-101 · Module 3

Building the Habit

3 min read

Security is a practice, not a product. You do not buy security. You do not install security. You practice security — daily, weekly, monthly — until the safe choice becomes the automatic choice. The goal of this course is not to make you afraid of AI. The goal is to make basic security hygiene as automatic as locking your front door.

  1. Daily: The Two-Second Pause Before you paste anything into an AI tool, pause for two seconds and apply the breach test. Before you commit code, glance at the diff for hardcoded credentials. These micro-habits take almost no time and prevent the vast majority of AI security incidents. Two seconds. That is the cost.
  2. Weekly: Credential Review Once a week — pick a day, make it consistent — verify that your API keys are still secure. Check for unexpected usage spikes in your provider dashboard. Review any new .env files or configuration changes. Five minutes of weekly review catches drift before it becomes exposure.
  3. Monthly: Access Audit Review who has access to your AI systems and API keys. Remove access for people who no longer need it. Rotate keys that have not been rotated in 90 days. Check that your .gitignore is still configured correctly. Fifteen minutes a month keeps the fundamentals solid.
  4. Quarterly: Policy Check Review your AI provider's data retention and usage policies — they change. Verify that your organization's AI usage guidelines are still current. Update your security checklist if new threat vectors have emerged. The landscape evolves. Your practices should too.

The people who get breached are not the people who lack knowledge. They are the people who lack habits. They know they should use environment variables — they just did not, this one time. They know they should check the diff for credentials — they just forgot, this one time. Security failures are almost never knowledge failures. They are consistency failures. The habit is the defense.

Do This

  • Build security into your workflow so the safe path is the default path
  • Treat security as a recurring practice — daily, weekly, monthly, quarterly
  • Start with the smallest habit (the two-second pause) and build from there

Avoid This

  • Treat security as a one-time setup that you can forget about after configuration
  • Wait for an incident to motivate better habits — the cost of that motivation is too high
  • Assume that because nothing bad has happened yet, your current practices are sufficient