shiden 0.1.0 → 0.3.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.
Files changed (48) hide show
  1. package/.github/prompts/meta-prompt.md +22 -5
  2. package/.github/skills/theory-lookup.md +215 -210
  3. package/AGENTS.md +72 -1
  4. package/README.md +78 -10
  5. package/dist/cli/commands/theories.js +191 -0
  6. package/dist/cli/commands/theories.js.map +1 -0
  7. package/dist/cli/index.js +30 -59
  8. package/dist/cli/index.js.map +1 -1
  9. package/dist/theories/TheoryRepository.js +169 -0
  10. package/dist/theories/TheoryRepository.js.map +1 -0
  11. package/dist/theories/TheoryService.js +102 -0
  12. package/dist/theories/TheoryService.js.map +1 -0
  13. package/dist/theories/database.js +62 -0
  14. package/dist/theories/database.js.map +1 -0
  15. package/dist/theories/index.js +10 -0
  16. package/dist/theories/index.js.map +1 -0
  17. package/dist/theories/types.js +7 -0
  18. package/dist/theories/types.js.map +1 -0
  19. package/dist/types/cli/commands/theories.d.ts +12 -0
  20. package/dist/types/cli/commands/theories.d.ts.map +1 -0
  21. package/dist/types/theories/TheoryRepository.d.ts +52 -0
  22. package/dist/types/theories/TheoryRepository.d.ts.map +1 -0
  23. package/dist/types/theories/TheoryService.d.ts +48 -0
  24. package/dist/types/theories/TheoryService.d.ts.map +1 -0
  25. package/dist/types/theories/database.d.ts +20 -0
  26. package/dist/types/theories/database.d.ts.map +1 -0
  27. package/dist/types/theories/index.d.ts +8 -0
  28. package/dist/types/theories/index.d.ts.map +1 -0
  29. package/dist/types/theories/types.d.ts +132 -0
  30. package/dist/types/theories/types.d.ts.map +1 -0
  31. package/package.json +10 -3
  32. package/src/data/relations.json +464 -0
  33. package/src/data/theories.db +0 -0
  34. package/src/data/theories.db-shm +0 -0
  35. package/src/data/theories.db-wal +0 -0
  36. package/src/data/theories.json +6063 -0
  37. package/templates/.github/prompts/assessment.md +25 -11
  38. package/templates/.github/prompts/feedback.md +26 -11
  39. package/templates/.github/prompts/guidance.md +27 -13
  40. package/templates/.github/prompts/individual.md +28 -16
  41. package/templates/.github/prompts/lesson-plan.md +26 -18
  42. package/templates/.github/prompts/materials.md +25 -9
  43. package/templates/.github/prompts/meta-prompt.md +30 -6
  44. package/templates/.github/skills/context-manager.md +2 -2
  45. package/templates/.github/skills/orchestrator.md +14 -6
  46. package/templates/.github/skills/theory-lookup.md +215 -210
  47. package/templates/.vscode/mcp.json +35 -0
  48. package/templates/AGENTS.md +72 -1
@@ -0,0 +1,464 @@
1
+ [
2
+ {
3
+ "source_id": "theory-001",
4
+ "target_id": "theory-002",
5
+ "relation_type": "influences",
6
+ "weight": 1.0
7
+ },
8
+ {
9
+ "source_id": "theory-002",
10
+ "target_id": "theory-003",
11
+ "relation_type": "builds_upon",
12
+ "weight": 1.0
13
+ },
14
+ {
15
+ "source_id": "theory-003",
16
+ "target_id": "theory-014",
17
+ "relation_type": "derived_from",
18
+ "weight": 1.0
19
+ },
20
+ {
21
+ "source_id": "theory-005",
22
+ "target_id": "theory-006",
23
+ "relation_type": "complements",
24
+ "weight": 1.0
25
+ },
26
+ {
27
+ "source_id": "theory-006",
28
+ "target_id": "theory-007",
29
+ "relation_type": "influences",
30
+ "weight": 1.0
31
+ },
32
+ {
33
+ "source_id": "theory-006",
34
+ "target_id": "theory-024",
35
+ "relation_type": "similar_to",
36
+ "weight": 1.0
37
+ },
38
+ {
39
+ "source_id": "theory-007",
40
+ "target_id": "theory-011",
41
+ "relation_type": "derived_from",
42
+ "weight": 1.0
43
+ },
44
+ {
45
+ "source_id": "theory-008",
46
+ "target_id": "theory-032",
47
+ "relation_type": "complements",
48
+ "weight": 1.0
49
+ },
50
+ {
51
+ "source_id": "theory-009",
52
+ "target_id": "theory-020",
53
+ "relation_type": "similar_to",
54
+ "weight": 1.0
55
+ },
56
+ {
57
+ "source_id": "theory-009",
58
+ "target_id": "theory-089",
59
+ "relation_type": "complements",
60
+ "weight": 1.0
61
+ },
62
+ {
63
+ "source_id": "theory-010",
64
+ "target_id": "theory-006",
65
+ "relation_type": "influences",
66
+ "weight": 1.0
67
+ },
68
+ {
69
+ "source_id": "theory-010",
70
+ "target_id": "theory-012",
71
+ "relation_type": "complements",
72
+ "weight": 1.0
73
+ },
74
+ {
75
+ "source_id": "theory-011",
76
+ "target_id": "theory-009",
77
+ "relation_type": "influences",
78
+ "weight": 1.0
79
+ },
80
+ {
81
+ "source_id": "theory-013",
82
+ "target_id": "theory-012",
83
+ "relation_type": "complements",
84
+ "weight": 1.0
85
+ },
86
+ {
87
+ "source_id": "theory-014",
88
+ "target_id": "theory-029",
89
+ "relation_type": "complements",
90
+ "weight": 1.0
91
+ },
92
+ {
93
+ "source_id": "theory-019",
94
+ "target_id": "theory-060",
95
+ "relation_type": "complements",
96
+ "weight": 1.0
97
+ },
98
+ {
99
+ "source_id": "theory-020",
100
+ "target_id": "theory-024",
101
+ "relation_type": "complements",
102
+ "weight": 1.0
103
+ },
104
+ {
105
+ "source_id": "theory-020",
106
+ "target_id": "theory-111",
107
+ "relation_type": "complements",
108
+ "weight": 1.0
109
+ },
110
+ {
111
+ "source_id": "theory-022",
112
+ "target_id": "theory-021",
113
+ "relation_type": "complements",
114
+ "weight": 1.0
115
+ },
116
+ {
117
+ "source_id": "theory-023",
118
+ "target_id": "theory-021",
119
+ "relation_type": "influences",
120
+ "weight": 1.0
121
+ },
122
+ {
123
+ "source_id": "theory-024",
124
+ "target_id": "theory-111",
125
+ "relation_type": "complements",
126
+ "weight": 1.0
127
+ },
128
+ {
129
+ "source_id": "theory-025",
130
+ "target_id": "theory-027",
131
+ "relation_type": "influences",
132
+ "weight": 1.0
133
+ },
134
+ {
135
+ "source_id": "theory-026",
136
+ "target_id": "theory-010",
137
+ "relation_type": "applies_to",
138
+ "weight": 1.0
139
+ },
140
+ {
141
+ "source_id": "theory-031",
142
+ "target_id": "theory-029",
143
+ "relation_type": "complements",
144
+ "weight": 1.0
145
+ },
146
+ {
147
+ "source_id": "theory-032",
148
+ "target_id": "theory-030",
149
+ "relation_type": "complements",
150
+ "weight": 1.0
151
+ },
152
+ {
153
+ "source_id": "theory-033",
154
+ "target_id": "theory-034",
155
+ "relation_type": "contrasts_with",
156
+ "weight": 1.0
157
+ },
158
+ {
159
+ "source_id": "theory-033",
160
+ "target_id": "theory-037",
161
+ "relation_type": "similar_to",
162
+ "weight": 1.0
163
+ },
164
+ {
165
+ "source_id": "theory-035",
166
+ "target_id": "theory-128",
167
+ "relation_type": "complements",
168
+ "weight": 1.0
169
+ },
170
+ {
171
+ "source_id": "theory-036",
172
+ "target_id": "theory-035",
173
+ "relation_type": "complements",
174
+ "weight": 1.0
175
+ },
176
+ {
177
+ "source_id": "theory-038",
178
+ "target_id": "theory-109",
179
+ "relation_type": "complements",
180
+ "weight": 1.0
181
+ },
182
+ {
183
+ "source_id": "theory-040",
184
+ "target_id": "theory-091",
185
+ "relation_type": "derived_from",
186
+ "weight": 1.0
187
+ },
188
+ {
189
+ "source_id": "theory-041",
190
+ "target_id": "theory-007",
191
+ "relation_type": "derived_from",
192
+ "weight": 1.0
193
+ },
194
+ {
195
+ "source_id": "theory-042",
196
+ "target_id": "theory-109",
197
+ "relation_type": "applies_to",
198
+ "weight": 1.0
199
+ },
200
+ {
201
+ "source_id": "theory-043",
202
+ "target_id": "theory-002",
203
+ "relation_type": "applies_to",
204
+ "weight": 1.0
205
+ },
206
+ {
207
+ "source_id": "theory-044",
208
+ "target_id": "theory-009",
209
+ "relation_type": "applies_to",
210
+ "weight": 1.0
211
+ },
212
+ {
213
+ "source_id": "theory-045",
214
+ "target_id": "theory-046",
215
+ "relation_type": "influences",
216
+ "weight": 1.0
217
+ },
218
+ {
219
+ "source_id": "theory-046",
220
+ "target_id": "theory-134",
221
+ "relation_type": "complements",
222
+ "weight": 1.0
223
+ },
224
+ {
225
+ "source_id": "theory-047",
226
+ "target_id": "theory-045",
227
+ "relation_type": "influenced_by",
228
+ "weight": 1.0
229
+ },
230
+ {
231
+ "source_id": "theory-051",
232
+ "target_id": "theory-050",
233
+ "relation_type": "complements",
234
+ "weight": 1.0
235
+ },
236
+ {
237
+ "source_id": "theory-056",
238
+ "target_id": "theory-063",
239
+ "relation_type": "influences",
240
+ "weight": 1.0
241
+ },
242
+ {
243
+ "source_id": "theory-057",
244
+ "target_id": "theory-060",
245
+ "relation_type": "complements",
246
+ "weight": 1.0
247
+ },
248
+ {
249
+ "source_id": "theory-058",
250
+ "target_id": "theory-057",
251
+ "relation_type": "complements",
252
+ "weight": 1.0
253
+ },
254
+ {
255
+ "source_id": "theory-061",
256
+ "target_id": "theory-062",
257
+ "relation_type": "complements",
258
+ "weight": 1.0
259
+ },
260
+ {
261
+ "source_id": "theory-065",
262
+ "target_id": "theory-019",
263
+ "relation_type": "similar_to",
264
+ "weight": 1.0
265
+ },
266
+ {
267
+ "source_id": "theory-067",
268
+ "target_id": "theory-068",
269
+ "relation_type": "complements",
270
+ "weight": 1.0
271
+ },
272
+ {
273
+ "source_id": "theory-069",
274
+ "target_id": "theory-101",
275
+ "relation_type": "applies_to",
276
+ "weight": 1.0
277
+ },
278
+ {
279
+ "source_id": "theory-072",
280
+ "target_id": "theory-073",
281
+ "relation_type": "influences",
282
+ "weight": 1.0
283
+ },
284
+ {
285
+ "source_id": "theory-074",
286
+ "target_id": "theory-018",
287
+ "relation_type": "complements",
288
+ "weight": 1.0
289
+ },
290
+ {
291
+ "source_id": "theory-074",
292
+ "target_id": "theory-157",
293
+ "relation_type": "complements",
294
+ "weight": 1.0
295
+ },
296
+ {
297
+ "source_id": "theory-075",
298
+ "target_id": "theory-076",
299
+ "relation_type": "derived_from",
300
+ "weight": 1.0
301
+ },
302
+ {
303
+ "source_id": "theory-076",
304
+ "target_id": "theory-161",
305
+ "relation_type": "complements",
306
+ "weight": 1.0
307
+ },
308
+ {
309
+ "source_id": "theory-077",
310
+ "target_id": "theory-078",
311
+ "relation_type": "complements",
312
+ "weight": 1.0
313
+ },
314
+ {
315
+ "source_id": "theory-084",
316
+ "target_id": "theory-071",
317
+ "relation_type": "derived_from",
318
+ "weight": 1.0
319
+ },
320
+ {
321
+ "source_id": "theory-085",
322
+ "target_id": "theory-001",
323
+ "relation_type": "applies_to",
324
+ "weight": 1.0
325
+ },
326
+ {
327
+ "source_id": "theory-087",
328
+ "target_id": "theory-071",
329
+ "relation_type": "complements",
330
+ "weight": 1.0
331
+ },
332
+ {
333
+ "source_id": "theory-088",
334
+ "target_id": "theory-001",
335
+ "relation_type": "influences",
336
+ "weight": 1.0
337
+ },
338
+ {
339
+ "source_id": "theory-097",
340
+ "target_id": "theory-010",
341
+ "relation_type": "extends",
342
+ "weight": 1.0
343
+ },
344
+ {
345
+ "source_id": "theory-098",
346
+ "target_id": "theory-007",
347
+ "relation_type": "complements",
348
+ "weight": 1.0
349
+ },
350
+ {
351
+ "source_id": "theory-099",
352
+ "target_id": "theory-008",
353
+ "relation_type": "influences",
354
+ "weight": 1.0
355
+ },
356
+ {
357
+ "source_id": "theory-102",
358
+ "target_id": "theory-172",
359
+ "relation_type": "complements",
360
+ "weight": 1.0
361
+ },
362
+ {
363
+ "source_id": "theory-104",
364
+ "target_id": "theory-105",
365
+ "relation_type": "complements",
366
+ "weight": 1.0
367
+ },
368
+ {
369
+ "source_id": "theory-105",
370
+ "target_id": "theory-023",
371
+ "relation_type": "derived_from",
372
+ "weight": 1.0
373
+ },
374
+ {
375
+ "source_id": "theory-109",
376
+ "target_id": "theory-039",
377
+ "relation_type": "derived_from",
378
+ "weight": 1.0
379
+ },
380
+ {
381
+ "source_id": "theory-118",
382
+ "target_id": "theory-008",
383
+ "relation_type": "complements",
384
+ "weight": 1.0
385
+ },
386
+ {
387
+ "source_id": "theory-122",
388
+ "target_id": "theory-030",
389
+ "relation_type": "complements",
390
+ "weight": 1.0
391
+ },
392
+ {
393
+ "source_id": "theory-123",
394
+ "target_id": "theory-032",
395
+ "relation_type": "complements",
396
+ "weight": 1.0
397
+ },
398
+ {
399
+ "source_id": "theory-125",
400
+ "target_id": "theory-011",
401
+ "relation_type": "applies_to",
402
+ "weight": 1.0
403
+ },
404
+ {
405
+ "source_id": "theory-129",
406
+ "target_id": "theory-040",
407
+ "relation_type": "derived_from",
408
+ "weight": 1.0
409
+ },
410
+ {
411
+ "source_id": "theory-131",
412
+ "target_id": "theory-007",
413
+ "relation_type": "extends",
414
+ "weight": 1.0
415
+ },
416
+ {
417
+ "source_id": "theory-149",
418
+ "target_id": "theory-118",
419
+ "relation_type": "applies_to",
420
+ "weight": 1.0
421
+ },
422
+ {
423
+ "source_id": "theory-153",
424
+ "target_id": "theory-006",
425
+ "relation_type": "extends",
426
+ "weight": 1.0
427
+ },
428
+ {
429
+ "source_id": "theory-156",
430
+ "target_id": "theory-117",
431
+ "relation_type": "complements",
432
+ "weight": 1.0
433
+ },
434
+ {
435
+ "source_id": "theory-158",
436
+ "target_id": "theory-157",
437
+ "relation_type": "complements",
438
+ "weight": 1.0
439
+ },
440
+ {
441
+ "source_id": "theory-159",
442
+ "target_id": "theory-064",
443
+ "relation_type": "complements",
444
+ "weight": 1.0
445
+ },
446
+ {
447
+ "source_id": "theory-160",
448
+ "target_id": "theory-008",
449
+ "relation_type": "complements",
450
+ "weight": 1.0
451
+ },
452
+ {
453
+ "source_id": "theory-164",
454
+ "target_id": "theory-077",
455
+ "relation_type": "extends",
456
+ "weight": 1.0
457
+ },
458
+ {
459
+ "source_id": "theory-173",
460
+ "target_id": "theory-170",
461
+ "relation_type": "derived_from",
462
+ "weight": 1.0
463
+ }
464
+ ]
Binary file
Binary file
File without changes