@hiveforge/hivemind-mcp 2.3.0 → 2.4.0

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.
Files changed (39) hide show
  1. package/README.md +107 -27
  2. package/dist/graph/builder.d.ts +7 -3
  3. package/dist/graph/builder.d.ts.map +1 -1
  4. package/dist/graph/builder.js +51 -21
  5. package/dist/graph/builder.js.map +1 -1
  6. package/dist/mcp/tool-generator.d.ts +3 -1
  7. package/dist/mcp/tool-generator.d.ts.map +1 -1
  8. package/dist/mcp/tool-generator.js +41 -5
  9. package/dist/mcp/tool-generator.js.map +1 -1
  10. package/dist/search/engine.d.ts +9 -1
  11. package/dist/search/engine.d.ts.map +1 -1
  12. package/dist/search/engine.js +16 -4
  13. package/dist/search/engine.js.map +1 -1
  14. package/dist/templates/builtin/people-management.d.ts +18 -0
  15. package/dist/templates/builtin/people-management.d.ts.map +1 -0
  16. package/dist/templates/builtin/people-management.js +523 -0
  17. package/dist/templates/builtin/people-management.js.map +1 -0
  18. package/dist/templates/builtin/research.d.ts +18 -0
  19. package/dist/templates/builtin/research.d.ts.map +1 -0
  20. package/dist/templates/builtin/research.js +349 -0
  21. package/dist/templates/builtin/research.js.map +1 -0
  22. package/dist/templates/builtin/worldbuilding.d.ts.map +1 -1
  23. package/dist/templates/builtin/worldbuilding.js +138 -0
  24. package/dist/templates/builtin/worldbuilding.js.map +1 -1
  25. package/dist/templates/loader.d.ts +3 -1
  26. package/dist/templates/loader.d.ts.map +1 -1
  27. package/dist/templates/loader.js +7 -1
  28. package/dist/templates/loader.js.map +1 -1
  29. package/dist/templates/registry.d.ts +31 -1
  30. package/dist/templates/registry.d.ts.map +1 -1
  31. package/dist/templates/registry.js +64 -0
  32. package/dist/templates/registry.js.map +1 -1
  33. package/dist/templates/types.d.ts +28 -0
  34. package/dist/templates/types.d.ts.map +1 -1
  35. package/dist/templates/validator.d.ts +110 -0
  36. package/dist/templates/validator.d.ts.map +1 -1
  37. package/dist/templates/validator.js +35 -2
  38. package/dist/templates/validator.js.map +1 -1
  39. package/package.json +1 -1
@@ -0,0 +1,523 @@
1
+ /**
2
+ * Built-in people management template.
3
+ *
4
+ * Defines entity types for team and people management:
5
+ * - person: Team members, contacts, and individuals
6
+ * - goal: Objectives, OKRs, and targets
7
+ * - team: Groups, departments, and organizational units
8
+ * - one_on_one: 1:1 meeting notes and follow-ups
9
+ */
10
+ /**
11
+ * People management template definition.
12
+ *
13
+ * Designed for managers, team leads, and anyone who needs to track
14
+ * people, goals, teams, and 1:1 conversations.
15
+ */
16
+ export const peopleManagementTemplate = {
17
+ id: 'people-management',
18
+ name: 'People Management',
19
+ version: '1.0.0',
20
+ description: 'Template for managing people, goals, teams, and 1:1 meetings',
21
+ // Relationship type definitions for the knowledge graph
22
+ relationshipTypes: [
23
+ // Team membership
24
+ {
25
+ id: 'member_of',
26
+ displayName: 'Member Of',
27
+ description: 'Person is a member of a team',
28
+ sourceTypes: ['person'],
29
+ targetTypes: ['team'],
30
+ bidirectional: true,
31
+ reverseId: 'has_member',
32
+ },
33
+ {
34
+ id: 'has_member',
35
+ displayName: 'Has Member',
36
+ description: 'Team has a member',
37
+ sourceTypes: ['team'],
38
+ targetTypes: ['person'],
39
+ bidirectional: false,
40
+ },
41
+ {
42
+ id: 'leads',
43
+ displayName: 'Leads',
44
+ description: 'Person leads a team',
45
+ sourceTypes: ['person'],
46
+ targetTypes: ['team'],
47
+ bidirectional: true,
48
+ reverseId: 'led_by',
49
+ },
50
+ {
51
+ id: 'led_by',
52
+ displayName: 'Led By',
53
+ description: 'Team is led by a person',
54
+ sourceTypes: ['team'],
55
+ targetTypes: ['person'],
56
+ bidirectional: false,
57
+ },
58
+ // Reporting relationships
59
+ {
60
+ id: 'reports_to',
61
+ displayName: 'Reports To',
62
+ description: 'Person reports to another person',
63
+ sourceTypes: ['person'],
64
+ targetTypes: ['person'],
65
+ bidirectional: true,
66
+ reverseId: 'manages',
67
+ },
68
+ {
69
+ id: 'manages',
70
+ displayName: 'Manages',
71
+ description: 'Person manages another person',
72
+ sourceTypes: ['person'],
73
+ targetTypes: ['person'],
74
+ bidirectional: false,
75
+ },
76
+ // Goal relationships
77
+ {
78
+ id: 'owns_goal',
79
+ displayName: 'Owns Goal',
80
+ description: 'Person owns or is responsible for a goal',
81
+ sourceTypes: ['person'],
82
+ targetTypes: ['goal'],
83
+ bidirectional: true,
84
+ reverseId: 'owned_by',
85
+ },
86
+ {
87
+ id: 'owned_by',
88
+ displayName: 'Owned By',
89
+ description: 'Goal is owned by a person',
90
+ sourceTypes: ['goal'],
91
+ targetTypes: ['person'],
92
+ bidirectional: false,
93
+ },
94
+ {
95
+ id: 'contributes_to',
96
+ displayName: 'Contributes To',
97
+ description: 'Person or team contributes to a goal',
98
+ sourceTypes: ['person', 'team'],
99
+ targetTypes: ['goal'],
100
+ bidirectional: true,
101
+ reverseId: 'has_contributor',
102
+ },
103
+ {
104
+ id: 'has_contributor',
105
+ displayName: 'Has Contributor',
106
+ description: 'Goal has a contributor',
107
+ sourceTypes: ['goal'],
108
+ targetTypes: ['person', 'team'],
109
+ bidirectional: false,
110
+ },
111
+ {
112
+ id: 'supports',
113
+ displayName: 'Supports',
114
+ description: 'Goal supports another goal (parent-child)',
115
+ sourceTypes: ['goal'],
116
+ targetTypes: ['goal'],
117
+ bidirectional: true,
118
+ reverseId: 'supported_by',
119
+ },
120
+ {
121
+ id: 'supported_by',
122
+ displayName: 'Supported By',
123
+ description: 'Goal is supported by child goals',
124
+ sourceTypes: ['goal'],
125
+ targetTypes: ['goal'],
126
+ bidirectional: false,
127
+ },
128
+ // 1:1 relationships
129
+ {
130
+ id: 'attended',
131
+ displayName: 'Attended',
132
+ description: 'Person attended a 1:1 meeting',
133
+ sourceTypes: ['person'],
134
+ targetTypes: ['one_on_one'],
135
+ bidirectional: true,
136
+ reverseId: 'had_attendee',
137
+ },
138
+ {
139
+ id: 'had_attendee',
140
+ displayName: 'Had Attendee',
141
+ description: '1:1 meeting had an attendee',
142
+ sourceTypes: ['one_on_one'],
143
+ targetTypes: ['person'],
144
+ bidirectional: false,
145
+ },
146
+ // Generic fallback
147
+ {
148
+ id: 'related',
149
+ displayName: 'Related',
150
+ description: 'Generic relationship between any entities',
151
+ sourceTypes: 'any',
152
+ targetTypes: 'any',
153
+ bidirectional: true,
154
+ reverseId: 'related',
155
+ },
156
+ ],
157
+ entityTypes: [
158
+ // Person entity type
159
+ {
160
+ name: 'person',
161
+ displayName: 'Person',
162
+ pluralName: 'People',
163
+ description: 'Team members, contacts, and individuals',
164
+ icon: 'user',
165
+ fields: [
166
+ {
167
+ name: 'name',
168
+ type: 'string',
169
+ required: true,
170
+ description: 'Full name',
171
+ },
172
+ {
173
+ name: 'email',
174
+ type: 'string',
175
+ description: 'Email address',
176
+ },
177
+ {
178
+ name: 'role',
179
+ type: 'string',
180
+ description: 'Job title or role',
181
+ },
182
+ {
183
+ name: 'department',
184
+ type: 'string',
185
+ description: 'Department or division',
186
+ },
187
+ {
188
+ name: 'startDate',
189
+ type: 'date',
190
+ description: 'Start date with organization',
191
+ },
192
+ {
193
+ name: 'manager',
194
+ type: 'string',
195
+ description: 'ID of direct manager',
196
+ },
197
+ {
198
+ name: 'directReports',
199
+ type: 'array',
200
+ arrayItemType: 'string',
201
+ description: 'IDs of direct reports',
202
+ },
203
+ {
204
+ name: 'teams',
205
+ type: 'array',
206
+ arrayItemType: 'string',
207
+ description: 'IDs of teams this person belongs to',
208
+ },
209
+ {
210
+ name: 'skills',
211
+ type: 'array',
212
+ arrayItemType: 'string',
213
+ description: 'Skills and competencies',
214
+ },
215
+ {
216
+ name: 'location',
217
+ type: 'string',
218
+ description: 'Office location or timezone',
219
+ },
220
+ {
221
+ name: 'phone',
222
+ type: 'string',
223
+ description: 'Phone number',
224
+ },
225
+ {
226
+ name: 'slack',
227
+ type: 'string',
228
+ description: 'Slack handle',
229
+ },
230
+ {
231
+ name: 'github',
232
+ type: 'string',
233
+ description: 'GitHub username',
234
+ },
235
+ {
236
+ name: 'linkedin',
237
+ type: 'string',
238
+ description: 'LinkedIn profile URL',
239
+ },
240
+ {
241
+ name: 'pronouns',
242
+ type: 'string',
243
+ description: 'Preferred pronouns',
244
+ },
245
+ {
246
+ name: 'birthday',
247
+ type: 'string',
248
+ description: 'Birthday (month/day)',
249
+ },
250
+ {
251
+ name: 'notes',
252
+ type: 'string',
253
+ description: 'General notes about this person',
254
+ },
255
+ ],
256
+ },
257
+ // Goal entity type
258
+ {
259
+ name: 'goal',
260
+ displayName: 'Goal',
261
+ pluralName: 'Goals',
262
+ description: 'Objectives, OKRs, and targets',
263
+ icon: 'target',
264
+ fields: [
265
+ {
266
+ name: 'title',
267
+ type: 'string',
268
+ required: true,
269
+ description: 'Goal title',
270
+ },
271
+ {
272
+ name: 'description',
273
+ type: 'string',
274
+ description: 'Detailed description',
275
+ },
276
+ {
277
+ name: 'goalType',
278
+ type: 'enum',
279
+ enumValues: ['objective', 'key_result', 'initiative', 'task', 'milestone'],
280
+ default: 'objective',
281
+ description: 'Type of goal',
282
+ },
283
+ {
284
+ name: 'goalStatus',
285
+ type: 'enum',
286
+ enumValues: ['not_started', 'in_progress', 'at_risk', 'on_track', 'completed', 'cancelled'],
287
+ default: 'not_started',
288
+ description: 'Current status',
289
+ },
290
+ {
291
+ name: 'owner',
292
+ type: 'string',
293
+ description: 'ID of goal owner',
294
+ },
295
+ {
296
+ name: 'contributors',
297
+ type: 'array',
298
+ arrayItemType: 'string',
299
+ description: 'IDs of contributors',
300
+ },
301
+ {
302
+ name: 'parentGoal',
303
+ type: 'string',
304
+ description: 'ID of parent goal (for OKR hierarchies)',
305
+ },
306
+ {
307
+ name: 'childGoals',
308
+ type: 'array',
309
+ arrayItemType: 'string',
310
+ description: 'IDs of child goals',
311
+ },
312
+ {
313
+ name: 'team',
314
+ type: 'string',
315
+ description: 'ID of owning team',
316
+ },
317
+ {
318
+ name: 'startDate',
319
+ type: 'date',
320
+ description: 'Goal start date',
321
+ },
322
+ {
323
+ name: 'dueDate',
324
+ type: 'date',
325
+ description: 'Goal due date',
326
+ },
327
+ {
328
+ name: 'quarter',
329
+ type: 'string',
330
+ description: 'Quarter (e.g., Q1 2024)',
331
+ },
332
+ {
333
+ name: 'targetValue',
334
+ type: 'number',
335
+ description: 'Target metric value',
336
+ },
337
+ {
338
+ name: 'currentValue',
339
+ type: 'number',
340
+ description: 'Current metric value',
341
+ },
342
+ {
343
+ name: 'unit',
344
+ type: 'string',
345
+ description: 'Unit of measurement',
346
+ },
347
+ {
348
+ name: 'progress',
349
+ type: 'number',
350
+ description: 'Progress percentage (0-100)',
351
+ },
352
+ {
353
+ name: 'priority',
354
+ type: 'enum',
355
+ enumValues: ['p0', 'p1', 'p2', 'p3'],
356
+ description: 'Priority level',
357
+ },
358
+ ],
359
+ },
360
+ // Team entity type
361
+ {
362
+ name: 'team',
363
+ displayName: 'Team',
364
+ pluralName: 'Teams',
365
+ description: 'Groups, departments, and organizational units',
366
+ icon: 'users',
367
+ fields: [
368
+ {
369
+ name: 'name',
370
+ type: 'string',
371
+ required: true,
372
+ description: 'Team name',
373
+ },
374
+ {
375
+ name: 'description',
376
+ type: 'string',
377
+ description: 'Team purpose and responsibilities',
378
+ },
379
+ {
380
+ name: 'teamType',
381
+ type: 'enum',
382
+ enumValues: ['department', 'squad', 'project', 'working_group', 'guild', 'other'],
383
+ default: 'squad',
384
+ description: 'Type of team',
385
+ },
386
+ {
387
+ name: 'lead',
388
+ type: 'string',
389
+ description: 'ID of team lead',
390
+ },
391
+ {
392
+ name: 'members',
393
+ type: 'array',
394
+ arrayItemType: 'string',
395
+ description: 'IDs of team members',
396
+ },
397
+ {
398
+ name: 'parentTeam',
399
+ type: 'string',
400
+ description: 'ID of parent team (for hierarchies)',
401
+ },
402
+ {
403
+ name: 'childTeams',
404
+ type: 'array',
405
+ arrayItemType: 'string',
406
+ description: 'IDs of child teams',
407
+ },
408
+ {
409
+ name: 'goals',
410
+ type: 'array',
411
+ arrayItemType: 'string',
412
+ description: 'IDs of team goals',
413
+ },
414
+ {
415
+ name: 'slackChannel',
416
+ type: 'string',
417
+ description: 'Team Slack channel',
418
+ },
419
+ {
420
+ name: 'meetingCadence',
421
+ type: 'string',
422
+ description: 'Regular meeting schedule',
423
+ },
424
+ {
425
+ name: 'formed',
426
+ type: 'date',
427
+ description: 'When the team was formed',
428
+ },
429
+ ],
430
+ },
431
+ // One-on-one entity type
432
+ {
433
+ name: 'one_on_one',
434
+ displayName: '1:1 Meeting',
435
+ pluralName: '1:1 Meetings',
436
+ description: '1:1 meeting notes and follow-ups',
437
+ icon: 'message-square',
438
+ fields: [
439
+ {
440
+ name: 'title',
441
+ type: 'string',
442
+ required: true,
443
+ description: 'Meeting title (usually date + participants)',
444
+ },
445
+ {
446
+ name: 'date',
447
+ type: 'date',
448
+ required: true,
449
+ description: 'Meeting date',
450
+ },
451
+ {
452
+ name: 'manager',
453
+ type: 'string',
454
+ required: true,
455
+ description: 'ID of manager in the 1:1',
456
+ },
457
+ {
458
+ name: 'directReport',
459
+ type: 'string',
460
+ required: true,
461
+ description: 'ID of direct report in the 1:1',
462
+ },
463
+ {
464
+ name: 'mood',
465
+ type: 'enum',
466
+ enumValues: ['great', 'good', 'okay', 'struggling', 'not_discussed'],
467
+ description: 'How the direct report is feeling',
468
+ },
469
+ {
470
+ name: 'topics',
471
+ type: 'array',
472
+ arrayItemType: 'string',
473
+ description: 'Topics discussed',
474
+ },
475
+ {
476
+ name: 'actionItems',
477
+ type: 'array',
478
+ arrayItemType: 'record',
479
+ description: 'Action items with owner and due date',
480
+ },
481
+ {
482
+ name: 'feedback',
483
+ type: 'string',
484
+ description: 'Feedback shared',
485
+ },
486
+ {
487
+ name: 'wins',
488
+ type: 'array',
489
+ arrayItemType: 'string',
490
+ description: 'Wins and accomplishments discussed',
491
+ },
492
+ {
493
+ name: 'challenges',
494
+ type: 'array',
495
+ arrayItemType: 'string',
496
+ description: 'Challenges and blockers discussed',
497
+ },
498
+ {
499
+ name: 'careerDiscussion',
500
+ type: 'string',
501
+ description: 'Career growth discussion notes',
502
+ },
503
+ {
504
+ name: 'followUpItems',
505
+ type: 'array',
506
+ arrayItemType: 'string',
507
+ description: 'Items to follow up on in next 1:1',
508
+ },
509
+ {
510
+ name: 'nextMeeting',
511
+ type: 'date',
512
+ description: 'Date of next scheduled 1:1',
513
+ },
514
+ {
515
+ name: 'duration',
516
+ type: 'number',
517
+ description: 'Meeting duration in minutes',
518
+ },
519
+ ],
520
+ },
521
+ ],
522
+ };
523
+ //# sourceMappingURL=people-management.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"people-management.js","sourceRoot":"","sources":["../../../src/templates/builtin/people-management.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAIH;;;;;GAKG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAuB;IAC1D,EAAE,EAAE,mBAAmB;IACvB,IAAI,EAAE,mBAAmB;IACzB,OAAO,EAAE,OAAO;IAChB,WAAW,EAAE,8DAA8D;IAE3E,wDAAwD;IACxD,iBAAiB,EAAE;QACjB,kBAAkB;QAClB;YACE,EAAE,EAAE,WAAW;YACf,WAAW,EAAE,WAAW;YACxB,WAAW,EAAE,8BAA8B;YAC3C,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,aAAa,EAAE,IAAI;YACnB,SAAS,EAAE,YAAY;SACxB;QACD;YACE,EAAE,EAAE,YAAY;YAChB,WAAW,EAAE,YAAY;YACzB,WAAW,EAAE,mBAAmB;YAChC,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,aAAa,EAAE,KAAK;SACrB;QACD;YACE,EAAE,EAAE,OAAO;YACX,WAAW,EAAE,OAAO;YACpB,WAAW,EAAE,qBAAqB;YAClC,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,aAAa,EAAE,IAAI;YACnB,SAAS,EAAE,QAAQ;SACpB;QACD;YACE,EAAE,EAAE,QAAQ;YACZ,WAAW,EAAE,QAAQ;YACrB,WAAW,EAAE,yBAAyB;YACtC,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,aAAa,EAAE,KAAK;SACrB;QAED,0BAA0B;QAC1B;YACE,EAAE,EAAE,YAAY;YAChB,WAAW,EAAE,YAAY;YACzB,WAAW,EAAE,kCAAkC;YAC/C,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,aAAa,EAAE,IAAI;YACnB,SAAS,EAAE,SAAS;SACrB;QACD;YACE,EAAE,EAAE,SAAS;YACb,WAAW,EAAE,SAAS;YACtB,WAAW,EAAE,+BAA+B;YAC5C,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,aAAa,EAAE,KAAK;SACrB;QAED,qBAAqB;QACrB;YACE,EAAE,EAAE,WAAW;YACf,WAAW,EAAE,WAAW;YACxB,WAAW,EAAE,0CAA0C;YACvD,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,aAAa,EAAE,IAAI;YACnB,SAAS,EAAE,UAAU;SACtB;QACD;YACE,EAAE,EAAE,UAAU;YACd,WAAW,EAAE,UAAU;YACvB,WAAW,EAAE,2BAA2B;YACxC,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,aAAa,EAAE,KAAK;SACrB;QACD;YACE,EAAE,EAAE,gBAAgB;YACpB,WAAW,EAAE,gBAAgB;YAC7B,WAAW,EAAE,sCAAsC;YACnD,WAAW,EAAE,CAAC,QAAQ,EAAE,MAAM,CAAC;YAC/B,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,aAAa,EAAE,IAAI;YACnB,SAAS,EAAE,iBAAiB;SAC7B;QACD;YACE,EAAE,EAAE,iBAAiB;YACrB,WAAW,EAAE,iBAAiB;YAC9B,WAAW,EAAE,wBAAwB;YACrC,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,WAAW,EAAE,CAAC,QAAQ,EAAE,MAAM,CAAC;YAC/B,aAAa,EAAE,KAAK;SACrB;QACD;YACE,EAAE,EAAE,UAAU;YACd,WAAW,EAAE,UAAU;YACvB,WAAW,EAAE,2CAA2C;YACxD,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,aAAa,EAAE,IAAI;YACnB,SAAS,EAAE,cAAc;SAC1B;QACD;YACE,EAAE,EAAE,cAAc;YAClB,WAAW,EAAE,cAAc;YAC3B,WAAW,EAAE,kCAAkC;YAC/C,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,WAAW,EAAE,CAAC,MAAM,CAAC;YACrB,aAAa,EAAE,KAAK;SACrB;QAED,oBAAoB;QACpB;YACE,EAAE,EAAE,UAAU;YACd,WAAW,EAAE,UAAU;YACvB,WAAW,EAAE,+BAA+B;YAC5C,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,WAAW,EAAE,CAAC,YAAY,CAAC;YAC3B,aAAa,EAAE,IAAI;YACnB,SAAS,EAAE,cAAc;SAC1B;QACD;YACE,EAAE,EAAE,cAAc;YAClB,WAAW,EAAE,cAAc;YAC3B,WAAW,EAAE,6BAA6B;YAC1C,WAAW,EAAE,CAAC,YAAY,CAAC;YAC3B,WAAW,EAAE,CAAC,QAAQ,CAAC;YACvB,aAAa,EAAE,KAAK;SACrB;QAED,mBAAmB;QACnB;YACE,EAAE,EAAE,SAAS;YACb,WAAW,EAAE,SAAS;YACtB,WAAW,EAAE,2CAA2C;YACxD,WAAW,EAAE,KAAK;YAClB,WAAW,EAAE,KAAK;YAClB,aAAa,EAAE,IAAI;YACnB,SAAS,EAAE,SAAS;SACrB;KACF;IAED,WAAW,EAAE;QACX,qBAAqB;QACrB;YACE,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,QAAQ;YACrB,UAAU,EAAE,QAAQ;YACpB,WAAW,EAAE,yCAAyC;YACtD,IAAI,EAAE,MAAM;YACZ,MAAM,EAAE;gBACN;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,QAAQ;oBACd,QAAQ,EAAE,IAAI;oBACd,WAAW,EAAE,WAAW;iBACzB;gBACD;oBACE,IAAI,EAAE,OAAO;oBACb,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,eAAe;iBAC7B;gBACD;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,mBAAmB;iBACjC;gBACD;oBACE,IAAI,EAAE,YAAY;oBAClB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,wBAAwB;iBACtC;gBACD;oBACE,IAAI,EAAE,WAAW;oBACjB,IAAI,EAAE,MAAM;oBACZ,WAAW,EAAE,8BAA8B;iBAC5C;gBACD;oBACE,IAAI,EAAE,SAAS;oBACf,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,sBAAsB;iBACpC;gBACD;oBACE,IAAI,EAAE,eAAe;oBACrB,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,uBAAuB;iBACrC;gBACD;oBACE,IAAI,EAAE,OAAO;oBACb,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,qCAAqC;iBACnD;gBACD;oBACE,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,yBAAyB;iBACvC;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,6BAA6B;iBAC3C;gBACD;oBACE,IAAI,EAAE,OAAO;oBACb,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,cAAc;iBAC5B;gBACD;oBACE,IAAI,EAAE,OAAO;oBACb,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,cAAc;iBAC5B;gBACD;oBACE,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,iBAAiB;iBAC/B;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,sBAAsB;iBACpC;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,oBAAoB;iBAClC;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,sBAAsB;iBACpC;gBACD;oBACE,IAAI,EAAE,OAAO;oBACb,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,iCAAiC;iBAC/C;aACF;SACF;QAED,mBAAmB;QACnB;YACE,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,MAAM;YACnB,UAAU,EAAE,OAAO;YACnB,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,QAAQ;YACd,MAAM,EAAE;gBACN;oBACE,IAAI,EAAE,OAAO;oBACb,IAAI,EAAE,QAAQ;oBACd,QAAQ,EAAE,IAAI;oBACd,WAAW,EAAE,YAAY;iBAC1B;gBACD;oBACE,IAAI,EAAE,aAAa;oBACnB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,sBAAsB;iBACpC;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,MAAM;oBACZ,UAAU,EAAE,CAAC,WAAW,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,EAAE,WAAW,CAAC;oBAC1E,OAAO,EAAE,WAAW;oBACpB,WAAW,EAAE,cAAc;iBAC5B;gBACD;oBACE,IAAI,EAAE,YAAY;oBAClB,IAAI,EAAE,MAAM;oBACZ,UAAU,EAAE,CAAC,aAAa,EAAE,aAAa,EAAE,SAAS,EAAE,UAAU,EAAE,WAAW,EAAE,WAAW,CAAC;oBAC3F,OAAO,EAAE,aAAa;oBACtB,WAAW,EAAE,gBAAgB;iBAC9B;gBACD;oBACE,IAAI,EAAE,OAAO;oBACb,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,kBAAkB;iBAChC;gBACD;oBACE,IAAI,EAAE,cAAc;oBACpB,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,qBAAqB;iBACnC;gBACD;oBACE,IAAI,EAAE,YAAY;oBAClB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,yCAAyC;iBACvD;gBACD;oBACE,IAAI,EAAE,YAAY;oBAClB,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,oBAAoB;iBAClC;gBACD;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,mBAAmB;iBACjC;gBACD;oBACE,IAAI,EAAE,WAAW;oBACjB,IAAI,EAAE,MAAM;oBACZ,WAAW,EAAE,iBAAiB;iBAC/B;gBACD;oBACE,IAAI,EAAE,SAAS;oBACf,IAAI,EAAE,MAAM;oBACZ,WAAW,EAAE,eAAe;iBAC7B;gBACD;oBACE,IAAI,EAAE,SAAS;oBACf,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,yBAAyB;iBACvC;gBACD;oBACE,IAAI,EAAE,aAAa;oBACnB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,qBAAqB;iBACnC;gBACD;oBACE,IAAI,EAAE,cAAc;oBACpB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,sBAAsB;iBACpC;gBACD;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,qBAAqB;iBACnC;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,6BAA6B;iBAC3C;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,MAAM;oBACZ,UAAU,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC;oBACpC,WAAW,EAAE,gBAAgB;iBAC9B;aACF;SACF;QAED,mBAAmB;QACnB;YACE,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,MAAM;YACnB,UAAU,EAAE,OAAO;YACnB,WAAW,EAAE,+CAA+C;YAC5D,IAAI,EAAE,OAAO;YACb,MAAM,EAAE;gBACN;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,QAAQ;oBACd,QAAQ,EAAE,IAAI;oBACd,WAAW,EAAE,WAAW;iBACzB;gBACD;oBACE,IAAI,EAAE,aAAa;oBACnB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,mCAAmC;iBACjD;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,MAAM;oBACZ,UAAU,EAAE,CAAC,YAAY,EAAE,OAAO,EAAE,SAAS,EAAE,eAAe,EAAE,OAAO,EAAE,OAAO,CAAC;oBACjF,OAAO,EAAE,OAAO;oBAChB,WAAW,EAAE,cAAc;iBAC5B;gBACD;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,iBAAiB;iBAC/B;gBACD;oBACE,IAAI,EAAE,SAAS;oBACf,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,qBAAqB;iBACnC;gBACD;oBACE,IAAI,EAAE,YAAY;oBAClB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,qCAAqC;iBACnD;gBACD;oBACE,IAAI,EAAE,YAAY;oBAClB,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,oBAAoB;iBAClC;gBACD;oBACE,IAAI,EAAE,OAAO;oBACb,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,mBAAmB;iBACjC;gBACD;oBACE,IAAI,EAAE,cAAc;oBACpB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,oBAAoB;iBAClC;gBACD;oBACE,IAAI,EAAE,gBAAgB;oBACtB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,0BAA0B;iBACxC;gBACD;oBACE,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,MAAM;oBACZ,WAAW,EAAE,0BAA0B;iBACxC;aACF;SACF;QAED,yBAAyB;QACzB;YACE,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,aAAa;YAC1B,UAAU,EAAE,cAAc;YAC1B,WAAW,EAAE,kCAAkC;YAC/C,IAAI,EAAE,gBAAgB;YACtB,MAAM,EAAE;gBACN;oBACE,IAAI,EAAE,OAAO;oBACb,IAAI,EAAE,QAAQ;oBACd,QAAQ,EAAE,IAAI;oBACd,WAAW,EAAE,6CAA6C;iBAC3D;gBACD;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,MAAM;oBACZ,QAAQ,EAAE,IAAI;oBACd,WAAW,EAAE,cAAc;iBAC5B;gBACD;oBACE,IAAI,EAAE,SAAS;oBACf,IAAI,EAAE,QAAQ;oBACd,QAAQ,EAAE,IAAI;oBACd,WAAW,EAAE,0BAA0B;iBACxC;gBACD;oBACE,IAAI,EAAE,cAAc;oBACpB,IAAI,EAAE,QAAQ;oBACd,QAAQ,EAAE,IAAI;oBACd,WAAW,EAAE,gCAAgC;iBAC9C;gBACD;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,MAAM;oBACZ,UAAU,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,EAAE,eAAe,CAAC;oBACpE,WAAW,EAAE,kCAAkC;iBAChD;gBACD;oBACE,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,kBAAkB;iBAChC;gBACD;oBACE,IAAI,EAAE,aAAa;oBACnB,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,sCAAsC;iBACpD;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,iBAAiB;iBAC/B;gBACD;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,oCAAoC;iBAClD;gBACD;oBACE,IAAI,EAAE,YAAY;oBAClB,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,mCAAmC;iBACjD;gBACD;oBACE,IAAI,EAAE,kBAAkB;oBACxB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,gCAAgC;iBAC9C;gBACD;oBACE,IAAI,EAAE,eAAe;oBACrB,IAAI,EAAE,OAAO;oBACb,aAAa,EAAE,QAAQ;oBACvB,WAAW,EAAE,mCAAmC;iBACjD;gBACD;oBACE,IAAI,EAAE,aAAa;oBACnB,IAAI,EAAE,MAAM;oBACZ,WAAW,EAAE,4BAA4B;iBAC1C;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,6BAA6B;iBAC3C;aACF;SACF;KACF;CACF,CAAC"}
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Built-in research template.
3
+ *
4
+ * Defines entity types for academic research and knowledge management:
5
+ * - paper: Academic papers, articles, and publications
6
+ * - citation: References and citation relationships between papers
7
+ * - concept: Key ideas, theories, and definitions
8
+ * - note: General research notes and observations
9
+ */
10
+ import type { TemplateDefinition } from '../types.js';
11
+ /**
12
+ * Research template definition.
13
+ *
14
+ * Designed for academic research, literature reviews, and knowledge management.
15
+ * Supports citation tracking, concept mapping, and research notes.
16
+ */
17
+ export declare const researchTemplate: TemplateDefinition;
18
+ //# sourceMappingURL=research.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"research.d.ts","sourceRoot":"","sources":["../../../src/templates/builtin/research.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAEtD;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB,EAAE,kBAoV9B,CAAC"}