pipeline-sdlc/models/sd_org_settings.json
yumoqing f86cce02f4 feat: multi-repo workspace — org settings, project repos, deliverable types
- sd_projects: add workspace_dir field
- sd_project_repos: new table for multi-repo per project
- sd_org_settings: org-level workspace_root + skills_dir
- pipeline_deliverables: add repo_name, target_path, deliverable_type enum
- cockpit_chat.dspy: load repos+org settings, pass to LLM prompt
2026-08-03 17:13:01 +08:00

22 lines
887 B
JSON

{
"summary": [
{
"name": "sd_org_settings",
"title": "组织SDLC设置",
"primary": ["id"],
"catelog": "entity"
}
],
"fields": [
{"name": "id", "title": "主键ID", "type": "str", "length": 32, "nullable": "no"},
{"name": "org_id", "title": "组织ID", "type": "str", "length": 32, "nullable": "no"},
{"name": "workspace_root", "title": "工作空间根路径", "type": "str", "length": 500, "nullable": "no"},
{"name": "skills_dir", "title": "企业Skills目录", "type": "str", "length": 500},
{"name": "created_at", "title": "创建时间", "type": "timestamp", "nullable": "no"},
{"name": "updated_at", "title": "更新时间", "type": "timestamp"}
],
"indexes": [
{"name": "idx_sos_org", "idxtype": "unique", "idxfields": ["org_id"]}
]
}