@task-shepherd/agent 1.0.7 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +1054 -86
- package/dist/index.js +1 -1
- package/dist/meta.json +358 -67
- package/package.json +2 -2
- package/shared/dist/index.d.ts +0 -15
- package/shared/dist/index.js +0 -12
- package/shared/dist/mcp-client/client.d.ts +0 -18
- package/shared/dist/mcp-client/client.js +0 -49
- package/shared/dist/mcp-client/index.d.ts +0 -7
- package/shared/dist/mcp-client/index.js +0 -7
- package/shared/dist/mcp-client/types.d.ts +0 -822
- package/shared/dist/mcp-client/types.js +0 -193
- package/shared/dist/schema/index.d.ts +0 -189
- package/shared/dist/schema/index.js +0 -142
- package/shared/dist/schema/mcp-mappings.d.ts +0 -50
- package/shared/dist/schema/mcp-mappings.js +0 -563
- package/shared/dist/schema/validation.d.ts +0 -91
- package/shared/dist/schema/validation.js +0 -282
- package/shared/dist/work-queue/index.d.ts +0 -7
- package/shared/dist/work-queue/index.js +0 -7
- package/shared/dist/work-queue/types.d.ts +0 -147
- package/shared/dist/work-queue/types.js +0 -4
- package/shared/dist/work-queue/validation.d.ts +0 -24
- package/shared/dist/work-queue/validation.js +0 -160
- package/shared/dist/workspace/constants.d.ts +0 -148
- package/shared/dist/workspace/constants.js +0 -432
- package/shared/dist/workspace/index.d.ts +0 -10
- package/shared/dist/workspace/index.js +0 -10
- package/shared/dist/workspace/types.d.ts +0 -477
- package/shared/dist/workspace/types.js +0 -9
- package/shared/dist/workspace/utils.d.ts +0 -79
- package/shared/dist/workspace/utils.js +0 -334
- package/shared/dist/workspace/validation.d.ts +0 -1312
- package/shared/dist/workspace/validation.js +0 -467
- package/shared/graphql/generated-internal.ts +0 -3629
- package/shared/graphql/generated-public.ts +0 -773
- package/shared/graphql/generated.d.ts +0 -7456
- package/shared/graphql/generated.js +0 -11799
- package/shared/graphql/generated.ts +0 -27569
- package/shared/graphql/generated.ts.backup +0 -16531
- package/shared/graphql/generated.ts.working +0 -4828
- package/shared/graphql/introspection-internal.json +0 -15845
- package/shared/graphql/introspection-public.json +0 -9658
- package/shared/graphql/introspection.json +0 -44263
- package/shared/graphql/operations/ai-service.graphql +0 -131
- package/shared/graphql/operations/ai-work-queue.graphql +0 -31
- package/shared/graphql/operations/analytics.graphql +0 -283
- package/shared/graphql/operations/analytics.ts +0 -3
- package/shared/graphql/operations/api-keys.graphql +0 -126
- package/shared/graphql/operations/attachments.graphql +0 -53
- package/shared/graphql/operations/attachments.ts +0 -39
- package/shared/graphql/operations/audit.graphql +0 -46
- package/shared/graphql/operations/auth.graphql +0 -83
- package/shared/graphql/operations/claude-usage.graphql +0 -178
- package/shared/graphql/operations/comments.graphql +0 -4
- package/shared/graphql/operations/dashboard.graphql +0 -29
- package/shared/graphql/operations/development-plans.graphql +0 -408
- package/shared/graphql/operations/early-access.graphql.disabled +0 -21
- package/shared/graphql/operations/errors.graphql.disabled +0 -83
- package/shared/graphql/operations/internal-api.graphql +0 -931
- package/shared/graphql/operations/notifications.graphql +0 -4
- package/shared/graphql/operations/organization-invites.graphql.disabled +0 -32
- package/shared/graphql/operations/performance.graphql +0 -4
- package/shared/graphql/operations/project-reviews.graphql +0 -610
- package/shared/graphql/operations/projects.graphql +0 -98
- package/shared/graphql/operations/settings.graphql +0 -4
- package/shared/graphql/operations/stories.graphql +0 -113
- package/shared/graphql/operations/subscriptions.graphql +0 -235
- package/shared/graphql/operations/subscriptions.graphql.disabled +0 -96
- package/shared/graphql/operations/tasks.graphql +0 -257
- package/shared/graphql/operations/team.graphql +0 -111
- package/shared/graphql/operations/team.ts +0 -226
- package/shared/graphql/operations/time-tracking.graphql.disabled +0 -96
- package/shared/graphql/operations/work-queue.graphql +0 -210
- package/shared/graphql/operations/work-queue.graphql.disabled +0 -474
- package/shared/graphql/operations/workspace.graphql +0 -146
- package/shared/graphql/schema-internal.graphql +0 -1085
- package/shared/graphql/schema-public.graphql +0 -709
- package/shared/graphql/schema.graphql +0 -3473
- package/shared/package.json +0 -23
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
# Workspace Management GraphQL Operations
|
|
2
|
-
|
|
3
|
-
# Get all available workspaces
|
|
4
|
-
query AvailableWorkspaces {
|
|
5
|
-
availableWorkspaces {
|
|
6
|
-
id
|
|
7
|
-
workspaceId
|
|
8
|
-
name
|
|
9
|
-
description
|
|
10
|
-
path
|
|
11
|
-
pattern
|
|
12
|
-
isActive
|
|
13
|
-
services {
|
|
14
|
-
id
|
|
15
|
-
serviceId
|
|
16
|
-
name
|
|
17
|
-
path
|
|
18
|
-
technology
|
|
19
|
-
isActive
|
|
20
|
-
}
|
|
21
|
-
projects {
|
|
22
|
-
id
|
|
23
|
-
name
|
|
24
|
-
description
|
|
25
|
-
}
|
|
26
|
-
errors
|
|
27
|
-
createdAt
|
|
28
|
-
updatedAt
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
# Workspace Statistics
|
|
33
|
-
query WorkspaceStats($filter: AnalyticsFilter) {
|
|
34
|
-
workspaceStats(filter: $filter) {
|
|
35
|
-
totalProjects
|
|
36
|
-
activeProjects
|
|
37
|
-
totalUsers
|
|
38
|
-
activeUsers
|
|
39
|
-
totalStories
|
|
40
|
-
totalTasks
|
|
41
|
-
totalComments
|
|
42
|
-
totalAttachments
|
|
43
|
-
overallCompletionRate
|
|
44
|
-
averageProjectVelocity
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
# Register a new workspace
|
|
49
|
-
mutation RegisterWorkspace($input: WorkspaceRegistrationInput!) {
|
|
50
|
-
registerWorkspace(input: $input) {
|
|
51
|
-
id
|
|
52
|
-
workspaceId
|
|
53
|
-
name
|
|
54
|
-
description
|
|
55
|
-
path
|
|
56
|
-
pattern
|
|
57
|
-
isActive
|
|
58
|
-
services {
|
|
59
|
-
id
|
|
60
|
-
serviceId
|
|
61
|
-
name
|
|
62
|
-
path
|
|
63
|
-
technology
|
|
64
|
-
isActive
|
|
65
|
-
}
|
|
66
|
-
projects {
|
|
67
|
-
id
|
|
68
|
-
name
|
|
69
|
-
description
|
|
70
|
-
}
|
|
71
|
-
errors
|
|
72
|
-
createdAt
|
|
73
|
-
updatedAt
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
# Deactivate a workspace
|
|
78
|
-
mutation DeactivateWorkspace($workspaceId: String!) {
|
|
79
|
-
deactivateWorkspace(workspaceId: $workspaceId)
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
# Delete a workspace
|
|
83
|
-
mutation DeleteWorkspace($workspaceId: String!) {
|
|
84
|
-
deleteWorkspace(workspaceId: $workspaceId)
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
# Subscribe to workspace updates
|
|
88
|
-
subscription OnWorkspaceUpdated($workspaceId: String) {
|
|
89
|
-
workspaceUpdated(workspaceId: $workspaceId) {
|
|
90
|
-
id
|
|
91
|
-
workspaceId
|
|
92
|
-
name
|
|
93
|
-
description
|
|
94
|
-
path
|
|
95
|
-
pattern
|
|
96
|
-
isActive
|
|
97
|
-
services {
|
|
98
|
-
id
|
|
99
|
-
serviceId
|
|
100
|
-
name
|
|
101
|
-
path
|
|
102
|
-
technology
|
|
103
|
-
isActive
|
|
104
|
-
}
|
|
105
|
-
projects {
|
|
106
|
-
id
|
|
107
|
-
name
|
|
108
|
-
description
|
|
109
|
-
}
|
|
110
|
-
createdAt
|
|
111
|
-
updatedAt
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
# Subscribe to workspace creations
|
|
116
|
-
subscription OnWorkspaceCreated {
|
|
117
|
-
workspaceCreated {
|
|
118
|
-
id
|
|
119
|
-
workspaceId
|
|
120
|
-
name
|
|
121
|
-
description
|
|
122
|
-
path
|
|
123
|
-
pattern
|
|
124
|
-
isActive
|
|
125
|
-
services {
|
|
126
|
-
id
|
|
127
|
-
serviceId
|
|
128
|
-
name
|
|
129
|
-
path
|
|
130
|
-
technology
|
|
131
|
-
isActive
|
|
132
|
-
}
|
|
133
|
-
projects {
|
|
134
|
-
id
|
|
135
|
-
name
|
|
136
|
-
description
|
|
137
|
-
}
|
|
138
|
-
createdAt
|
|
139
|
-
updatedAt
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
# Subscribe to workspace deletions
|
|
144
|
-
subscription OnWorkspaceDeleted($workspaceId: String) {
|
|
145
|
-
workspaceDeleted(workspaceId: $workspaceId)
|
|
146
|
-
}
|