Agent Skills
› spacedriveapp/spacebot
› provider-integration-checklist
provider-integration-checklist
GitHub用于规范LLM提供商集成、模型路由及OAuth认证流程的变更检查清单,确保配置、文档和验证的完整性与兼容性。
触发场景
添加或修改LLM提供商
调整模型路由策略
实现OAuth流程
处理认证令牌
更新提供商配置
安装
npx skills add spacedriveapp/spacebot --skill provider-integration-checklist -g -y
SKILL.md
Frontmatter
{
"name": "provider-integration-checklist",
"description": "This skill should be used when the user asks to add or modify an \"LLM provider\", \"model routing\", \"OAuth flow\", \"auth token handling\", \"provider config\", or \"fallback chain\". Enforces provider integration completeness across config, routing, docs, and verification."
}
Provider Integration Checklist
Goal
Ship provider and routing changes without regressions in auth, config, and model selection.
Change Checklist
- Add config keys and defaults in one place.
- Validate config resolution order (
env > DB > defaultwhere applicable). - Validate model identifier parsing and normalization.
- Validate routing defaults, task overrides, and fallback chains.
- Validate auth flow behavior for both success and failure paths.
- Validate token/secret handling and redaction behavior.
Compatibility Checklist
- Keep existing providers unaffected.
- Keep unknown-provider errors actionable.
- Keep provider-specific errors distinguishable.
- Keep docs and examples aligned with actual config keys.
Verification Checklist
- Narrow tests for changed provider/routing/auth paths.
- Negative-path tests for invalid config and auth failures.
- Smoke path proving model call routes to expected backend.
- Broad gate checks after targeted checks pass.
Required Handoff
- Config keys changed
- Routing behavior changed
- Auth behavior changed
- Verification evidence
- Docs updated
版本历史
- ac52277 当前 2026-07-05 14:56


