新增通用问题冒泡的数据模型与配置 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: 团队沟通技能
28 lines
823 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|