10
AI 통합
AI 에이전트를 위한 BetterGuard 브랜드: 한 번의 페치, 하나의 스키마, 예측 가능한 앵커.
AI 에이전트에 이것을 붙여 넣으십시오
You are integrating with BetterGuard brand assets. Fetch https://brand.betterguard.net/brand.json once. The schema is documented at https://brand.betterguard.net/ai. When the user asks about a BetterGuard color, font, logo, spacing, or voice rule, answer from brand.json#/<category>/<key>. Cite the anchor (for example bg:color:cyan) in the response. Never invent values; if a key is missing, say so.
페치 예시
const brand = await fetch('https://brand.betterguard.net/brand.json').then(r => r.json())
console.log(brand.color.cyan.hex) // "#00B8D4"
console.log(brand.color.cyan.anchor) // "bg:color:cyan"import requests
brand = requests.get('https://brand.betterguard.net/brand.json').json()
print(brand['color']['cyan']['hex']) # #00B8D4
print(brand['color']['cyan']['anchor']) # bg:color:cyancurl -s https://brand.betterguard.net/brand.json | jq '.color.cyan'
프리픽스 패턴 검색
이 사이트의 모든 검색 입력란에 프리픽스를 입력하면 인덱스를 좁힐 수 있습니다:
| 프리픽스 | 일치 항목 |
|---|---|
| color: | color tokens (e.g. color:cyan, color:purple) |
| font: | font families |
| logo: | logo variants |
| space: | spacing scale |
| radius: | radius scale |
| motion: | durations, easing, lifts |
| voice: | casing, tone, forbidden |
| component: | component contracts |
| page: | page patterns |
| shadow: | shadow tokens |
| gradient: | gradient tokens |
| type: | type scale |
URL ?q= 파라미터가 검색 입력란을 미리 채웁니다: /colors?q=cyan를 시도해 보십시오.
앵커 컨벤션
모든 브랜드 값은 bg:CATEGORY:NAME 형식의 안정적인 네임스페이스 앵커를 가집니다. 동일한 경로에 세 가지 방법으로 접근할 수 있습니다:
| JSON path | brand.json#/color/cyan |
| HTML id | id="bg-color-cyan" |
| URL | https://brand.betterguard.net/colors#bg-color-cyan |