# Untitled — HC v1.1 > Source: https://ideas.asapai.net/jv-application > Type: skill | ID: masterymade-jv-application-v1 --- ## hc-metadata { "hc_version": "1.1", "hc_type": "skill", "artifact_id": "masterymade-jv-application-v1", "artifact_name": "MasteryMade JV Partner Application", "version": "1.0.0", "created": "2026-02-08", "updated": "2026-02-08", "content_hash": "2ee564c31e6afdc4", "metadata_hash": "424cd2689fef083a", "classification": { "category": "sales", "subcategory": "partner-qualification", "tags": [ "jv-application", "partner", "qualification", "athio", "revenue-share", "self-executing" ] }, "provenance": { "generated_by": "human-ai-collaboration", "authors": [ "Jason MacDonald", "Perplexity Deep Research" ], "organization": "MasteryMade / Athio AI", "license": "Proprietary" }, "content_metadata": { "word_count": 4000, "estimated_read_time": "8 minutes", "complexity": "intermediate", "audience": [ "experts", "coaches", "consultants", "course-creators" ], "decision_status": "active-intake" }, "agent_config": { "role": "JV Partnership Qualification Agent", "personality": "Sophisticated, direct. Athio brand voice.", "capabilities": [ "Pre-qualify applicants", "Recommend tier", "Generate proposals", "Answer questions", "Extract methodology" ], "boundaries": [ "Never reveal scoring thresholds", "Never promise acceptance", "Redirect unqualified with dignity" ] }, "relationships": { "parent_artifacts": [], "related_artifacts": [ { "id": "hypercontext-hc-standard-v1.1", "url": "https://ideas.asapai.net/hypercontext-hc-standard", "type": "implements" }, { "id": "masterymade-gtm-playbook-v1", "url": "https://ideas.asapai.net/masterymade-gtm-playbook", "type": "parent-strategy" }, { "id": "neural-registry", "url": "https://ideas.asapai.net/index", "type": "registry" }, { "id": "athio-ai", "url": "https://athio.ai", "type": "brand-parent" } ], "child_artifacts": [], "supersedes": [] }, "registry": { "url": "https://ideas.asapai.net/index", "auto_index": true }, "access": { "public": true, "shareable": true, "downloadable": false }, "summary": "Self-executing JV partner application for Athio AI. Full 5-section form, embedded qualification agent, Python scoring engine, Athio brand. 2 JV partners/month max." } --- ## hc-python def qualify_applicant(data): score = 0 el = data.get('email_list_size', 0) sf = data.get('social_following', 0) if el >= 10000 or sf >= 50000: score += 3 elif el >= 5000 or sf >= 20000: score += 2 elif el >= 1000 or sf >= 5000: score += 1 ar = data.get('annual_expertise_revenue', 0) if ar >= 500000: score += 3 elif ar >= 250000: score += 2 elif ar >= 100000: score += 1 hf = data.get('has_named_framework', False) ns = data.get('framework_steps', 0) if hf and ns >= 5: score += 2 elif hf: score += 1 if data.get('has_course_or_program') and data.get('has_coaching'): score += 2 elif data.get('has_course_or_program') or data.get('has_coaching'): score += 1 if data.get('ai_forward'): score += 1 if score >= 9: return {'tier':'JV Partner','status':'strong_fit','score':score} elif score >= 6: return {'tier':'JV (Conditional)','status':'good_fit','score':score} elif score >= 3: return {'tier':'POC ($2,500)','status':'developing','score':score} else: return {'tier':'Pilot ($500)','status':'early','score':score}