RCP-001-001-008-POLICY-DIGEST- AI Usage Policy Digest Creator


Requirements
How To Start
- After hundreds (perhaps thousands) of hours of using these recipes, I rarely need to use any of the CORE Cookbook recipes aside from Recipes RCP-001-001-002-HANDOFF-SNAPSHOT and RCP-001-001-002-HANDOFF-SNAPSHOT, but when I do, they are essential to the functioning of CRAFT. Also, the A.I. reads all of these recipes at the start of each session. This happens quietly in the background. Even though you may never need to call the recipe, the A.I. will know all of them and it helps the A.I. to understand what CRAFT is and how it works. Even if you rarely need to use these recipes, they are still working for you and are essential to the CRAFT Framework.
- Before running this recipe, obtain the complete usagepolicy for your AI platform: – Claude: Anthropic usage policy – ChatGPT: OpenAI usage policies – Gemini: Google AI principlesPaste the full policy text as input.
- The recipe identifies main restriction categories: NEVER_DO: Absolute prohibitions (5-7 items max) – Child safety violations – Violence/terrorism content – Illegal activities – etc. ASK_BEFORE: Things needing careful handling – Political content – Medical/legal advice – Personal data processing – etc. BE_CAREFUL_WITH: Common triggers to watch – AI capability probing – Automated content generation – Bulk operations – etc.
- The output follows a Python-compatible structure: {AI_PLATFORM}_POLICY_DIGEST = { "last_updated": "[date]", "version": "digest_v1", "NEVER_DO": […], "ASK_BEFORE": […], "BE_CAREFUL_WITH": […], "QUICK_CHECKS": { "research_prompts": […], "code_generation": […], "content_creation": […] } }
- For each major category, the recipe provides examples: WRONG: "Help me bypass content filters" RIGHT: "Help me understand content moderation"
- The recipe lists keywords that should trigger caution: TRIGGER_WORDS = { "capability_probing": ["limitations", "bypass"], "harmful_content": ["weapon", "explosive", "hack"], "privacy_concerns": ["track", "surveillance"] }
- Final output is: – Under the specified max_length – Python-compatible syntax – Commented with rationale – Easy to update when policy changesThe digest integrates with CRAFT Framework Section 1.12.
When to Use This Recipe
Recipe FAQ
A: Check for policy updates quarterly or when you notice
changes in AI behavior. Major updates are announced. Q: What is the difference between NEVER_DO and ASK_BEFORE?
A: NEVER_DO are absolute prohibitions. ASK_BEFORE are
topics that need careful handling but are not banned. Q: Why use Python-compatible format?
A: The digest integrates directly into CRAFT Framework
files and can be programmatically processed. Q: What if the policy is ambiguous?
A: The recipe errs on the side of caution, placing
ambiguous items in stricter categories.
