Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
使用官方 Terraform 提供商以基础架构即代码的方式管理 Devin 资源
terraform { required_providers { devin = { source = "registry.terraform.io/cognitionai/devin" } } } provider "devin" { # 默认从 DEVIN_TOKEN 环境变量中读取令牌。 } resource "devin_knowledge_note" "conventions" { org_id = "org-abc123" name = "API Conventions" body = file("knowledge/api-conventions.md") trigger = "When working on API endpoints" }
DEVIN_TOKEN
cog_