-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
956 lines (905 loc) · 52.2 KB
/
Copy pathindex.html
File metadata and controls
956 lines (905 loc) · 52.2 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Paca — Humans and AI agents, one Scrum team</title>
<meta name="description" content="Paca is a free, self-hosted, open-source project management platform where AI agents plan sprints, pick up tasks, and ship alongside humans. Chat with your project in plain English and revert any change in one click. The fully customizable alternative to Jira, Trello, ClickUp, and Monday." />
<meta property="og:title" content="Paca — Humans and AI agents, one Scrum team" />
<meta property="og:description" content="AI-native, free, lightweight, open-source project management. Your AI agents get a seat at the table. New in v0.4: in-app AI chat and one-click diff revert." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://paca-ai.org/" />
<meta property="og:image" content="https://paca-ai.org/assets/paca-logo-512.png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:image" content="https://paca-ai.org/assets/paca-logo-512.png" />
<link rel="canonical" href="https://paca-ai.org/" />
<link rel="icon" type="image/svg+xml" href="assets/paca-logo.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32.png" />
<link rel="icon" type="image/png" sizes="192x192" href="assets/paca-logo-192.png" />
<link rel="apple-touch-icon" href="assets/paca-logo-192.png" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"name": "Paca",
"url": "https://paca-ai.org",
"logo": {
"@type": "ImageObject",
"url": "https://paca-ai.org/assets/paca-logo-512.png",
"width": 512,
"height": 512
},
"description": "AI-native, free, open-source project management where AI agents work alongside humans on one Scrum team.",
"sameAs": ["https://github.com/Paca-AI/paca"]
},
{
"@type": "WebSite",
"name": "Paca",
"url": "https://paca-ai.org"
}
]
}
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body id="top">
<!-- ====================== NAV ====================== -->
<header class="nav" id="nav">
<div class="container nav-inner">
<a class="brand" href="#top" aria-label="Paca home">
<img src="assets/paca-logo.svg" alt="" width="30" height="30" />
<span class="brand-name">Paca</span>
</a>
<nav class="nav-links" aria-label="Primary">
<a href="#why">Why Paca</a>
<a href="#cycle">How it works</a>
<a href="#whats-new">What's new</a>
<a href="#features">Features</a>
<a href="#install">Install</a>
<a href="#compare">Compare</a>
</nav>
<div class="nav-cta">
<a class="btn btn-ghost btn-sm" href="https://github.com/Paca-AI/paca" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" width="15" height="15" fill="currentColor" aria-hidden="true"><path d="M12 .5C5.65.5.5 5.65.5 12c0 5.08 3.29 9.39 7.86 10.91.58.11.79-.25.79-.55 0-.27-.01-1.17-.02-2.12-3.2.7-3.88-1.36-3.88-1.36-.52-1.33-1.28-1.68-1.28-1.68-1.04-.71.08-.7.08-.7 1.15.08 1.76 1.18 1.76 1.18 1.03 1.76 2.69 1.25 3.35.96.1-.74.4-1.25.72-1.54-2.55-.29-5.24-1.28-5.24-5.68 0-1.26.45-2.28 1.18-3.09-.12-.29-.51-1.46.11-3.04 0 0 .96-.31 3.16 1.18a11 11 0 0 1 5.76 0c2.19-1.49 3.15-1.18 3.15-1.18.63 1.58.23 2.75.12 3.04.74.81 1.18 1.83 1.18 3.09 0 4.41-2.69 5.38-5.26 5.66.41.36.78 1.06.78 2.14 0 1.55-.01 2.79-.01 3.17 0 .31.21.67.8.55A11.51 11.51 0 0 0 23.5 12C23.5 5.65 18.35.5 12 .5Z"/></svg>
<span>GitHub</span>
<span class="star-pill" id="star-count" hidden>★ —</span>
</a>
<a class="btn btn-lime btn-sm nav-get-started" href="#install">Get started</a>
<button class="nav-burger" id="nav-burger" aria-label="Open menu" aria-expanded="false" aria-controls="mobile-menu">
<svg class="ic-menu" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" aria-hidden="true"><line x1="4" y1="7" x2="20" y2="7"/><line x1="4" y1="12" x2="20" y2="12"/><line x1="4" y1="17" x2="20" y2="17"/></svg>
<svg class="ic-close" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" aria-hidden="true"><line x1="6" y1="6" x2="18" y2="18"/><line x1="18" y1="6" x2="6" y2="18"/></svg>
</button>
</div>
</div>
</header>
<div class="mobile-menu" id="mobile-menu">
<nav aria-label="Mobile">
<a href="#why">Why Paca</a>
<a href="#cycle">How it works</a>
<a href="#whats-new">What's new</a>
<a href="#features">Features</a>
<a href="#install">Install</a>
<a href="#compare">Compare</a>
<a href="https://github.com/Paca-AI/paca" target="_blank" rel="noopener">GitHub ↗</a>
</nav>
<a class="btn btn-lime" href="#install">Get started — it's free</a>
</div>
<main>
<!-- ====================== HERO ====================== -->
<section class="hero">
<div class="hero-wash" aria-hidden="true"></div>
<div class="container">
<div class="hero-inner">
<div class="kicker-chip" data-hero="kicker">
<span class="kicker-dot" aria-hidden="true"></span>
<span class="mono" id="kicker-text">HUMANS + AI · ONE SCRUM TEAM</span>
</div>
<h1 class="hero-title" id="hero-title">
<span class="ht-line">Project management</span>
<span class="ht-line">where <span class="lime">AI agents</span></span>
<span class="ht-line">pull their weight.</span>
</h1>
<p class="hero-sub" data-hero="sub">
Paca gives your agents a seat at the table — they plan sprints, pick up tasks,
write specs, and ship alongside humans on one real-time board.
Free, self-hosted, and 100% open-source.
</p>
<div class="hero-cta" data-hero="cta">
<a class="btn btn-lime btn-lg" href="#install">
Get started — it's free
<svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M5 12h14"/><path d="m13 6 6 6-6 6"/></svg>
</a>
<a class="btn btn-ghost btn-lg" href="https://github.com/Paca-AI/paca" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
Star on GitHub
</a>
</div>
</div>
<!-- Live Scrumban board demo -->
<div class="board-wrap" data-hero="board">
<div class="board" id="board" aria-label="Animated demo of the Paca Scrumban board">
<div class="board-bar">
<div class="board-dots" aria-hidden="true"><span></span><span></span><span></span></div>
<div class="board-name"><span class="mono">paca-core</span><span class="board-sep">·</span>Sprint 12</div>
<div class="live-badge"><span class="live-dot" aria-hidden="true"></span>LIVE</div>
</div>
<div class="board-body">
<div class="board-cols">
<!-- TO DO -->
<div class="bcol" data-col="todo">
<div class="bcol-head">
<span class="bcol-dot" style="--dot:#666"></span>
<span class="bcol-name">To Do</span>
<span class="bcol-count" data-count="todo">3</span>
</div>
<div class="bcol-cards" data-slot="todo">
<article class="tcard" id="card-oauth">
<div class="tcard-top">
<span class="badge badge-story">Story</span>
<span class="tid mono">PACA-128</span>
</div>
<h4 class="tcard-title">OAuth login with PKCE flow</h4>
<div class="tcard-meta">
<span class="tprog" aria-hidden="true"><span class="tprog-fill"></span></span>
<span class="tcheck" aria-hidden="true">
<svg viewBox="0 0 24 24" width="10" height="10" fill="none" stroke="currentColor" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="m4.5 12.5 5 5 10-11"/></svg>
</span>
<span class="avatar avatar-empty" data-ava="oauth" aria-hidden="true"></span>
</div>
</article>
<article class="tcard" id="card-bug">
<div class="tcard-top">
<span class="badge badge-bug">Bug</span>
<span class="tid mono">PACA-131</span>
</div>
<h4 class="tcard-title">Board drag ghost offset</h4>
<div class="tcard-meta">
<span class="avatar avatar-h1" aria-hidden="true">M</span>
</div>
</article>
<article class="tcard" id="card-spec">
<div class="tcard-top">
<span class="badge badge-spec">Spec</span>
<span class="tid mono">PACA-127</span>
</div>
<h4 class="tcard-title">BDD: sprint rollover rules</h4>
<div class="tcard-meta">
<span class="avatar avatar-empty" aria-hidden="true"></span>
</div>
</article>
</div>
</div>
<!-- IN PROGRESS -->
<div class="bcol" data-col="doing">
<div class="bcol-head">
<span class="bcol-dot" style="--dot:#9ed957"></span>
<span class="bcol-name">In Progress</span>
<span class="bcol-count" data-count="doing">1</span>
</div>
<div class="bcol-cards" data-slot="doing">
<article class="tcard" id="card-presence">
<div class="tcard-top">
<span class="badge badge-story">Story</span>
<span class="tid mono">PACA-119</span>
</div>
<h4 class="tcard-title">Realtime presence cursors</h4>
<div class="tcard-meta">
<span class="avatar avatar-h2" aria-hidden="true">T</span>
</div>
</article>
</div>
</div>
<!-- DONE -->
<div class="bcol" data-col="done">
<div class="bcol-head">
<span class="bcol-dot" style="--dot:#10b981"></span>
<span class="bcol-name">Done</span>
<span class="bcol-count" data-count="done">1</span>
</div>
<div class="bcol-cards" data-slot="done">
<article class="tcard tcard-done" id="card-valkey">
<div class="tcard-top">
<span class="badge badge-chore">Chore</span>
<span class="tid mono">PACA-112</span>
</div>
<h4 class="tcard-title">Upgrade Valkey to v8</h4>
<div class="tcard-meta">
<span class="tcheck on" aria-hidden="true">
<svg viewBox="0 0 24 24" width="10" height="10" fill="none" stroke="currentColor" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="m4.5 12.5 5 5 10-11"/></svg>
</span>
<span class="avatar avatar-h2" aria-hidden="true">T</span>
</div>
</article>
</div>
</div>
</div>
<!-- Activity rail -->
<aside class="board-feed" aria-label="Activity feed">
<div class="feed-head">
<span>Activity</span>
<span class="feed-line-deco" aria-hidden="true"></span>
</div>
<div class="feed-list" id="feed-list"></div>
</aside>
</div>
</div>
</div>
</div>
</section>
<!-- ====================== ALT-TO STRIP ====================== -->
<section class="strip">
<div class="container strip-inner" data-reveal>
<span class="strip-label">The fully customizable alternative to</span>
<div class="strip-names" role="list">
<span role="listitem">Jira</span>
<span role="listitem">Trello</span>
<span role="listitem">ClickUp</span>
<span role="listitem">Monday</span>
<span class="strip-price mono">$8–20+ /seat/mo</span>
</div>
<span class="strip-paca mono"><span class="strip-paca-dot" aria-hidden="true"></span>Paca · $0 forever</span>
</div>
</section>
<!-- ====================== WHY / CORE IDEA ====================== -->
<section class="why section" id="why">
<div class="container">
<div class="sec-head" data-reveal>
<span class="sec-kicker mono">Why Paca</span>
<h2 class="sec-title">Not a chatbot bolted on the side. <span class="dim">A teammate on the board.</span></h2>
<p class="sec-sub">Jira gives you a backlog. ClickUp gives you automations. Monday gives you dashboards.
Paca gives your AI agents a seat at the table.</p>
</div>
<div class="why-grid">
<article class="why-card" data-reveal>
<div class="why-ic" aria-hidden="true">
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M22 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
</div>
<h3>Teammates, not chatbots</h3>
<p>Agents are assigned to sprints, appear on the Scrumban board next to humans,
and update task status in real time. No separate "AI workspace."</p>
</article>
<article class="why-card" data-reveal>
<div class="why-ic" aria-hidden="true">
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M3 12a9 9 0 1 0 9-9"/><path d="M3 12h6"/><path d="M3 12 7 8"/><path d="M3 12l4 4"/><circle cx="12" cy="12" r="1.6" fill="currentColor" stroke="none"/></svg>
</div>
<h3>Probe · sense · respond</h3>
<p>Rooted in the Cynefin framework: complex work needs adaptive teams, not rigid pipelines.
Agents probe, sense, and respond to emerging complexity mid-sprint — like humans do.</p>
</article>
<article class="why-card" data-reveal>
<div class="why-ic" aria-hidden="true">
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><path d="M14 2v6h6"/><path d="M9 13h6"/><path d="M9 17h6"/></svg>
</div>
<h3>Grounded in your docs</h3>
<p>BDD scenarios and living System Design Documents keep every agent contextually
anchored — so output matches how your product actually works.</p>
</article>
</div>
</div>
</section>
<!-- ====================== P-A-C-A CYCLE ====================== -->
<section class="cycle section" id="cycle">
<div class="container">
<div class="sec-head" data-reveal>
<span class="sec-kicker mono">How it works</span>
<h2 class="sec-title">The P·A·C·A cycle.</h2>
<p class="sec-sub">Four phases that mirror both Scrum and the scientific method —
run by humans and agents together.</p>
</div>
<!-- compact progress rail (mobile) -->
<div class="cycle-rail" aria-hidden="true">
<span class="rail-track"><span class="rail-fill" id="rail-fill"></span></span>
<span class="rail-node on" data-rail="0"><i>P</i><em>Plan</em></span>
<span class="rail-node on" data-rail="1"><i>A</i><em>Act</em></span>
<span class="rail-node on" data-rail="2"><i>C</i><em>Check</em></span>
<span class="rail-node on" data-rail="3"><i>A</i><em>Adapt</em></span>
</div>
<div class="cycle-stage">
<!-- ORBIT — the team runs the loop -->
<div class="cycle-orbit" id="cycle-orbit" aria-hidden="true">
<div class="orbit-wash"></div>
<svg class="cycle-ring" viewBox="0 0 460 460">
<circle class="ring-track" cx="230" cy="230" r="170" />
<circle class="ring-prog" id="ring-prog" cx="230" cy="230" r="170" transform="rotate(-90 230 230)" />
<g class="ring-comet" id="ring-comet" transform="translate(230 60)">
<circle class="comet-halo" r="14" />
<circle class="comet-mid" r="8.5" />
<circle class="comet-core" r="5" />
</g>
<text class="node-tag on" data-tag="0" x="230" y="103" text-anchor="middle">PLAN</text>
<text class="node-tag on" data-tag="1" x="362" y="234" text-anchor="end">ACT</text>
<text class="node-tag on" data-tag="2" x="230" y="364" text-anchor="middle">CHECK</text>
<text class="node-tag on" data-tag="3" x="98" y="234" text-anchor="start">ADAPT</text>
<g class="ring-node on" data-node="0" transform="translate(230 60)"><circle r="21"/><text dy="5.5">P</text></g>
<g class="ring-node on" data-node="1" transform="translate(400 230)"><circle r="21"/><text dy="5.5">A</text></g>
<g class="ring-node on" data-node="2" transform="translate(230 400)"><circle r="21"/><text dy="5.5">C</text></g>
<g class="ring-node on" data-node="3" transform="translate(60 230)"><circle r="21"/><text dy="5.5">A</text></g>
</svg>
<div class="orbiter" data-orbiter="0"><span class="avatar avatar-ai">AI</span></div>
<div class="orbiter" data-orbiter="1"><span class="avatar avatar-h1">M</span></div>
<div class="orbiter" data-orbiter="2"><span class="avatar avatar-h2">T</span></div>
<div class="cycle-center">
<span class="cycle-step mono" id="cycle-step">01 / 04</span>
<span class="cycle-phase" id="cycle-phase">Plan</span>
<span class="cycle-sub mono" id="cycle-sub">backlog → BDD specs</span>
</div>
</div>
<!-- PHASE PANELS — each with a micro-scene of the actual work -->
<div class="cycle-panels" id="cycle-panels">
<article class="cphase" data-phase="0" data-name="Plan" data-verb="backlog → BDD specs">
<header class="cphase-head">
<span class="cphase-no mono">01</span>
<h3>Plan</h3>
</header>
<p class="cphase-copy">POs, BAs, and AI agents refine the backlog together. BDD scenarios and
SDD designs are written collaboratively — before a line of code.</p>
<div class="cscene scn-plan" aria-hidden="true">
<div class="scn-bar">
<span class="board-dots"><span></span><span></span><span></span></span>
<span class="scn-file mono">sprint-13-plan.md</span>
<span class="scn-authors">
<span class="avatar avatar-h1" data-author="m">M</span>
<span class="avatar avatar-ai" data-author="ai">AI</span>
<span class="scn-coedit mono">co-editing</span>
</span>
</div>
<div class="scn-body scn-doc mono">
<div class="doc-line"><span class="c-kw">Feature:</span> OAuth login with PKCE</div>
<div class="doc-line"> <span class="c-kw">Given</span> a returning user</div>
<div class="doc-line"> <span class="c-kw">When</span> the PKCE flow completes</div>
<div class="doc-line"> <span class="c-kw">Then</span> a session is created</div>
<div class="scn-made">
<span class="scn-chip"><span class="mc-plus">+</span><span class="badge badge-story">Story</span><span class="mono">PACA-132</span></span>
<span class="scn-chip"><span class="mc-plus">+</span><span class="badge badge-spec">Spec</span><span class="mono">PACA-133</span></span>
</div>
</div>
</div>
</article>
<article class="cphase" data-phase="1" data-name="Act" data-verb="pull · build · ship">
<header class="cphase-head">
<span class="cphase-no mono">02</span>
<h3>Act</h3>
</header>
<p class="cphase-copy">Sprint is live. Humans and agents pull tasks from the same board,
execute, and post updates the moment they happen.</p>
<div class="cscene scn-act" aria-hidden="true">
<div class="scn-bar">
<span class="board-dots"><span></span><span></span><span></span></span>
<span class="scn-file mono">sprint 13 · board</span>
<span class="scn-live mono"><i></i>LIVE</span>
</div>
<div class="scn-body scn-cols">
<div class="scn-col">
<span class="scn-col-head mono">To Do</span>
<div class="scn-slot" data-slot="todo">
<div class="scn-card">
<div class="scn-card-top"><span class="badge badge-spec">Spec</span><span class="scn-id mono">PACA-127</span></div>
<div class="scn-card-meta"><span class="avatar avatar-empty"></span></div>
</div>
</div>
</div>
<div class="scn-col">
<span class="scn-col-head mono">In Progress</span>
<div class="scn-slot" data-slot="doing">
<div class="scn-card scn-card-live" id="scn-act-card">
<div class="scn-card-top"><span class="badge badge-story">Story</span><span class="scn-id mono">PACA-128</span></div>
<div class="scn-card-meta"><span class="scn-prog"><span class="scn-prog-fill" id="scn-act-fill"></span></span><span class="avatar avatar-ai" id="scn-act-ava">AI</span></div>
</div>
<div class="scn-card">
<div class="scn-card-top"><span class="badge badge-bug">Bug</span><span class="scn-id mono">PACA-131</span></div>
<div class="scn-card-meta"><span class="avatar avatar-h1">M</span></div>
</div>
</div>
</div>
<div class="scn-col">
<span class="scn-col-head mono">Done</span>
<div class="scn-slot" data-slot="done">
<div class="scn-card scn-card-done">
<div class="scn-card-top"><span class="badge badge-chore">Chore</span><span class="scn-id mono">PACA-112</span></div>
<div class="scn-card-meta"><span class="avatar avatar-h2">T</span></div>
</div>
</div>
</div>
</div>
</div>
</article>
<article class="cphase" data-phase="2" data-name="Check" data-verb="verify · review · trust">
<header class="cphase-head">
<span class="cphase-no mono">03</span>
<h3>Check</h3>
</header>
<p class="cphase-copy">QA agents run automated verification while humans review agent output.
The board reflects reality — always.</p>
<div class="cscene scn-check" aria-hidden="true">
<div class="scn-bar">
<span class="board-dots"><span></span><span></span><span></span></span>
<span class="scn-file mono">qa-agent · verification</span>
</div>
<div class="scn-body scn-checks">
<div class="check-row ok">
<span class="check-box"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="m4.5 12.5 5 5 10-11"/></svg></span>
<span class="check-name mono">auth.spec.ts</span>
<span class="check-meta mono">12 passed</span>
</div>
<div class="check-row ok">
<span class="check-box"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="m4.5 12.5 5 5 10-11"/></svg></span>
<span class="check-name mono">board.spec.ts</span>
<span class="check-meta mono">9 passed</span>
</div>
<div class="check-row ok">
<span class="check-box"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="m4.5 12.5 5 5 10-11"/></svg></span>
<span class="check-name mono">e2e: sprint rollover</span>
<span class="check-meta mono">4 passed</span>
</div>
<div class="check-row check-human ok">
<span class="check-box"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="m4.5 12.5 5 5 10-11"/></svg></span>
<span class="check-name">Mai approved agent output</span>
<span class="avatar avatar-h1">M</span>
</div>
<span class="scn-stamp mono" id="scn-stamp">✓ ALL CHECKS PASSED</span>
</div>
</div>
</article>
<article class="cphase" data-phase="3" data-name="Adapt" data-verb="retro → next sprint">
<header class="cphase-head">
<span class="cphase-no mono">04</span>
<h3>Adapt</h3>
</header>
<p class="cphase-copy">Sprint data informs the next cycle. The whole team — human and AI —
retrospects together and adjusts course.</p>
<div class="cscene scn-adapt" aria-hidden="true">
<div class="scn-bar">
<span class="board-dots"><span></span><span></span><span></span></span>
<span class="scn-file mono">retro · sprint 12 → 13</span>
</div>
<div class="scn-body scn-adapt-body">
<div class="scn-bars">
<span class="abar" style="--h:34%"></span>
<span class="abar" style="--h:52%"></span>
<span class="abar" style="--h:46%"></span>
<span class="abar" style="--h:68%"></span>
<span class="abar abar-next" style="--h:88%"></span>
<svg class="scn-loop" viewBox="0 0 400 92" preserveAspectRatio="none" aria-hidden="true">
<path id="scn-loop-path" d="M 364 30 C 322 2, 92 0, 40 28" fill="none" />
<path id="scn-loop-head" d="M 52 19 40 28 54 33" fill="none" />
</svg>
</div>
<div class="scn-next">
<span class="scn-chip"><span class="mc-plus">↻</span><span class="mono">Sprint 13 planned</span></span>
<span class="scn-foot mono">velocity ↑ · learnings feed the next Plan</span>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
</section>
<!-- ====================== WHAT'S NEW (v0.4) ====================== -->
<section class="whatsnew section" id="whats-new">
<div class="container">
<div class="sec-head" data-reveal>
<span class="sec-kicker mono">New in v0.4.0</span>
<h2 class="sec-title">Talk to your project. <span class="dim">Undo anything.</span></h2>
<p class="sec-sub">Two new superpowers for human–AI teamwork: a project-level AI chat that turns
plain English into real work items, and an activity trail where every change can be reverted in one click.</p>
</div>
<div class="wn-grid">
<!-- In-app AI chat -->
<article class="wn-card" data-reveal>
<div class="wn-head">
<h3>In-app AI chat</h3>
<p>Chat with AI agents at the project level — plan work, then create or update epics,
stories, tasks, and docs in plain English. No tab-switching, no copy-paste.</p>
</div>
<div class="wn-visual chat-demo" id="chat-demo" aria-hidden="true">
<div class="chat-bar">
<span class="chat-title"><span class="mono">paca-core</span><span class="chat-label"><span class="board-sep">·</span>Project chat</span></span>
<span class="chat-online"><i></i>AGENT ONLINE</span>
</div>
<div class="chat-body">
<div class="chat-msg user" data-chat="q">
<span class="avatar avatar-h1">M</span>
<div class="chat-bubble">Plan next sprint around the OAuth epic — two weeks, include QA.</div>
</div>
<div class="chat-msg chat-typing" data-chat="typing">
<span class="avatar avatar-ai">AI</span>
<div class="chat-bubble"><span class="feed-dots"><i></i><i></i><i></i></span></div>
</div>
<div class="chat-msg" data-chat="a">
<span class="avatar avatar-ai">AI</span>
<div class="chat-bubble">
Drafted <strong>Sprint 13</strong> — three items added to the backlog:
<div class="chat-made">
<span class="made-chip"><span class="mc-plus">+</span><span class="badge badge-story">Story</span><span class="mono">PACA-132</span><span class="mc-title">OAuth refresh tokens</span></span>
<span class="made-chip"><span class="mc-plus">+</span><span class="badge badge-spec">Spec</span><span class="mono">PACA-133</span><span class="mc-title">PKCE edge cases</span></span>
<span class="made-chip"><span class="mc-plus">+</span><span class="badge badge-chore">Chore</span><span class="mono">PACA-134</span><span class="mc-title">QA regression pass</span></span>
</div>
</div>
</div>
</div>
<div class="chat-input">
<span>Message your project…</span>
<span class="chat-send"><svg viewBox="0 0 24 24" width="12" height="12" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M5 12h14"/><path d="m13 6 6 6-6 6"/></svg></span>
</div>
</div>
</article>
<!-- Diff & revert -->
<article class="wn-card" data-reveal>
<div class="wn-head">
<h3>Diff & revert any change</h3>
<p>Agents move fast — Paca keeps receipts. Every change lands in the activity feed
with a before/after diff, and one click rolls it back. Full speed, zero fear.</p>
</div>
<div class="wn-visual revert-demo" id="revert-demo" aria-hidden="true">
<div class="act-entry act-faded">
<div class="act-top">
<span class="feed-ava hum">M</span>
<span class="act-text">Mai moved <span class="mono">PACA-119</span> to Done</span>
<span class="act-time mono">4m</span>
</div>
</div>
<div class="act-entry act-faded">
<div class="act-top">
<span class="feed-ava ai">AI</span>
<span class="act-text">Paca Agent created <span class="mono">PACA-132…134</span></span>
<span class="act-time mono">2m</span>
</div>
</div>
<div class="act-entry act-main" id="act-main">
<div class="act-top">
<span class="feed-ava ai">AI</span>
<span class="act-text">Paca Agent updated <span class="mono">PACA-131</span></span>
<span class="act-time mono">just now</span>
</div>
<div class="act-diff">
<div class="diff-line diff-del" id="diff-del">
<span class="d-sign" id="d-sign">−</span>
<span class="d-field">due date</span>
<span class="d-val">Jun 20</span>
</div>
<div class="diff-line diff-add" id="diff-add">
<span class="d-sign">+</span>
<span class="d-field">due date</span>
<span class="d-val">Jun 27</span>
</div>
</div>
<div class="act-foot">
<span class="revert-btn" id="revert-btn">
<svg viewBox="0 0 24 24" width="13" height="13" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"/><path d="M3 3v5h5"/></svg>
<span id="revert-label">Revert</span>
</span>
<span class="revert-note mono">works for human edits, too</span>
</div>
</div>
<div class="revert-toast mono" id="revert-toast">↺ Change reverted — still logged in activity</div>
</div>
</article>
</div>
</div>
</section>
<!-- ====================== FEATURES BENTO ====================== -->
<section class="features section" id="features">
<div class="container">
<div class="sec-head" data-reveal>
<span class="sec-kicker mono">Features</span>
<h2 class="sec-title">A lightweight core. <span class="dim">Everything else is a plugin.</span></h2>
<p class="sec-sub">Workflows, statuses, fields, board layouts, and agent behavior are all configuration.
Extend or replace any part of Paca — safely.</p>
</div>
<div class="bento">
<!-- Unified board -->
<article class="bcard span-2" data-reveal>
<div class="bcard-head">
<h3>Unified Scrumban board</h3>
<p>Humans and AI agents share one real-time board — assignments, status, and progress in a single view.</p>
</div>
<div class="bcard-visual mini-board" aria-hidden="true">
<div class="mini-col">
<span class="mini-head">To Do</span>
<span class="mini-card"><i class="mini-chip c-story"></i><i class="mini-ava">M</i></span>
<span class="mini-card"><i class="mini-chip c-spec"></i><i class="mini-ava mini-ava-ai">AI</i></span>
</div>
<div class="mini-col">
<span class="mini-head">Doing</span>
<span class="mini-card glow"><i class="mini-chip c-story"></i><i class="mini-ava mini-ava-ai">AI</i></span>
<span class="mini-card"><i class="mini-chip c-bug"></i><i class="mini-ava">T</i></span>
</div>
<div class="mini-col">
<span class="mini-head">Done</span>
<span class="mini-card done"><i class="mini-chip c-done"></i><i class="mini-ava">M</i></span>
</div>
</div>
</article>
<!-- Realtime -->
<article class="bcard" data-reveal>
<div class="bcard-head">
<h3>Real-time everything</h3>
<p>Socket.IO fan-out. Everyone — and every agent — sees changes the moment they happen.</p>
</div>
<div class="bcard-visual pulse-visual" aria-hidden="true">
<span class="pulse-line"><span class="pulse-dot"></span></span>
<span class="pulse-label mono">socket.io · 12ms</span>
</div>
</article>
<!-- MCP -->
<article class="bcard span-2" data-reveal>
<div class="bcard-head">
<h3>MCP server built in</h3>
<p>Connect Claude or any MCP-compatible agent straight into Paca's data layer — projects, tasks, sprints, docs.</p>
</div>
<div class="bcard-visual code-visual mono" aria-hidden="true">
<pre><code><span class="c-pun">{</span>
<span class="c-key">"mcpServers"</span><span class="c-pun">:</span> <span class="c-pun">{</span>
<span class="c-key">"paca"</span><span class="c-pun">:</span> <span class="c-pun">{</span>
<span class="c-key">"command"</span><span class="c-pun">:</span> <span class="c-str">"npx"</span><span class="c-pun">,</span>
<span class="c-key">"args"</span><span class="c-pun">:</span> <span class="c-pun">[</span><span class="c-str">"-y"</span><span class="c-pun">,</span> <span class="c-str">"@paca-ai/paca-mcp"</span><span class="c-pun">]</span>
<span class="c-pun">}</span>
<span class="c-pun">}</span>
<span class="c-pun">}</span></code></pre>
</div>
</article>
<!-- Claude Code skills -->
<article class="bcard" data-reveal>
<div class="bcard-head">
<h3>Claude Code skills</h3>
<p>Manage your whole workspace in plain English without leaving the editor.</p>
</div>
<div class="bcard-visual slash-visual mono" aria-hidden="true">
<span class="slash">/paca-sprint</span>
<span class="slash">/paca-epic</span>
<span class="slash">/paca-do</span>
<span class="slash dim-slash">+ 8 more</span>
</div>
</article>
<!-- BDD -->
<article class="bcard" data-reveal>
<div class="bcard-head">
<h3>BDD co-authoring</h3>
<p>Gherkin scenarios written by POs, BAs, and agents — together.</p>
</div>
<div class="bcard-visual code-visual mono" aria-hidden="true">
<pre><code><span class="c-kw">Feature:</span> Sprint rollover
<span class="c-kw">Scenario:</span> Unfinished task
<span class="c-kw">Given</span> a task in "Doing"
<span class="c-kw">When</span> the sprint ends
<span class="c-kw">Then</span> it moves to backlog</code></pre>
</div>
</article>
<!-- WASM plugins -->
<article class="bcard" data-reveal>
<div class="bcard-head">
<h3>WASM plugin sandbox</h3>
<p>Write plugins in Go, Rust — anything with a WASM target. Capability-based permissions; nothing more.</p>
</div>
<div class="bcard-visual chips-visual" aria-hidden="true">
<span class="cap-chip mono">sandboxed</span>
<span class="cap-chip mono">capability-scoped</span>
<span class="cap-chip mono">marketplace</span>
</div>
</article>
<!-- Self-hosted -->
<article class="bcard" data-reveal>
<div class="bcard-head">
<h3>Self-hosted & private</h3>
<p>One Docker Compose command. Your data never leaves your infrastructure.</p>
</div>
<div class="bcard-visual chips-visual" aria-hidden="true">
<span class="cap-chip mono">docker compose up</span>
<span class="cap-chip cap-lime mono">you own everything</span>
</div>
</article>
</div>
</div>
</section>
<!-- ====================== INSTALL ====================== -->
<section class="install section" id="install">
<div class="container">
<div class="sec-head" data-reveal>
<span class="sec-kicker mono">Install</span>
<h2 class="sec-title">Up and running in one command.</h2>
<p class="sec-sub">Runs on any Linux server with Docker. No repository clone required.</p>
</div>
<div class="install-grid">
<div class="term" data-reveal>
<div class="term-bar">
<div class="board-dots" aria-hidden="true"><span></span><span></span><span></span></div>
<span class="term-title mono">bash</span>
<button class="copy-btn" data-copy="curl -fsSL https://github.com/Paca-AI/paca/releases/latest/download/install.sh | bash" aria-label="Copy install command">
<svg viewBox="0 0 24 24" width="14" height="14" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><rect x="9" y="9" width="12" height="12" rx="2"/><path d="M5 15V5a2 2 0 0 1 2-2h10"/></svg>
<span class="copy-label">Copy</span>
</button>
</div>
<div class="term-body mono">
<div class="term-line"><span class="term-prompt">$</span><span id="term-cmd"></span><span class="term-caret" id="term-caret" aria-hidden="true"></span></div>
<div class="term-out" id="term-out">
<div class="term-out-line"><span class="t-ok">✓</span> Pulling images… done</div>
<div class="term-out-line"><span class="t-ok">✓</span> Database migrated</div>
<div class="term-out-line"><span class="t-ok">✓</span> Agent sandbox ready</div>
<div class="term-out-line t-lime">→ Paca is running at http://your-server</div>
</div>
</div>
</div>
<ol class="install-steps">
<li data-reveal>
<span class="step-no mono">1</span>
<div>
<h3>Run the installer</h3>
<p>The script walks you through configuration interactively and starts the full stack.</p>
</div>
</li>
<li data-reveal>
<span class="step-no mono">2</span>
<div>
<h3>Open your browser</h3>
<p>Visit your server's address and log in as <span class="mono inline-code">admin</span>. You're on the board.</p>
</div>
</li>
<li data-reveal>
<span class="step-no mono">3</span>
<div>
<h3>Invite your agents</h3>
<p>Connect Claude Code in one line — or any MCP client.</p>
<div class="mini-cmd mono">
<code>claude mcp add paca -- npx -y @paca-ai/paca-mcp</code>
<button class="copy-btn copy-btn-bare" data-copy="claude mcp add paca -- npx -y @paca-ai/paca-mcp" aria-label="Copy MCP command">
<svg viewBox="0 0 24 24" width="13" height="13" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><rect x="9" y="9" width="12" height="12" rx="2"/><path d="M5 15V5a2 2 0 0 1 2-2h10"/></svg>
</button>
</div>
</div>
</li>
</ol>
</div>
</div>
</section>
<!-- ====================== COMPARE ====================== -->
<section class="compare section" id="compare">
<div class="container">
<div class="sec-head" data-reveal>
<span class="sec-kicker mono">Compare</span>
<h2 class="sec-title">Built different. <span class="dim">On purpose.</span></h2>
</div>
<div class="cmp-scroll" data-reveal>
<table class="cmp">
<thead>
<tr>
<th scope="col"></th>
<th scope="col">Jira / Trello / ClickUp / Monday</th>
<th scope="col" class="cmp-paca-col">
<span class="cmp-paca-head"><img src="assets/paca-logo.svg" alt="" width="18" height="18" /> Paca</span>
</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">AI integration</th>
<td>Chatbot add-ons, peripheral automation</td>
<td class="cmp-paca-col">AI agents as first-class Scrum teammates</td>
</tr>
<tr>
<th scope="row">Collaboration</th>
<td>Human-only by default</td>
<td class="cmp-paca-col">Human + AI, side by side on one board</td>
</tr>
<tr>
<th scope="row">Change safety</th>
<td>Buried audit logs — no undo</td>
<td class="cmp-paca-col">Before/after diffs, one-click revert</td>
</tr>
<tr>
<th scope="row">Hosting</th>
<td>Vendor cloud — your data, their servers</td>
<td class="cmp-paca-col">Self-hosted — you own everything</td>
</tr>
<tr>
<th scope="row">Cost</th>
<td>$8–$20+ per seat / month</td>
<td class="cmp-paca-col"><strong>Free forever</strong></td>
</tr>
<tr>
<th scope="row">Customization</th>
<td>Locked behind enterprise tiers</td>
<td class="cmp-paca-col">Fully open: configuration + plugins</td>
</tr>
<tr>
<th scope="row">Weight</th>
<td>Bloated feature sprawl</td>
<td class="cmp-paca-col">Lightweight core — extend only what you need</td>
</tr>
<tr>
<th scope="row">Source</th>
<td>Closed / proprietary</td>
<td class="cmp-paca-col">100% open-source · Apache-2.0</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- ====================== STORY ====================== -->
<section class="story section">
<div class="container story-inner" data-reveal>
<img class="story-logo" src="assets/paca-logo.svg" alt="The Paca alpaca logo" width="76" height="76" />
<p class="story-kicker mono">ばか · THE "PACA" STORY</p>
<blockquote class="story-quote">
The name is a pun on the Japanese word <em>"Baka"</em> — silly.
Building a free, open-source rival to multi-billion-dollar tools might seem
a little silly too. <span class="lime">We think it's worth being foolish about.</span>
</blockquote>
<p class="story-sub">Human–AI collaboration in a real Scrum team should be accessible to every team,
everywhere — not locked behind a vendor's pricing model. 🦙</p>
</div>
</section>
<!-- ====================== FINAL CTA ====================== -->
<section class="cta section">
<div class="container">
<div class="cta-panel" data-reveal>
<h2 class="cta-title">Give your agents a seat at the table.</h2>
<p class="cta-sub mono">free forever · self-hosted · apache-2.0</p>
<div class="cta-actions">
<a class="btn btn-dark btn-lg" href="https://github.com/Paca-AI/paca" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" width="16" height="16" fill="currentColor" aria-hidden="true"><path d="M12 .5C5.65.5.5 5.65.5 12c0 5.08 3.29 9.39 7.86 10.91.58.11.79-.25.79-.55 0-.27-.01-1.17-.02-2.12-3.2.7-3.88-1.36-3.88-1.36-.52-1.33-1.28-1.68-1.28-1.68-1.04-.71.08-.7.08-.7 1.15.08 1.76 1.18 1.76 1.18 1.03 1.76 2.69 1.25 3.35.96.1-.74.4-1.25.72-1.54-2.55-.29-5.24-1.28-5.24-5.68 0-1.26.45-2.28 1.18-3.09-.12-.29-.51-1.46.11-3.04 0 0 .96-.31 3.16 1.18a11 11 0 0 1 5.76 0c2.19-1.49 3.15-1.18 3.15-1.18.63 1.58.23 2.75.12 3.04.74.81 1.18 1.83 1.18 3.09 0 4.41-2.69 5.38-5.26 5.66.41.36.78 1.06.78 2.14 0 1.55-.01 2.79-.01 3.17 0 .31.21.67.8.55A11.51 11.51 0 0 0 23.5 12C23.5 5.65 18.35.5 12 .5Z"/></svg>
View on GitHub
</a>
<a class="btn btn-outline-dark btn-lg" href="#install">Install in one command</a>
</div>
</div>
</div>
</section>
</main>
<!-- ====================== FOOTER ====================== -->
<footer class="footer">
<div class="container">
<div class="footer-grid">
<div class="footer-brand">
<a class="brand" href="#top">
<img src="assets/paca-logo.svg" alt="" width="28" height="28" />
<span class="brand-name">Paca</span>
</a>
<p>AI-native. Free. Lightweight. Open-source.<br />Built by humans and AI, together.</p>
</div>
<nav class="footer-col" aria-label="Project">
<h4 class="mono">Project</h4>
<a href="https://github.com/Paca-AI/paca" target="_blank" rel="noopener">GitHub</a>
<a href="https://github.com/Paca-AI/paca/blob/master/ROADMAP.md" target="_blank" rel="noopener">Roadmap</a>
<a href="https://github.com/Paca-AI/paca/releases" target="_blank" rel="noopener">Releases</a>
<a href="https://github.com/Paca-AI/paca/blob/master/LICENSE" target="_blank" rel="noopener">License</a>
</nav>
<nav class="footer-col" aria-label="Documentation">
<h4 class="mono">Docs</h4>
<a href="https://github.com/Paca-AI/paca/blob/master/docs/guides/getting-started.md" target="_blank" rel="noopener">Getting started</a>
<a href="https://github.com/Paca-AI/paca/blob/master/docs/architecture/overview.md" target="_blank" rel="noopener">Architecture</a>
<a href="https://github.com/Paca-AI/paca/blob/master/docs/guides/mcp-server-setup.md" target="_blank" rel="noopener">MCP server</a>
<a href="https://github.com/Paca-AI/paca/blob/master/docs/guides/claude-code-skill.md" target="_blank" rel="noopener">Claude Code skill</a>
</nav>
<nav class="footer-col" aria-label="Community">
<h4 class="mono">Community</h4>
<a href="https://github.com/Paca-AI/paca/blob/master/CONTRIBUTING.md" target="_blank" rel="noopener">Contributing</a>
<a href="https://github.com/Paca-AI/paca/blob/master/CODE_OF_CONDUCT.md" target="_blank" rel="noopener">Code of conduct</a>
<a href="https://github.com/Paca-AI/paca/blob/master/SECURITY.md" target="_blank" rel="noopener">Security</a>
</nav>
</div>
<div class="footer-base">
<span class="mono">Apache-2.0 · © 2026 the Paca contributors</span>
<span class="mono footer-jp" aria-hidden="true">ばか ✦ silly, on purpose</span>
</div>
</div>
</footer>
<!-- GSAP -->
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/ScrollTrigger.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/SplitText.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/Flip.min.js"></script>
<script src="js/board-demo.js"></script>
<script src="js/whats-new.js"></script>
<script src="js/cycle.js"></script>
<script src="js/main.js"></script>
</body>
</html>