pipeline_core/json/pipeline_team_roles.json
yumoqing ff02533cb6 feat(team-communication): 团队沟通配置 — 团队角色(+agentid) + 问题类型(冒泡路径)
新增通用问题冒泡的数据模型与配置 CRUD:
- models/json: pipeline_team_roles(角色+agentid,多agent区分) + pipeline_problem_types(escalation_path)
- pipeline_core/init.py: _simple_crud 通用 CRUD + 6 个 create/update/delete 注册
- wwwroot/api: 6 个 dspy 端点
- scripts/load_path.py: RBAC 路径
- skills_library/all/team-communication/SKILL.md: 团队沟通技能
2026-08-16 21:25:38 +08:00

28 lines
823 B
JSON

{
"tblname": "pipeline_team_roles",
"title": "团队角色",
"params": {
"sortby": "role_name",
"browserfields": {
"exclouded": ["id", "description"],
"cwidth": {}
},
"editexclouded": [
"id", "created_at"
],
"editable": {
"new_data_url": "{{entire_url('../api/pipeline_team_roles_create.dspy')}}",
"update_data_url": "{{entire_url('../api/pipeline_team_roles_update.dspy')}}",
"delete_data_url": "{{entire_url('../api/pipeline_team_roles_delete.dspy')}}"
},
"confidential_fields": [],
"subtables": [
{
"field": "pipeline_id",
"title": "所属产线",
"subtable": "pipelines"
}
]
}
}