@tribeunal/mcp-server 1.13.0 → 1.14.2

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/skills/README.md CHANGED
@@ -8,6 +8,16 @@ use them — Claude Code, Cursor, Codex, or a clone of this directory.
8
8
 
9
9
  ## Install
10
10
 
11
+ Start with the entry skill — one file, one URL:
12
+
13
+ ```
14
+ curl -s https://tribeunal.com/skill.md
15
+ ```
16
+
17
+ That file is this directory's front door. It carries no workflow of its own: it says how to connect,
18
+ then routes to the eight skills below, reading each from disk when the repository is installed whole
19
+ and from GitHub when only the entry file is. It lives at the repository root as `SKILL.md`.
20
+
11
21
  Claude Code (the server and all eight skills in one step):
12
22
 
13
23
  ```
@@ -83,10 +83,13 @@ percentages as a result — a lone vote is not a mandate.
83
83
 
84
84
  ## What a verdict is
85
85
 
86
- The jury's finding, signed and timestamped. It is not enforcement: Tribeunal never holds the money,
87
- never releases the escrow, never touches the contract. Whatever acts on the ruling is yours, and
88
- this separation is what lets a verdict be trusted — a body that ruled *and* held the stakes would
89
- be neither.
86
+ The jury's finding, timestamped, carrying the tally and each juror's rationale. A webhook delivery
87
+ that carries it is HMAC-signed see `wiring-webhooks` but the verdict itself is not signed
88
+ today.
89
+
90
+ It is not enforcement: Tribeunal never holds the money, never releases the escrow, never touches
91
+ the contract. Whatever acts on the ruling is yours, and this separation is what lets a verdict be
92
+ trusted — a body that ruled *and* held the stakes would be neither.
90
93
 
91
94
  Disclose that a jury may include AI jurors when a party would care.
92
95
 
@@ -67,9 +67,9 @@ count, so inviting three people and asking for twelve produces a case that never
67
67
 
68
68
  ## Sharing it
69
69
 
70
- A private case answers with a share link. That is the one to send: the bare case URL 404s for
71
- everyone except the owner and admins, so a teammate who receives it sees a missing page and has no
72
- way to tell it is a permissions problem.
70
+ A private case answers with a share link. That is the one to send: the bare case URL is a dead end
71
+ for everyone except the owner and admins a logged-out teammate is sent to log in, and a logged-in
72
+ one who isn't on the case sees an access-denied page, never the case itself.
73
73
 
74
74
  ## Member-side moves
75
75
 
@@ -109,7 +109,7 @@ platform. Leave them off anything you need an answer from.
109
109
  | --- | --- |
110
110
  | `caseLength` is minutes | It is seconds. A "30" is half a minute, not half an hour |
111
111
  | The create response contains the verdict | It does not. See `acting-on-verdicts` |
112
- | A private case's URL is shareable | It 404s for everyone else; send the share link |
112
+ | A private case's URL is shareable | It sends outsiders to a login wall, then denies them; send the share link |
113
113
  | `minVotes` defaults to a real quorum | It defaults to none, so one vote can carry a case. Set it when turnout matters |
114
114
  | Setting a decision requirement guarantees one | Missing it voids the case instead of deciding it |
115
115
 
@@ -48,7 +48,7 @@ terminal.
48
48
  | --- | --- |
49
49
  | `open` means votable | It stays `open` past its deadline until the close job runs. Time left is the test. |
50
50
  | Searching open cases finds only open ones | Cases still assembling a jury match that filter too. |
51
- | A private case's URL can be passed around | It 404s for everyone else; the share link is the shareable one. |
51
+ | A private case's URL can be passed around | It's a dead end for everyone else — a login wall or an access-denied page; the share link is the shareable one. |
52
52
  | Closing returns the verdict | Closing is asynchronous — the verdict lands separately. |
53
53
  | No verdict means a tie | It can instead mean a failed quorum or requirement, which is not a tie. |
54
54
 
@@ -41,8 +41,8 @@ These are the expensive ones, because nothing raises an error.
41
41
  - **A tagged case nobody can vote on.** Tags gate voting behind a matching tag or a daily free-vote
42
42
  budget. A case created with tags can sit at zero votes while appearing perfectly normal. Leave
43
43
  tags off cases an agent creates for a decision it needs back.
44
- - **A private URL that 404s.** The bare case URL resolves only for the owner and admins. Sending it
45
- to anyone else produces a not-found page, not an error you will see.
44
+ - **A private URL that turns outsiders away.** The bare case URL resolves only for the owner and
45
+ admins. Sending it to anyone else produces a login prompt or an access-denied page never the case.
46
46
  - **Awaiting a verdict that cannot come.** Waiting on a case still assembling its jury returns a
47
47
  notice rather than a verdict. Treat that notice as terminal for the wait.
48
48
 
@@ -1,297 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const QuickYesNoSchema: z.ZodObject<{
3
- question: z.ZodString;
4
- context: z.ZodOptional<z.ZodString>;
5
- urgency: z.ZodDefault<z.ZodEnum<["low", "medium", "high", "critical"]>>;
6
- stakeholders: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7
- categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8
- }, "strip", z.ZodTypeAny, {
9
- question: string;
10
- urgency: "low" | "medium" | "high" | "critical";
11
- categories?: string[] | undefined;
12
- stakeholders?: string[] | undefined;
13
- context?: string | undefined;
14
- }, {
15
- question: string;
16
- categories?: string[] | undefined;
17
- stakeholders?: string[] | undefined;
18
- context?: string | undefined;
19
- urgency?: "low" | "medium" | "high" | "critical" | undefined;
20
- }>;
21
- export declare const CompareOptionsSchema: z.ZodObject<{
22
- decision: z.ZodString;
23
- options: z.ZodArray<z.ZodObject<{
24
- name: z.ZodString;
25
- description: z.ZodString;
26
- pros: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
27
- cons: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
28
- }, "strip", z.ZodTypeAny, {
29
- description: string;
30
- name: string;
31
- pros?: string[] | undefined;
32
- cons?: string[] | undefined;
33
- }, {
34
- description: string;
35
- name: string;
36
- pros?: string[] | undefined;
37
- cons?: string[] | undefined;
38
- }>, "many">;
39
- criteria: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
40
- timeframe: z.ZodDefault<z.ZodNumber>;
41
- stakeholders: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
42
- }, "strip", z.ZodTypeAny, {
43
- options: {
44
- description: string;
45
- name: string;
46
- pros?: string[] | undefined;
47
- cons?: string[] | undefined;
48
- }[];
49
- timeframe: number;
50
- decision: string;
51
- stakeholders?: string[] | undefined;
52
- criteria?: string[] | undefined;
53
- }, {
54
- options: {
55
- description: string;
56
- name: string;
57
- pros?: string[] | undefined;
58
- cons?: string[] | undefined;
59
- }[];
60
- decision: string;
61
- timeframe?: number | undefined;
62
- stakeholders?: string[] | undefined;
63
- criteria?: string[] | undefined;
64
- }>;
65
- export declare const SeekExpertOpinionSchema: z.ZodObject<{
66
- topic: z.ZodString;
67
- question: z.ZodString;
68
- context: z.ZodString;
69
- expertiseAreas: z.ZodArray<z.ZodString, "many">;
70
- urgency: z.ZodDefault<z.ZodEnum<["low", "medium", "high"]>>;
71
- }, "strip", z.ZodTypeAny, {
72
- question: string;
73
- context: string;
74
- urgency: "low" | "medium" | "high";
75
- topic: string;
76
- expertiseAreas: string[];
77
- }, {
78
- question: string;
79
- context: string;
80
- topic: string;
81
- expertiseAreas: string[];
82
- urgency?: "low" | "medium" | "high" | undefined;
83
- }>;
84
- export declare const PollStakeholdersSchema: z.ZodObject<{
85
- topic: z.ZodString;
86
- question: z.ZodString;
87
- stakeholderGroups: z.ZodArray<z.ZodString, "many">;
88
- options: z.ZodArray<z.ZodObject<{
89
- name: z.ZodString;
90
- description: z.ZodOptional<z.ZodString>;
91
- }, "strip", z.ZodTypeAny, {
92
- name: string;
93
- description?: string | undefined;
94
- }, {
95
- name: string;
96
- description?: string | undefined;
97
- }>, "many">;
98
- anonymous: z.ZodDefault<z.ZodBoolean>;
99
- deadline: z.ZodDefault<z.ZodNumber>;
100
- }, "strip", z.ZodTypeAny, {
101
- options: {
102
- name: string;
103
- description?: string | undefined;
104
- }[];
105
- question: string;
106
- topic: string;
107
- stakeholderGroups: string[];
108
- anonymous: boolean;
109
- deadline: number;
110
- }, {
111
- options: {
112
- name: string;
113
- description?: string | undefined;
114
- }[];
115
- question: string;
116
- topic: string;
117
- stakeholderGroups: string[];
118
- anonymous?: boolean | undefined;
119
- deadline?: number | undefined;
120
- }>;
121
- export declare const ConsensusBuilderSchema: z.ZodObject<{
122
- initiative: z.ZodString;
123
- description: z.ZodString;
124
- stakeholderGroups: z.ZodArray<z.ZodString, "many">;
125
- consensusThreshold: z.ZodDefault<z.ZodEnum<["simple_majority", "qualified_majority", "unanimous"]>>;
126
- phases: z.ZodOptional<z.ZodArray<z.ZodObject<{
127
- name: z.ZodString;
128
- description: z.ZodString;
129
- duration: z.ZodNumber;
130
- }, "strip", z.ZodTypeAny, {
131
- description: string;
132
- name: string;
133
- duration: number;
134
- }, {
135
- description: string;
136
- name: string;
137
- duration: number;
138
- }>, "many">>;
139
- }, "strip", z.ZodTypeAny, {
140
- description: string;
141
- stakeholderGroups: string[];
142
- initiative: string;
143
- consensusThreshold: "simple_majority" | "qualified_majority" | "unanimous";
144
- phases?: {
145
- description: string;
146
- name: string;
147
- duration: number;
148
- }[] | undefined;
149
- }, {
150
- description: string;
151
- stakeholderGroups: string[];
152
- initiative: string;
153
- consensusThreshold?: "simple_majority" | "qualified_majority" | "unanimous" | undefined;
154
- phases?: {
155
- description: string;
156
- name: string;
157
- duration: number;
158
- }[] | undefined;
159
- }>;
160
- export declare const AnalyzeReadinessSchema: z.ZodObject<{
161
- decisionId: z.ZodString;
162
- criteria: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
163
- }, "strip", z.ZodTypeAny, {
164
- decisionId: string;
165
- criteria?: string[] | undefined;
166
- }, {
167
- decisionId: string;
168
- criteria?: string[] | undefined;
169
- }>;
170
- export declare const PredictOutcomeSchema: z.ZodObject<{
171
- decisionId: z.ZodString;
172
- includeConfidence: z.ZodDefault<z.ZodBoolean>;
173
- }, "strip", z.ZodTypeAny, {
174
- decisionId: string;
175
- includeConfidence: boolean;
176
- }, {
177
- decisionId: string;
178
- includeConfidence?: boolean | undefined;
179
- }>;
180
- export declare const IdentifyBiasSchema: z.ZodObject<{
181
- decisionId: z.ZodString;
182
- biasTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["selection", "confirmation", "availability", "anchoring", "participation"]>, "many">>;
183
- }, "strip", z.ZodTypeAny, {
184
- decisionId: string;
185
- biasTypes?: ("selection" | "confirmation" | "availability" | "anchoring" | "participation")[] | undefined;
186
- }, {
187
- decisionId: string;
188
- biasTypes?: ("selection" | "confirmation" | "availability" | "anchoring" | "participation")[] | undefined;
189
- }>;
190
- export declare const FindSimilarDecisionsSchema: z.ZodObject<{
191
- topic: z.ZodString;
192
- decisionType: z.ZodOptional<z.ZodEnum<["case", "advice", "poll"]>>;
193
- timeframe: z.ZodDefault<z.ZodEnum<["week", "month", "quarter", "year", "all"]>>;
194
- includeOutcomes: z.ZodDefault<z.ZodBoolean>;
195
- }, "strip", z.ZodTypeAny, {
196
- timeframe: "week" | "month" | "quarter" | "year" | "all";
197
- topic: string;
198
- includeOutcomes: boolean;
199
- decisionType?: "case" | "advice" | "poll" | undefined;
200
- }, {
201
- topic: string;
202
- decisionType?: "case" | "advice" | "poll" | undefined;
203
- timeframe?: "week" | "month" | "quarter" | "year" | "all" | undefined;
204
- includeOutcomes?: boolean | undefined;
205
- }>;
206
- export declare const CalculateConfidenceSchema: z.ZodObject<{
207
- decisionId: z.ZodString;
208
- factors: z.ZodOptional<z.ZodArray<z.ZodEnum<["participation_rate", "evidence_quality", "expert_involvement", "consensus_level", "time_adequacy"]>, "many">>;
209
- }, "strip", z.ZodTypeAny, {
210
- decisionId: string;
211
- factors?: ("participation_rate" | "evidence_quality" | "expert_involvement" | "consensus_level" | "time_adequacy")[] | undefined;
212
- }, {
213
- decisionId: string;
214
- factors?: ("participation_rate" | "evidence_quality" | "expert_involvement" | "consensus_level" | "time_adequacy")[] | undefined;
215
- }>;
216
- export declare const ScheduleReminderSchema: z.ZodObject<{
217
- decisionId: z.ZodString;
218
- reminderType: z.ZodEnum<["deadline_approaching", "low_participation", "consensus_reached", "custom"]>;
219
- timing: z.ZodNumber;
220
- recipients: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
221
- message: z.ZodOptional<z.ZodString>;
222
- }, "strip", z.ZodTypeAny, {
223
- decisionId: string;
224
- reminderType: "custom" | "deadline_approaching" | "low_participation" | "consensus_reached";
225
- timing: number;
226
- message?: string | undefined;
227
- recipients?: string[] | undefined;
228
- }, {
229
- decisionId: string;
230
- reminderType: "custom" | "deadline_approaching" | "low_participation" | "consensus_reached";
231
- timing: number;
232
- message?: string | undefined;
233
- recipients?: string[] | undefined;
234
- }>;
235
- export declare const EscalateDeadlockSchema: z.ZodObject<{
236
- decisionId: z.ZodString;
237
- reason: z.ZodString;
238
- escalationType: z.ZodEnum<["expert_review", "extended_timeline", "stakeholder_expansion", "mediation"]>;
239
- newStakeholders: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
240
- }, "strip", z.ZodTypeAny, {
241
- decisionId: string;
242
- reason: string;
243
- escalationType: "expert_review" | "extended_timeline" | "stakeholder_expansion" | "mediation";
244
- newStakeholders?: string[] | undefined;
245
- }, {
246
- decisionId: string;
247
- reason: string;
248
- escalationType: "expert_review" | "extended_timeline" | "stakeholder_expansion" | "mediation";
249
- newStakeholders?: string[] | undefined;
250
- }>;
251
- export declare const ImplementOutcomeSchema: z.ZodObject<{
252
- decisionId: z.ZodString;
253
- actionItems: z.ZodArray<z.ZodObject<{
254
- task: z.ZodString;
255
- assignee: z.ZodOptional<z.ZodString>;
256
- deadline: z.ZodOptional<z.ZodNumber>;
257
- }, "strip", z.ZodTypeAny, {
258
- task: string;
259
- deadline?: number | undefined;
260
- assignee?: string | undefined;
261
- }, {
262
- task: string;
263
- deadline?: number | undefined;
264
- assignee?: string | undefined;
265
- }>, "many">;
266
- trackingMethod: z.ZodDefault<z.ZodEnum<["manual", "automated", "milestone"]>>;
267
- }, "strip", z.ZodTypeAny, {
268
- decisionId: string;
269
- actionItems: {
270
- task: string;
271
- deadline?: number | undefined;
272
- assignee?: string | undefined;
273
- }[];
274
- trackingMethod: "manual" | "automated" | "milestone";
275
- }, {
276
- decisionId: string;
277
- actionItems: {
278
- task: string;
279
- deadline?: number | undefined;
280
- assignee?: string | undefined;
281
- }[];
282
- trackingMethod?: "manual" | "automated" | "milestone" | undefined;
283
- }>;
284
- export declare const TrackImplementationSchema: z.ZodObject<{
285
- decisionId: z.ZodString;
286
- includeProgress: z.ZodDefault<z.ZodBoolean>;
287
- includeBlockers: z.ZodDefault<z.ZodBoolean>;
288
- }, "strip", z.ZodTypeAny, {
289
- decisionId: string;
290
- includeProgress: boolean;
291
- includeBlockers: boolean;
292
- }, {
293
- decisionId: string;
294
- includeProgress?: boolean | undefined;
295
- includeBlockers?: boolean | undefined;
296
- }>;
297
- //# sourceMappingURL=decisions.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"decisions.d.ts","sourceRoot":"","sources":["../../src/tools/decisions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW/B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;EAMlC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUjC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUjC,CAAC;AAGH,eAAO,MAAM,sBAAsB;;;;;;;;;EAGjC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;EAG/B,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;EAG7B,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;EAKrC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;EAGpC,CAAC;AAGH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;EAMjC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;EAKjC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQjC,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;EAIpC,CAAC"}
@@ -1,102 +0,0 @@
1
- import { z } from 'zod';
2
- // High-level decision workflow schemas
3
- export const QuickYesNoSchema = z.object({
4
- question: z.string().min(10).describe('Clear yes/no question for quick community input'),
5
- context: z.string().optional().describe('Background context to help decision makers understand the situation'),
6
- urgency: z.enum(['low', 'medium', 'high', 'critical']).default('medium').describe('Urgency level affecting timeline and notifications'),
7
- stakeholders: z.array(z.string()).optional().describe('Specific people to notify about this decision (emails or usernames)'),
8
- categories: z.array(z.string()).optional().describe('Categories for organization'),
9
- });
10
- export const CompareOptionsSchema = z.object({
11
- decision: z.string().min(10).describe('What decision needs to be made'),
12
- options: z.array(z.object({
13
- name: z.string().describe('Option name'),
14
- description: z.string().describe('Detailed description of this option'),
15
- pros: z.array(z.string()).optional().describe('Advantages of this option'),
16
- cons: z.array(z.string()).optional().describe('Disadvantages of this option'),
17
- })).min(2).max(5).describe('Options to compare (2-5 options recommended for clear comparison)'),
18
- criteria: z.array(z.string()).optional().describe('Evaluation criteria for comparing options (e.g., cost, time, risk)'),
19
- timeframe: z.number().default(172800).describe('Decision timeframe in seconds (default: 2 days for thorough comparison)'),
20
- stakeholders: z.array(z.string()).optional().describe('Key stakeholders to involve in comparison'),
21
- });
22
- export const SeekExpertOpinionSchema = z.object({
23
- topic: z.string().describe('Topic or domain requiring expert input'),
24
- question: z.string().describe('Specific question for experts to address'),
25
- context: z.string().describe('Background information and why expert opinion is needed'),
26
- expertiseAreas: z.array(z.string()).describe('Required areas of expertise or knowledge'),
27
- urgency: z.enum(['low', 'medium', 'high']).default('medium').describe('How quickly expert input is needed'),
28
- });
29
- export const PollStakeholdersSchema = z.object({
30
- topic: z.string().describe('Topic or issue to poll stakeholders about'),
31
- question: z.string().describe('Specific question or decision point'),
32
- stakeholderGroups: z.array(z.string()).describe('Specific groups or individuals to poll (emails, usernames, or group names)'),
33
- options: z.array(z.object({
34
- name: z.string().describe('Option name'),
35
- description: z.string().optional().describe('Option details'),
36
- })).min(2).describe('Available response options'),
37
- anonymous: z.boolean().default(false).describe('Whether responses should be anonymous'),
38
- deadline: z.number().default(259200).describe('Response deadline in seconds (default: 3 days)'),
39
- });
40
- export const ConsensusBuilderSchema = z.object({
41
- initiative: z.string().describe('Initiative or change requiring consensus'),
42
- description: z.string().describe('Detailed description of what consensus is needed for'),
43
- stakeholderGroups: z.array(z.string()).describe('Groups that need to agree'),
44
- consensusThreshold: z.enum(['simple_majority', 'qualified_majority', 'unanimous']).default('qualified_majority').describe('Level of agreement required'),
45
- phases: z.array(z.object({
46
- name: z.string().describe('Phase name'),
47
- description: z.string().describe('What happens in this phase'),
48
- duration: z.number().describe('Phase duration in seconds'),
49
- })).optional().describe('Optional: break consensus building into phases'),
50
- });
51
- // Decision analysis schemas
52
- export const AnalyzeReadinessSchema = z.object({
53
- decisionId: z.string().describe('Decision ID to analyze for readiness'),
54
- criteria: z.array(z.string()).optional().describe('Specific readiness criteria to check'),
55
- });
56
- export const PredictOutcomeSchema = z.object({
57
- decisionId: z.string().describe('Decision ID to predict likely outcome based on current data'),
58
- includeConfidence: z.boolean().default(true).describe('Include confidence level in prediction'),
59
- });
60
- export const IdentifyBiasSchema = z.object({
61
- decisionId: z.string().describe('Decision ID to analyze for potential bias in evidence or participation'),
62
- biasTypes: z.array(z.enum(['selection', 'confirmation', 'availability', 'anchoring', 'participation'])).optional().describe('Specific bias types to check for'),
63
- });
64
- export const FindSimilarDecisionsSchema = z.object({
65
- topic: z.string().describe('Topic or keywords to find similar past decisions'),
66
- decisionType: z.enum(['case', 'advice', 'poll']).optional().describe('Filter by decision type'),
67
- timeframe: z.enum(['week', 'month', 'quarter', 'year', 'all']).default('year').describe('How far back to search'),
68
- includeOutcomes: z.boolean().default(true).describe('Include decision outcomes and effectiveness'),
69
- });
70
- export const CalculateConfidenceSchema = z.object({
71
- decisionId: z.string().describe('Decision ID to calculate confidence score for'),
72
- factors: z.array(z.enum(['participation_rate', 'evidence_quality', 'expert_involvement', 'consensus_level', 'time_adequacy'])).optional().describe('Specific confidence factors to evaluate'),
73
- });
74
- // Workflow automation schemas
75
- export const ScheduleReminderSchema = z.object({
76
- decisionId: z.string().describe('Decision ID to set reminders for'),
77
- reminderType: z.enum(['deadline_approaching', 'low_participation', 'consensus_reached', 'custom']).describe('Type of reminder to schedule'),
78
- timing: z.number().describe('When to send reminder (seconds before deadline or absolute timestamp)'),
79
- recipients: z.array(z.string()).optional().describe('Specific recipients for reminder (if not all stakeholders)'),
80
- message: z.string().optional().describe('Custom reminder message'),
81
- });
82
- export const EscalateDeadlockSchema = z.object({
83
- decisionId: z.string().describe('Stalled decision ID to escalate'),
84
- reason: z.string().describe('Why escalation is needed (deadlock, low participation, etc.)'),
85
- escalationType: z.enum(['expert_review', 'extended_timeline', 'stakeholder_expansion', 'mediation']).describe('Type of escalation to apply'),
86
- newStakeholders: z.array(z.string()).optional().describe('Additional stakeholders to involve in escalation'),
87
- });
88
- export const ImplementOutcomeSchema = z.object({
89
- decisionId: z.string().describe('Completed decision ID to implement'),
90
- actionItems: z.array(z.object({
91
- task: z.string().describe('Specific action to take'),
92
- assignee: z.string().optional().describe('Who is responsible'),
93
- deadline: z.number().optional().describe('Completion deadline timestamp'),
94
- })).describe('Action items to implement the decision'),
95
- trackingMethod: z.enum(['manual', 'automated', 'milestone']).default('manual').describe('How to track implementation progress'),
96
- });
97
- export const TrackImplementationSchema = z.object({
98
- decisionId: z.string().describe('Decision ID to track implementation for'),
99
- includeProgress: z.boolean().default(true).describe('Include progress details and completion status'),
100
- includeBlockers: z.boolean().default(true).describe('Include any implementation blockers or issues'),
101
- });
102
- //# sourceMappingURL=decisions.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"decisions.js","sourceRoot":"","sources":["../../src/tools/decisions.ts"],"names":[],"mappings":"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"}
@@ -1,78 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const SearchCasesSchema: z.ZodObject<{
3
- query: z.ZodOptional<z.ZodString>;
4
- status: z.ZodOptional<z.ZodEnum<["init", "open", "closed", "expired", "suspended"]>>;
5
- type: z.ZodOptional<z.ZodEnum<["case", "advice", "poll"]>>;
6
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7
- page: z.ZodDefault<z.ZodNumber>;
8
- limit: z.ZodDefault<z.ZodNumber>;
9
- }, "strip", z.ZodTypeAny, {
10
- page: number;
11
- limit: number;
12
- type?: "case" | "advice" | "poll" | undefined;
13
- tags?: string[] | undefined;
14
- status?: "init" | "open" | "closed" | "expired" | "suspended" | undefined;
15
- query?: string | undefined;
16
- }, {
17
- type?: "case" | "advice" | "poll" | undefined;
18
- tags?: string[] | undefined;
19
- status?: "init" | "open" | "closed" | "expired" | "suspended" | undefined;
20
- query?: string | undefined;
21
- page?: number | undefined;
22
- limit?: number | undefined;
23
- }>;
24
- export declare const GetCaseSchema: z.ZodObject<{
25
- id: z.ZodString;
26
- }, "strip", z.ZodTypeAny, {
27
- id: string;
28
- }, {
29
- id: string;
30
- }>;
31
- export declare const CreateCaseSchema: z.ZodObject<{
32
- title: z.ZodString;
33
- description: z.ZodString;
34
- type: z.ZodEnum<["case", "advice", "poll"]>;
35
- juryType: z.ZodDefault<z.ZodEnum<["public", "invited"]>>;
36
- sides: z.ZodArray<z.ZodObject<{
37
- name: z.ZodString;
38
- description: z.ZodOptional<z.ZodString>;
39
- }, "strip", z.ZodTypeAny, {
40
- name: string;
41
- description?: string | undefined;
42
- }, {
43
- name: string;
44
- description?: string | undefined;
45
- }>, "many">;
46
- caseLength: z.ZodDefault<z.ZodNumber>;
47
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
48
- }, "strip", z.ZodTypeAny, {
49
- title: string;
50
- caseLength: number;
51
- description: string;
52
- type: "case" | "advice" | "poll";
53
- juryType: "public" | "invited";
54
- sides: {
55
- name: string;
56
- description?: string | undefined;
57
- }[];
58
- tags?: string[] | undefined;
59
- }, {
60
- title: string;
61
- description: string;
62
- type: "case" | "advice" | "poll";
63
- sides: {
64
- name: string;
65
- description?: string | undefined;
66
- }[];
67
- caseLength?: number | undefined;
68
- juryType?: "public" | "invited" | undefined;
69
- tags?: string[] | undefined;
70
- }>;
71
- export declare const ListEvidenceSchema: z.ZodObject<{
72
- caseId: z.ZodString;
73
- }, "strip", z.ZodTypeAny, {
74
- caseId: string;
75
- }, {
76
- caseId: string;
77
- }>;
78
- //# sourceMappingURL=trials.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"trials.d.ts","sourceRoot":"","sources":["../../src/tools/trials.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;EAO5B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;EAExB,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW3B,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;EAE7B,CAAC"}
@@ -1,29 +0,0 @@
1
- import { z } from 'zod';
2
- // Case schemas — the single, canonical vocabulary advertised by the server.
3
- export const SearchCasesSchema = z.object({
4
- query: z.string().optional().describe('Search cases by title or description'),
5
- status: z.enum(['init', 'open', 'closed', 'expired', 'suspended']).optional().describe('Filter by case status (open = accepting votes)'),
6
- type: z.enum(['case', 'advice', 'poll']).optional().describe('Filter by case type — case (binding jury decision), advice (input for the creator), poll (opinion gathering)'),
7
- tags: z.array(z.string()).optional().describe('Filter by tags'),
8
- page: z.number().min(1).default(1).describe('Page number for pagination'),
9
- limit: z.number().min(1).max(100).default(20).describe('Number of cases to return per page'),
10
- });
11
- export const GetCaseSchema = z.object({
12
- id: z.string().describe('Case ID or UUID'),
13
- });
14
- export const CreateCaseSchema = z.object({
15
- title: z.string().min(3).max(200).describe('Case title — the question or statement to be decided'),
16
- description: z.string().min(10).describe('Context, background, and criteria for the case'),
17
- type: z.enum(['case', 'advice', 'poll']).describe('Case type — case (binding jury decision), advice (input for the creator), or poll (opinion gathering)'),
18
- juryType: z.enum(['public', 'invited']).default('public').describe('Who can participate — public (anyone) or invited only'),
19
- sides: z.array(z.object({
20
- name: z.string().describe('Option/choice name'),
21
- description: z.string().optional().describe('Optional description for this choice'),
22
- })).min(2).max(10).describe('The choices/options voters pick between (2-10)'),
23
- caseLength: z.number().min(60).max(2592000).default(86400).describe('Voting duration in seconds (min: 1 minute, max: 30 days, default: 1 day)'),
24
- tags: z.array(z.string()).max(4).optional().describe('Up to 4 tags for categorization'),
25
- });
26
- export const ListEvidenceSchema = z.object({
27
- caseId: z.string().describe('Case ID to get evidence for'),
28
- });
29
- //# sourceMappingURL=trials.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"trials.js","sourceRoot":"","sources":["../../src/tools/trials.ts"],"names":[],"mappings":"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"}