# =============================================================
# 3. SKILLS (技能契约)
# 定义外部数据调用与动作执行的报文契约(Skill Packet Standard)
# =============================================================
skills:
- id: "amazon_realtime_data"
type: "ACTION_HTTP"
description: "获取亚马逊实时核心竞争数据"
config:
endpoint: "https://api.acme.com/v1/market/fetch"
method: "POST"
timeout: 15
max_retries: 3
cache_ttl: 3600
headers:
Authorization: "Bearer {{env.MARKET_API_TOKEN}}"
# 报文契约:确保执行层与技能层的数据对齐
contract:
request:
payload:
asin: "{{inputs.target_asin}}"
region: "US"
response:
strict_mode: true
schema:
type: "object"
properties:
price: { "type": "number" }
bsr_rank: { "type": "integer" }
stock_level: { "type": "string" }