feat: add standalone ops ai workspace setup

This commit is contained in:
DCCONSTRUCTIONS
2026-06-09 13:23:02 +03:00
parent 6c119aae04
commit 71979526cf
6 changed files with 810 additions and 63 deletions
@@ -8,6 +8,7 @@ from plane.app.views import (
AIWorkspaceExecutorDetailEndpoint,
AIWorkspaceExecutorListEndpoint,
AIWorkspaceExecutorSelectEndpoint,
AIWorkspaceExecutorWindowsAgentEndpoint,
AIWorkspaceThreadDetailEndpoint,
AIWorkspaceThreadListEndpoint,
AIWorkspaceThreadMessagesEndpoint,
@@ -30,6 +31,11 @@ urlpatterns = [
AIWorkspaceExecutorSelectEndpoint.as_view(),
name="ai-workspace-executor-select",
),
path(
"workspaces/<str:slug>/ai-workspace/executors/<uuid:executor_id>/agent/windows.ps1",
AIWorkspaceExecutorWindowsAgentEndpoint.as_view(),
name="ai-workspace-executor-windows-agent",
),
path(
"workspaces/<str:slug>/ai-workspace/threads/",
AIWorkspaceThreadListEndpoint.as_view(),