|
53 | 53 | "enum": ["web", "readme", "hn", "x", "linkedin", "newsletter", "presskit"] |
54 | 54 | }, |
55 | 55 |
|
| 56 | + "pressContactMethod": { |
| 57 | + "type": "string", |
| 58 | + "enum": ["email", "x-dm", "linkedin", "github-issue", "form"] |
| 59 | + }, |
| 60 | + |
| 61 | + "pressContact": { |
| 62 | + "type": "object", |
| 63 | + "required": ["method", "value"], |
| 64 | + "properties": { |
| 65 | + "method": { "$ref": "#/$defs/pressContactMethod" }, |
| 66 | + "value": { |
| 67 | + "type": "string", |
| 68 | + "description": "Contact value (URL, email, handle)." |
| 69 | + }, |
| 70 | + "label": { |
| 71 | + "type": "string", |
| 72 | + "description": "Human-readable label for this contact method." |
| 73 | + }, |
| 74 | + "notes": { "type": "string" } |
| 75 | + }, |
| 76 | + "additionalProperties": false |
| 77 | + }, |
| 78 | + |
| 79 | + "pressQuote": { |
| 80 | + "type": "object", |
| 81 | + "required": ["text"], |
| 82 | + "properties": { |
| 83 | + "text": { |
| 84 | + "type": "string", |
| 85 | + "maxLength": 500, |
| 86 | + "description": "Approved quote text." |
| 87 | + }, |
| 88 | + "attribution": { |
| 89 | + "type": "string", |
| 90 | + "description": "Who said this." |
| 91 | + }, |
| 92 | + "role": { |
| 93 | + "type": "string", |
| 94 | + "description": "Role or title of the person quoted." |
| 95 | + }, |
| 96 | + "claimRefs": { |
| 97 | + "type": "array", |
| 98 | + "items": { "$ref": "#/$defs/claimId" }, |
| 99 | + "description": "Claims this quote supports." |
| 100 | + } |
| 101 | + }, |
| 102 | + "additionalProperties": false |
| 103 | + }, |
| 104 | + |
| 105 | + "pressComparable": { |
| 106 | + "type": "object", |
| 107 | + "required": ["target", "distinction"], |
| 108 | + "properties": { |
| 109 | + "target": { |
| 110 | + "type": "string", |
| 111 | + "description": "What this tool is similar to." |
| 112 | + }, |
| 113 | + "distinction": { |
| 114 | + "type": "string", |
| 115 | + "description": "How it differs (honest, not dismissive)." |
| 116 | + }, |
| 117 | + "notes": { "type": "string" } |
| 118 | + }, |
| 119 | + "additionalProperties": false |
| 120 | + }, |
| 121 | + |
| 122 | + "pressPartnerOffer": { |
| 123 | + "type": "object", |
| 124 | + "required": ["type", "description"], |
| 125 | + "properties": { |
| 126 | + "type": { |
| 127 | + "type": "string", |
| 128 | + "enum": ["demo", "co-announcement", "integration", "early-access", "case-study"] |
| 129 | + }, |
| 130 | + "description": { |
| 131 | + "type": "string", |
| 132 | + "description": "What you are offering." |
| 133 | + }, |
| 134 | + "constraints": { |
| 135 | + "type": "string", |
| 136 | + "description": "Any limitations or conditions." |
| 137 | + } |
| 138 | + }, |
| 139 | + "additionalProperties": false |
| 140 | + }, |
| 141 | + |
| 142 | + "pressBlock": { |
| 143 | + "type": "object", |
| 144 | + "description": "Optional press/partner data for a tool. Enables press pages, outreach packs, and partner bundles.", |
| 145 | + "properties": { |
| 146 | + "boilerplate": { |
| 147 | + "type": "object", |
| 148 | + "properties": { |
| 149 | + "projectDescription": { |
| 150 | + "type": "string", |
| 151 | + "description": "Extended project description for press use." |
| 152 | + }, |
| 153 | + "founderBio": { |
| 154 | + "type": "string", |
| 155 | + "description": "Team or founder bio." |
| 156 | + }, |
| 157 | + "preferredNouns": { |
| 158 | + "type": "array", |
| 159 | + "items": { "type": "string" }, |
| 160 | + "description": "Preferred terms for the tool (e.g. tool, CLI, indexer)." |
| 161 | + }, |
| 162 | + "forbiddenPhrases": { |
| 163 | + "type": "array", |
| 164 | + "items": { "type": "string" }, |
| 165 | + "description": "Phrases to never use in press/marketing (e.g. AI-powered, revolutionary)." |
| 166 | + } |
| 167 | + }, |
| 168 | + "additionalProperties": false |
| 169 | + }, |
| 170 | + "contacts": { |
| 171 | + "type": "array", |
| 172 | + "items": { "$ref": "#/$defs/pressContact" } |
| 173 | + }, |
| 174 | + "quotes": { |
| 175 | + "type": "array", |
| 176 | + "items": { "$ref": "#/$defs/pressQuote" }, |
| 177 | + "maxItems": 6 |
| 178 | + }, |
| 179 | + "comparables": { |
| 180 | + "type": "array", |
| 181 | + "items": { "$ref": "#/$defs/pressComparable" } |
| 182 | + }, |
| 183 | + "partnerOffers": { |
| 184 | + "type": "array", |
| 185 | + "items": { "$ref": "#/$defs/pressPartnerOffer" } |
| 186 | + } |
| 187 | + }, |
| 188 | + "additionalProperties": false |
| 189 | + }, |
| 190 | + |
56 | 191 | "constraints": { |
57 | 192 | "type": "object", |
58 | 193 | "description": "Soft advisory constraints for a channel or context.", |
|
197 | 332 | "type": "array", |
198 | 333 | "items": { "$ref": "#/$defs/message" }, |
199 | 334 | "minItems": 1 |
200 | | - } |
| 335 | + }, |
| 336 | + "press": { "$ref": "#/$defs/pressBlock" } |
201 | 337 | }, |
202 | 338 | "additionalProperties": false |
203 | 339 | }, |
|
0 commit comments