forked from sitcon-tw/hackathon2026
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteams.json
More file actions
1123 lines (1123 loc) · 17.3 KB
/
Copy pathteams.json
File metadata and controls
1123 lines (1123 loc) · 17.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "T001",
"name": "VibeSafari",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T002",
"name": "Think more",
"tracks": [
"Future of Work"
]
},
{
"id": "T004",
"name": "RWACE",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T005",
"name": "Quasar Labs",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T007",
"name": "Chiikawa",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T008",
"name": "AI 小白",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T009",
"name": "零食組成",
"tracks": [
"Future of Work"
]
},
{
"id": "T010",
"name": "新創小隊",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T011",
"name": "黑輪隊",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T012",
"name": "小蝦米",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T013",
"name": "海底總動員",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T014",
"name": "全~隊",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T015",
"name": "皮卡不揪",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T016",
"name": "比奇堡的海底世界",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T017",
"name": "心花開",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T018",
"name": "51CODE",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T019",
"name": "LearnFlow",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T020",
"name": "Open Product Workshop",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T021",
"name": "AI Prototype Lab",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T022",
"name": "Creative Interaction Lab",
"tracks": [
"AI × Creative Technology"
]
},
{
"id": "T023",
"name": "Agent Build Lab",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T024",
"name": "Physical AI Forge",
"tracks": [
"AI x Creativity",
"AI × Creative Technology"
]
},
{
"id": "T025",
"name": "Trust & Civic AI",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T026",
"name": "StoryTrace Studio",
"tracks": [
"AI × Creative Technology"
]
},
{
"id": "T029",
"name": "Health AI Bridge",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T030",
"name": "Context & Agent Lab",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T032",
"name": "—–這條線以上的都是給—–",
"tracks": [
"Future of Work",
"AI × Creative Technology"
]
},
{
"id": "T034",
"name": "(´・ω・`)",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T036",
"name": "404 Team Not Found",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T037",
"name": "404: Care Not Found",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T039",
"name": "一群皮老闆",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T040",
"name": "丹丹快跑",
"tracks": [
"BUILDMODE Open"
]
},
{
"id": "T043",
"name": "分身有術",
"tracks": [
"AI for Everyday Life",
"AI × Creative Technology"
]
},
{
"id": "T044",
"name": "日記漂流瓶",
"tracks": [
"Future of Work"
]
},
{
"id": "T045",
"name": "水返腳(2).png",
"tracks": [
"AI x Creativity"
]
},
{
"id": "T046",
"name": "牛肉酒麵",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T047",
"name": "牛來了",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T048",
"name": "世界上最難測量的東西,你,因為是難量",
"tracks": [
"BUILDMODE Open"
]
},
{
"id": "T049",
"name": "未命名隊伍",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T053",
"name": "全",
"tracks": [
"AI x Creativity",
"AI × Creative Technology"
]
},
{
"id": "T054",
"name": "全村的希望就是真真",
"tracks": [
"Future of Work"
]
},
{
"id": "T055",
"name": "全隊",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T058",
"name": "同簷",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T059",
"name": "有Token就好",
"tracks": [
"AI × Creative Technology"
]
},
{
"id": "T064",
"name": "你說的對,我不應該直接把資料庫刪掉",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T065",
"name": "尬電商一下",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T066",
"name": "我女友好正",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T069",
"name": "我是迪爵",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T072",
"name": "來偷偷啃",
"tracks": [
"AI x Creativity"
]
},
{
"id": "T073",
"name": "咕咕嘎嘎牛逼轟轟",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T075",
"name": "姆姆未來",
"tracks": [
"Future of Work"
]
},
{
"id": "T078",
"name": "氛圍鱈魚中",
"tracks": [
"AI Agents & Automation",
"AI × Creative Technology"
]
},
{
"id": "T080",
"name": "阿鳥為",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T083",
"name": "星澄遠征軍",
"tracks": [
"AI x Creativity"
]
},
{
"id": "T084",
"name": "洪金寶",
"tracks": [
"AI Agents & Automation",
"AI × Creative Technology"
]
},
{
"id": "T085",
"name": "乘風破prompt-趕海人號",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T088",
"name": "拿冠軍就休學",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T089",
"name": "時律之繭Tempo Casing",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T090",
"name": "特務J",
"tracks": [
"AI x Creativity"
]
},
{
"id": "T092",
"name": "草莓舒芙蕾教宗",
"tracks": [
"AI Agents & Automation",
"AI × Creative Technology"
]
},
{
"id": "T093",
"name": "除草證照五級",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T094",
"name": "馬內歸我",
"tracks": [
"AI for Everyday Life",
"AI × Creative Technology"
]
},
{
"id": "T095",
"name": "高位元走狗",
"tracks": [
"Future of Work"
]
},
{
"id": "T096",
"name": "偷啃大盜",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T097",
"name": "啊對對對",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T098",
"name": "掉到世界外面的米粒",
"tracks": [
"AI x Creativity"
]
},
{
"id": "T101",
"name": "淡大虎",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T103",
"name": "創市巨作",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T104",
"name": "創新科技實驗室",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T106",
"name": "喵~",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T107",
"name": "帽子工廠",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T108",
"name": "替代方案",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T109",
"name": "期待的仙境",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T111",
"name": "發芽芽",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T112",
"name": "等等我問一下 AI",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T114",
"name": "開堂首節課",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T115",
"name": "黃桃罐頭",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T117",
"name": "萬一我的天賦是訂閱 codex 呢",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T118",
"name": "腦袋很忙",
"tracks": [
"Future of Work"
]
},
{
"id": "T119",
"name": "詭像依依Gxyy",
"tracks": [
"AI × Creative Technology"
]
},
{
"id": "T121",
"name": "電電資資滋⚡",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T124",
"name": "歐歐歐ai,蝦米是 ai",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T125",
"name": "碼上成功",
"tracks": [
"AI Agents & Automation",
"AI × Creative Technology"
]
},
{
"id": "T127",
"name": "據說可以免費吃東西?",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T130",
"name": "融慧貫通",
"tracks": [
"AI × Creative Technology"
]
},
{
"id": "T131",
"name": "薛丁格的梅",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T132",
"name": "螺絲",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T133",
"name": "還沒想好",
"tracks": [
"Future of Work"
]
},
{
"id": "T135",
"name": "織疊",
"tracks": [
"AI × Creative Technology"
]
},
{
"id": "T136",
"name": "爆肝高中生",
"tracks": [
"Future of Work",
"AI × Creative Technology"
]
},
{
"id": "T138",
"name": "嚴肅奶龍",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T140",
"name": "寶寶寶",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T142",
"name": "體感溫度快熱死",
"tracks": [
"AI for Taiwan/Social Impact",
"AI × Creative Technology"
]
},
{
"id": "T145",
"name": "Age Is Just a Number",
"tracks": [
"Future of Work"
]
},
{
"id": "T146",
"name": "AI agent team",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T147",
"name": "AI Sloper",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T149",
"name": "AIs On Me",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T151",
"name": "AnyIdea?",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T153",
"name": "Artificial Illusion",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T154",
"name": "Atrophied Intelligence",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T155",
"name": "Baeka",
"tracks": [
"AI x Creativity"
]
},
{
"id": "T161",
"name": "ChatKTV",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T162",
"name": "Chill Agents",
"tracks": [
"AI for Taiwan/Social Impact",
"AI × Creative Technology"
]
},
{
"id": "T163",
"name": "Coco",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T164",
"name": "Code Bakery",
"tracks": [
"Future of Work"
]
},
{
"id": "T165",
"name": "codenoodles",
"tracks": [
"AI for Everyday Life",
"AI × Creative Technology"
]
},
{
"id": "T166",
"name": "Codex 我的再生父母",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T170",
"name": "DevDevDev",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T172",
"name": "Edgecase",
"tracks": [
"BUILDMODE Open"
]
},
{
"id": "T175",
"name": "Everything No Reason",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T176",
"name": "Fulfill",
"tracks": [
"Future of Work"
]
},
{
"id": "T177",
"name": "Future of work",
"tracks": [
"Future of Work"
]
},
{
"id": "T178",
"name": "Gary",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T179",
"name": "GOGOGO",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T180",
"name": "GoGoOpenResume",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T181",
"name": "gotyou ai",
"tracks": [
"Future of Work"
]
},
{
"id": "T186",
"name": "Henry Black",
"tracks": [
"Future of Work"
]
},
{
"id": "T187",
"name": "HypeLink",
"tracks": [
"Future of Work"
]
},
{
"id": "T194",
"name": "k66",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T195",
"name": "king game",
"tracks": [
"BUILDMODE Open"
]
},
{
"id": "T198",
"name": "life house",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T200",
"name": "LumiLumi",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T201",
"name": "MCPocket",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T202",
"name": "MODEV",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T204",
"name": "mozufu",
"tracks": [
"BUILDMODE Open"
]
},
{
"id": "T213",
"name": "Nomad Life",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T216",
"name": "OMG (1)",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T219",
"name": "Open · 未來鄉愁吉普賽",
"tracks": [
"AI x Creativity"
]
},
{
"id": "T224",
"name": "Mello",
"tracks": [
"BUILDMODE Open"
]
},
{
"id": "T226",
"name": "RCEs 沒有 R 也沒有 E 也沒有 s",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T227",
"name": "RhythME AI",
"tracks": [
"AI for Taiwan/Social Impact",
"AI × Creative Technology"
]
},
{
"id": "T230",
"name": "rm -rf",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T231",
"name": "ROBOT",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T232",
"name": "Safari",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T233",
"name": "Seal is Cute",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T234",
"name": "shaugyue",
"tracks": [
"AI for Everyday Life"
]
},
{
"id": "T235",
"name": "Shawn Capital NYC branch",
"tracks": [
"BUILDMODE Open"
]
},
{
"id": "T239",
"name": "SixHuang",
"tracks": [
"AI for Taiwan/Social Impact"
]
},
{
"id": "T241",
"name": "T-FLOW 演化座標",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T244",
"name": "TitApeX",
"tracks": [
"AI Agents & Automation"
]
},
{
"id": "T246",
"name": "TWMD",
"tracks": [
"AI Agents & Automation"