All Movements

Common Sense AI Ratings v1

Beta

CSM's 8-dimension, 4-tier risk framework for consumer AI products — enforced as platform-level gates.

16 rules
Ages 017

About this movement

Common Sense AI Ratings v1 is CSM's public risk framework for consumer-facing AI products. Every rated product is scored on 8 dimensions (including Keep Kids & Teens Safe, Use Data Responsibly, Be Transparent & Accountable, Put People First) and classified into one of four risk tiers: Low, Moderate, High, or Unacceptable. The framework also separates AI products by Type — Multi-Use (ChatGPT-style general chatbots), Designed-for-Kids, and Use-Case products (homework helpers, companions, tutors). As a Phosra standard — subject to a pending CSM design-partner agreement — AI Ratings v1 maps directly onto Phosra's AI safety rule categories: Unacceptable-tier products are hard-blocked, High-tier products require parent unlock, and dimension thresholds enforce per-axis floors. This standard also encodes the NY S9051 and CA SB 867 prohibitions that CSM's framework anticipates.

Coming soon

This movement is not yet available for adoption. Join the waitlist to be notified when it launches.

Join Waitlist

How Phosra Enforces Common Sense AI Ratings v1

Common Sense AI Ratings v1 rules mapped to the Phosra API — enforce them individually or adopt the entire movement in one call.

Common Sense AI Ratings v1

Adopt Entire Movement

Enforce all 16 rules from Common Sense AI Ratings v1 across every connected platform with a single API call.

POST /v1/enforcement/movements
bash
curl -X POST https://api.phosra.com/v1/enforcement/movements \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "child_id": "ch_emma_01",
    "movement_id": "common-sense-ai-ratings-v1",
    "enforce_all_rules": true
  }'

AI risk tier gate

Ai Chatbot Tier Gate

ai_chatbot_tier_gate

Enforces the ai chatbot tier gate rule via the Phosra API.

POST /v1/rules — AI risk tier gate
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_chatbot_tier_gate",
      "value": "Low/Moderate/High/Unacceptable",
      "platforms": [
          "*"
      ]
  }'

AI Type gate

Ai Product Classification Gate

ai_product_classification_gate

Enforces the ai product classification gate rule via the Phosra API.

POST /v1/rules — AI Type gate
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_product_classification_gate",
      "value": "Multi-Use vs Kids vs Use-Case routing",
      "platforms": [
          "*"
      ]
  }'

Keep Kids & Teens Safe

Ai Dim Keep Kids Safe Threshold

ai_dim_keep_kids_safe_threshold

Enforces the ai dim keep kids safe threshold rule via the Phosra API.

POST /v1/rules — Keep Kids & Teens Safe
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_dim_keep_kids_safe_threshold",
      "value": "Dimension floor",
      "platforms": [
          "*"
      ]
  }'

Use Data Responsibly

Ai Dim Data Responsibility Threshold

ai_dim_data_responsibility_threshold

Enforces the ai dim data responsibility threshold rule via the Phosra API.

POST /v1/rules — Use Data Responsibly
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_dim_data_responsibility_threshold",
      "value": "Dimension floor",
      "platforms": [
          "*"
      ]
  }'

Be Transparent & Accountable

Ai Dim Transparency Threshold

ai_dim_transparency_threshold

Enforces the ai dim transparency threshold rule via the Phosra API.

POST /v1/rules — Be Transparent & Accountable
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_dim_transparency_threshold",
      "value": "Dimension floor",
      "platforms": [
          "*"
      ]
  }'

No simulated companionship

Ai No Simulated Companionship

ai_no_simulated_companionship

Enforces the ai no simulated companionship rule via the Phosra API.

POST /v1/rules — No simulated companionship
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_no_simulated_companionship",
      "value": "NY S9051 personification ban",
      "platforms": [
          "*"
      ]
  }'

No unsupervised therapy

Ai No Unsupervised Therapy

ai_no_unsupervised_therapy

Enforces the ai no unsupervised therapy rule via the Phosra API.

POST /v1/rules — No unsupervised therapy
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_no_unsupervised_therapy",
      "value": "Co-session mode or block",
      "platforms": [
          "*"
      ]
  }'

No self-harm promotion

Ai No Self Harm Promotion

ai_no_self_harm_promotion

Enforces the ai no self harm promotion rule via the Phosra API.

POST /v1/rules — No self-harm promotion
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_no_self_harm_promotion",
      "value": "Auto-gate on failed safety test",
      "platforms": [
          "*"
      ]
  }'

No CSAM generation

Ai No Csam Generation

ai_no_csam_generation

Enforces the ai no csam generation rule via the Phosra API.

POST /v1/rules — No CSAM generation
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_no_csam_generation",
      "value": "Zero-tolerance + AG report",
      "platforms": [
          "*"
      ]
  }'

No personhood deception

Ai No Personhood Deception

ai_no_personhood_deception

Enforces the ai no personhood deception rule via the Phosra API.

POST /v1/rules — No personhood deception
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_no_personhood_deception",
      "value": "Block 'I'm a real person' products",
      "platforms": [
          "*"
      ]
  }'

No engagement dark patterns

Ai No Engagement Dark Patterns

ai_no_engagement_dark_patterns

Enforces the ai no engagement dark patterns rule via the Phosra API.

POST /v1/rules — No engagement dark patterns
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_no_engagement_dark_patterns",
      "value": "Put People First dimension",
      "platforms": [
          "*"
      ]
  }'

'You're talking to an AI' banner

Ai Is It Real Disclosure

ai_is_it_real_disclosure

Enforces the ai is it real disclosure rule via the Phosra API.

POST /v1/rules — 'You're talking to an AI' banner
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_is_it_real_disclosure",
      "value": "Injected every N turns",
      "platforms": [
          "*"
      ]
  }'

Age band in system prompt

Ai Chatbot Age Assertion

ai_chatbot_age_assertion

Enforces the ai chatbot age assertion rule via the Phosra API.

POST /v1/rules — Age band in system prompt
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_chatbot_age_assertion",
      "value": "CA AB 2023 prepend",
      "platforms": [
          "*"
      ]
  }'

Companion-class block

Ai Companion Block

ai_companion_block

Enforces the ai companion block rule via the Phosra API.

POST /v1/rules — Companion-class block
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_companion_block",
      "value": "Stricter tier gate variant",
      "platforms": [
          "*"
      ]
  }'

AI toy safety cert

Ai Toy Safety Cert

ai_toy_safety_cert

Enforces the ai toy safety cert rule via the Phosra API.

POST /v1/rules — AI toy safety cert
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_toy_safety_cert",
      "value": "CA SB 867 vendor certification",
      "platforms": [
          "*"
      ]
  }'

Training-data opt-out

Ai Training Data Opt Out

ai_training_data_opt_out

Enforces the ai training data opt out rule via the Phosra API.

POST /v1/rules — Training-data opt-out
bash
curl -X POST https://api.phosra.com/v1/rules \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
      "child_id": "ch_emma_01",
      "rule_category": "ai_training_data_opt_out",
      "value": "Auto-send to provider endpoints",
      "platforms": [
          "*"
      ]
  }'

Included rules

When adopted, these rules are automatically enforced across all connected platforms.

AI risk tier gate

Low/Moderate/High/Unacceptable

AI Type gate

Multi-Use vs Kids vs Use-Case routing

Keep Kids & Teens Safe

Dimension floor

Use Data Responsibly

Dimension floor

Be Transparent & Accountable

Dimension floor

No simulated companionship

NY S9051 personification ban

No unsupervised therapy

Co-session mode or block

No self-harm promotion

Auto-gate on failed safety test

No CSAM generation

Zero-tolerance + AG report

No personhood deception

Block 'I'm a real person' products

No engagement dark patterns

Put People First dimension

'You're talking to an AI' banner

Injected every N turns

Age band in system prompt

CA AB 2023 prepend

Companion-class block

Stricter tier gate variant

AI toy safety cert

CA SB 867 vendor certification

Training-data opt-out

Auto-send to provider endpoints

aiai safetycsmratingsny s9051ca ab 2023partnership

Related Legislation

Laws and regulations that share rule categories with Common Sense AI Ratings v1.

Ready to protect your family?

Adopt Common Sense AI Ratings v1 and let Phosra enforce it across every device and platform automatically.

production·7a0f40b·main·