πŸ€– AI Tools
Β· 3 min read

AI Policy Template for Startups β€” Copy, Customize, Ship


Your team is using AI tools. You need a policy. Here’s a template you can copy, customize in 30 minutes, and share with your team today.

The template

1. Approved AI tools

ToolApproved useData allowedPlan required
Claude CodeCoding, code review, docsInternal code onlyPro ($20/mo)
CursorIDE coding assistantInternal code onlyPro ($20/mo)
ChatGPTResearch, writing, brainstormingNo customer dataTeam plan
GitHub CopilotCode autocompleteInternal code onlyBusiness plan
Notion AIDocument draftingNo customer PIITeam plan

Not approved: Consumer/free tiers of any AI tool for work purposes. Free tiers typically use your data for training. Use API or business plans only.

2. Data classification

Data typeCan send to AI?Examples
Publicβœ… YesOpen-source code, public docs, marketing copy
Internalβœ… With approved toolsInternal code, specs, architecture docs
Confidential⚠️ With DPA onlyCustomer data (anonymized), financial data
Restricted❌ NeverCustomer PII, credentials, API keys, health data

Rule: When in doubt, don’t send it. Ask your manager or security team.

3. Code review requirements

All AI-generated code must be:

  • Reviewed by a human before merging (same as human-written code)
  • Tested β€” AI-generated code needs tests, just like human code
  • Security scanned β€” run your standard security checks
  • Attributed β€” add a comment noting AI assistance for significant contributions
# AI-assisted: Generated by Claude Code, reviewed and modified by [developer]
def process_payment(amount, currency):
    ...

4. Prompt hygiene

  • Never include credentials in prompts (API keys, passwords, tokens). See our API key security guide.
  • Never include customer PII (names, emails, addresses) in prompts
  • Redact before sending β€” replace real data with placeholders
  • Don’t paste entire databases β€” send only the relevant schema/sample

5. Compliance

  • All AI tools must have a Data Processing Agreement (DPA) if processing personal data. See our GDPR guide.
  • AI-generated content must be reviewed for accuracy before publishing
  • AI-generated code must pass the same quality bar as human code
  • Keep logs of AI usage for audit purposes

6. Incident response

If AI produces harmful, biased, or incorrect output that reaches users:

  1. Disable the AI feature immediately (feature flag)
  2. Document what happened and the impact
  3. Notify your manager and security team
  4. Fix the root cause (prompt, guardrails, or model choice)
  5. Post-mortem within 48 hours

See our AI security checklist for the full incident response plan.

7. Quarterly review

Every quarter, review:

  • Are approved tools still appropriate?
  • Have any tools changed their data policies?
  • Are there new tools the team should evaluate?
  • Have there been any AI-related incidents?
  • Does the policy need updates?

How to roll this out

  1. Customize the template above for your company (30 minutes)
  2. Share with your team via Notion or your wiki
  3. Discuss in a team meeting (15 minutes)
  4. Get sign-off from leadership
  5. Review quarterly and update as tools evolve

What this policy doesn’t cover

This is a usage policy, not a full governance framework. For companies building AI products (not just using AI tools), you also need:

See our AI governance guide for the complete framework.

Related: AI Governance for Startups Β· AI Security Checklist Β· AI and GDPR Β· AI Risk Assessment Template Β· How to Secure AI API Keys