10

การผสานรวม AI

แบรนด์ BetterGuard สำหรับเอเจนต์ AI: หนึ่งครั้งดึง หนึ่งสคีมา anchor ที่คาดเดาได้

วางลงในเอเจนต์ 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.

ตัวอย่าง fetch

Plain JS (เบราว์เซอร์หรือ Node 18+)
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"
Python (requests)
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:cyan
curl
curl -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

กฎ anchor

ทุกค่าของแบรนด์มี anchor แบบ namespace ที่เสถียรในรูปแบบ bg:CATEGORY:NAME เส้นทางเดียวกันเข้าถึงได้สามวิธี:

JSON pathbrand.json#/color/cyan
HTML idid="bg-color-cyan"
URLhttps://brand.betterguard.net/colors#bg-color-cyan