chapterhouse 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +23 -0
- package/README.md +363 -0
- package/agents/chapterhouse.agent.md +40 -0
- package/agents/coder.agent.md +38 -0
- package/agents/designer.agent.md +43 -0
- package/agents/general-purpose.agent.md +30 -0
- package/dist/api/auth.js +159 -0
- package/dist/api/auth.test.js +463 -0
- package/dist/api/errors.js +95 -0
- package/dist/api/errors.test.js +89 -0
- package/dist/api/rate-limit.js +85 -0
- package/dist/api/server-runtime.js +62 -0
- package/dist/api/server.js +651 -0
- package/dist/api/server.test.js +385 -0
- package/dist/api/sse.integration.test.js +270 -0
- package/dist/api/sse.js +7 -0
- package/dist/api/team.js +196 -0
- package/dist/api/team.test.js +466 -0
- package/dist/cli.js +102 -0
- package/dist/config.js +299 -0
- package/dist/config.phase3.test.js +20 -0
- package/dist/config.test.js +148 -0
- package/dist/copilot/agents.js +447 -0
- package/dist/copilot/agents.squad.test.js +72 -0
- package/dist/copilot/classifier.js +72 -0
- package/dist/copilot/client.js +32 -0
- package/dist/copilot/client.test.js +100 -0
- package/dist/copilot/episode-writer.js +219 -0
- package/dist/copilot/episode-writer.test.js +41 -0
- package/dist/copilot/mcp-config.js +22 -0
- package/dist/copilot/okr-mapper.js +196 -0
- package/dist/copilot/okr-mapper.test.js +114 -0
- package/dist/copilot/orchestrator.js +685 -0
- package/dist/copilot/orchestrator.test.js +523 -0
- package/dist/copilot/router.js +142 -0
- package/dist/copilot/router.test.js +119 -0
- package/dist/copilot/skills.js +125 -0
- package/dist/copilot/standup.js +138 -0
- package/dist/copilot/standup.test.js +132 -0
- package/dist/copilot/system-message.js +143 -0
- package/dist/copilot/system-message.test.js +17 -0
- package/dist/copilot/tools.js +1212 -0
- package/dist/copilot/tools.okr.test.js +260 -0
- package/dist/copilot/tools.squad.test.js +168 -0
- package/dist/daemon.js +235 -0
- package/dist/home-path.js +12 -0
- package/dist/home-path.test.js +11 -0
- package/dist/integrations/ado-analytics.js +178 -0
- package/dist/integrations/ado-analytics.test.js +284 -0
- package/dist/integrations/ado-client.js +227 -0
- package/dist/integrations/ado-client.test.js +176 -0
- package/dist/integrations/ado-schema.js +25 -0
- package/dist/integrations/ado-schema.test.js +39 -0
- package/dist/integrations/ado-skill.js +55 -0
- package/dist/integrations/report-generator.js +114 -0
- package/dist/integrations/report-generator.test.js +62 -0
- package/dist/integrations/team-push.js +144 -0
- package/dist/integrations/team-push.test.js +178 -0
- package/dist/integrations/teams-notify.js +108 -0
- package/dist/integrations/teams-notify.test.js +135 -0
- package/dist/paths.js +41 -0
- package/dist/setup.js +149 -0
- package/dist/shutdown-signals.js +13 -0
- package/dist/shutdown-signals.test.js +33 -0
- package/dist/squad/charter.js +108 -0
- package/dist/squad/charter.test.js +89 -0
- package/dist/squad/context.js +48 -0
- package/dist/squad/context.test.js +59 -0
- package/dist/squad/discovery.js +280 -0
- package/dist/squad/discovery.test.js +93 -0
- package/dist/squad/index.js +7 -0
- package/dist/squad/mirror.js +81 -0
- package/dist/squad/mirror.scheduler.js +78 -0
- package/dist/squad/mirror.scheduler.test.js +197 -0
- package/dist/squad/mirror.test.js +172 -0
- package/dist/squad/registry.js +162 -0
- package/dist/squad/registry.test.js +31 -0
- package/dist/squad/squad-coordinator-system-message.test.js +190 -0
- package/dist/squad/squad-session-routing.test.js +260 -0
- package/dist/squad/types.js +4 -0
- package/dist/status.js +25 -0
- package/dist/status.test.js +22 -0
- package/dist/store/db.js +290 -0
- package/dist/store/db.test.js +126 -0
- package/dist/store/squad-sessions.test.js +341 -0
- package/dist/test/setup-env.js +3 -0
- package/dist/update.js +112 -0
- package/dist/update.test.js +25 -0
- package/dist/wiki/context.js +138 -0
- package/dist/wiki/fs.js +195 -0
- package/dist/wiki/fs.test.js +39 -0
- package/dist/wiki/index-manager.js +359 -0
- package/dist/wiki/index-manager.test.js +129 -0
- package/dist/wiki/lock.js +26 -0
- package/dist/wiki/lock.test.js +30 -0
- package/dist/wiki/log-manager.js +20 -0
- package/dist/wiki/migrate.js +306 -0
- package/dist/wiki/okr.test.js +101 -0
- package/dist/wiki/path-utils.js +4 -0
- package/dist/wiki/path-utils.test.js +8 -0
- package/dist/wiki/seed-team-wiki.js +296 -0
- package/dist/wiki/seed-team-wiki.test.js +69 -0
- package/dist/wiki/team-sync.js +212 -0
- package/dist/wiki/team-sync.test.js +185 -0
- package/dist/wiki/templates/okr.js +98 -0
- package/package.json +72 -0
- package/skills/.gitkeep +0 -0
- package/skills/find-skills/SKILL.md +161 -0
- package/skills/find-skills/_meta.json +4 -0
- package/skills/frontend-design/LICENSE.txt +177 -0
- package/skills/frontend-design/SKILL.md +42 -0
- package/skills/squad/SKILL.md +76 -0
- package/web/dist/assets/index-D-e7K-fT.css +10 -0
- package/web/dist/assets/index-DAg9IrpO.js +142 -0
- package/web/dist/assets/index-DAg9IrpO.js.map +1 -0
- package/web/dist/chapterhouse-icon.png +0 -0
- package/web/dist/chapterhouse-icon.svg +42 -0
- package/web/dist/chapterhouse-logo.svg +46 -0
- package/web/dist/index.html +15 -0
|
Binary file
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width="512px" height="512px" viewBox="0 0 1024.000000 1024.000000"
|
|
5
|
+
preserveAspectRatio="xMidYMid meet">
|
|
6
|
+
<g transform="translate(0.000000,1024.000000) scale(0.100000,-0.100000)"
|
|
7
|
+
fill="#000000" stroke="none">
|
|
8
|
+
<path d="M4960 9676 c-415 -143 -684 -258 -935 -401 -530 -300 -969 -739
|
|
9
|
+
-1277 -1275 -48 -83 -186 -364 -231 -471 -214 -503 -382 -1155 -491 -1909 -25
|
|
10
|
+
-172 -73 -606 -101 -909 -18 -192 -32 -297 -43 -325 -26 -62 -23 -283 6 -397
|
|
11
|
+
60 -245 205 -461 414 -621 210 -159 1006 -662 2143 -1354 171 -103 359 -219
|
|
12
|
+
419 -256 61 -37 111 -66 112 -65 0 1 4 93 7 203 l7 201 -138 89 c-1118 717
|
|
13
|
+
-1361 893 -1692 1224 -310 308 -521 598 -681 934 l-43 89 23 116 c153 766 339
|
|
14
|
+
1417 543 1901 124 292 221 475 384 720 363 548 813 926 1287 1079 165 53 285
|
|
15
|
+
72 459 72 387 -1 725 -134 1098 -435 374 -300 717 -766 974 -1323 189 -411
|
|
16
|
+
370 -945 501 -1478 75 -306 135 -591 135 -637 0 -42 -126 -283 -230 -442 -235
|
|
17
|
+
-357 -579 -709 -990 -1013 -191 -141 -910 -610 -1348 -880 -22 -13 -22 -17
|
|
18
|
+
-17 -141 3 -70 8 -160 11 -200 l6 -73 31 19 c1632 987 1897 1152 2432 1508
|
|
19
|
+
293 194 386 276 482 419 136 203 213 512 172 695 -5 25 -21 158 -34 295 -145
|
|
20
|
+
1479 -314 2250 -669 3036 -345 763 -942 1369 -1711 1735 -218 103 -739 303
|
|
21
|
+
-833 319 -17 3 -85 -15 -182 -49z"/>
|
|
22
|
+
<path d="M4980 8023 c-340 -53 -638 -216 -949 -518 -269 -261 -478 -558 -666
|
|
23
|
+
-947 -226 -470 -340 -838 -599 -1933 l-32 -139 31 -56 c171 -301 440 -643 691
|
|
24
|
+
-876 373 -346 658 -546 1512 -1058 149 -89 166 -97 189 -87 56 26 741 443 918
|
|
25
|
+
558 645 424 1058 839 1385 1389 l68 114 -15 62 c-297 1232 -477 1764 -768
|
|
26
|
+
2268 -442 767 -1065 1236 -1634 1229 -58 -1 -117 -3 -131 -6z m539 -1618 c240
|
|
27
|
+
-33 519 -104 772 -197 l137 -50 6 -36 c9 -59 7 -427 -4 -547 -35 -383 -109
|
|
28
|
+
-677 -235 -932 -144 -289 -338 -491 -589 -613 -294 -143 -674 -147 -969 -10
|
|
29
|
+
-376 174 -636 555 -756 1105 -65 301 -96 701 -75 957 8 87 -18 69 224 152 310
|
|
30
|
+
107 549 157 895 190 90 9 487 -4 594 -19z"/>
|
|
31
|
+
<path d="M8019 3076 c-19 -12 -64 -42 -100 -67 -242 -174 -693 -461 -1749
|
|
32
|
+
-1114 -434 -268 -771 -478 -845 -527 l-50 -33 -3 -427 -2 -428 27 5 c16 3 105
|
|
33
|
+
14 198 25 924 112 2005 371 2854 684 511 189 999 430 1018 504 10 40 -16 208
|
|
34
|
+
-47 303 -50 151 -128 288 -238 416 -141 163 -497 416 -838 595 -167 87 -179
|
|
35
|
+
90 -225 64z"/>
|
|
36
|
+
<path d="M2095 3044 c-300 -153 -714 -433 -872 -592 -198 -198 -313 -435 -339
|
|
37
|
+
-692 -6 -67 -6 -70 22 -95 41 -39 196 -128 338 -195 748 -355 1928 -700 3037
|
|
38
|
+
-889 198 -34 690 -103 695 -98 2 2 1 194 -3 427 l-6 423 -126 82 c-69 45 -209
|
|
39
|
+
133 -311 197 -102 63 -297 186 -435 273 -137 87 -376 236 -530 333 -594 371
|
|
40
|
+
-963 612 -1258 817 -43 30 -88 55 -100 55 -12 0 -62 -21 -112 -46z"/>
|
|
41
|
+
</g>
|
|
42
|
+
</svg>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 100" width="400" height="100">
|
|
2
|
+
<!--
|
|
3
|
+
Chapterhouse Logo Lockup
|
|
4
|
+
Icon mark + wordmark
|
|
5
|
+
-->
|
|
6
|
+
<defs>
|
|
7
|
+
<linearGradient id="logo-arch" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
8
|
+
<stop offset="0%" stop-color="#1B6EC2"/>
|
|
9
|
+
<stop offset="100%" stop-color="#0F4A84"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
<linearGradient id="logo-node" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
12
|
+
<stop offset="0%" stop-color="#E8A838"/>
|
|
13
|
+
<stop offset="100%" stop-color="#D4882A"/>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
</defs>
|
|
16
|
+
|
|
17
|
+
<!-- Icon mark (scaled to fit ~80x80 within 10px padding) -->
|
|
18
|
+
<g transform="translate(10, 10) scale(0.15625)">
|
|
19
|
+
<!-- Left rib -->
|
|
20
|
+
<path d="M 128 440 C 128 280, 200 160, 256 80" fill="none" stroke="url(#logo-arch)" stroke-width="36" stroke-linecap="round"/>
|
|
21
|
+
<!-- Right rib -->
|
|
22
|
+
<path d="M 384 440 C 384 280, 312 160, 256 80" fill="none" stroke="url(#logo-arch)" stroke-width="36" stroke-linecap="round"/>
|
|
23
|
+
<!-- Cross ribs -->
|
|
24
|
+
<path d="M 160 340 Q 256 300, 352 340" fill="none" stroke="url(#logo-arch)" stroke-width="20" stroke-linecap="round" opacity="0.7"/>
|
|
25
|
+
<path d="M 185 260 Q 256 230, 327 260" fill="none" stroke="url(#logo-arch)" stroke-width="16" stroke-linecap="round" opacity="0.55"/>
|
|
26
|
+
<!-- Nodes -->
|
|
27
|
+
<circle cx="256" cy="80" r="28" fill="url(#logo-node)"/>
|
|
28
|
+
<circle cx="185" cy="260" r="18" fill="url(#logo-node)" opacity="0.9"/>
|
|
29
|
+
<circle cx="327" cy="260" r="18" fill="url(#logo-node)" opacity="0.9"/>
|
|
30
|
+
<circle cx="160" cy="340" r="16" fill="url(#logo-node)" opacity="0.8"/>
|
|
31
|
+
<circle cx="352" cy="340" r="16" fill="url(#logo-node)" opacity="0.8"/>
|
|
32
|
+
<circle cx="128" cy="440" r="22" fill="url(#logo-node)"/>
|
|
33
|
+
<circle cx="384" cy="440" r="22" fill="url(#logo-node)"/>
|
|
34
|
+
<!-- Central hub -->
|
|
35
|
+
<circle cx="256" cy="300" r="24" fill="url(#logo-arch)" stroke="url(#logo-node)" stroke-width="6"/>
|
|
36
|
+
<!-- Hub connections -->
|
|
37
|
+
<line x1="256" y1="300" x2="185" y2="260" stroke="url(#logo-node)" stroke-width="6" stroke-linecap="round" opacity="0.6"/>
|
|
38
|
+
<line x1="256" y1="300" x2="327" y2="260" stroke="url(#logo-node)" stroke-width="6" stroke-linecap="round" opacity="0.6"/>
|
|
39
|
+
<line x1="256" y1="300" x2="160" y2="340" stroke="url(#logo-node)" stroke-width="6" stroke-linecap="round" opacity="0.6"/>
|
|
40
|
+
<line x1="256" y1="300" x2="352" y2="340" stroke="url(#logo-node)" stroke-width="6" stroke-linecap="round" opacity="0.6"/>
|
|
41
|
+
<line x1="256" y1="300" x2="256" y2="80" stroke="url(#logo-node)" stroke-width="6" stroke-linecap="round" opacity="0.4"/>
|
|
42
|
+
</g>
|
|
43
|
+
|
|
44
|
+
<!-- Wordmark -->
|
|
45
|
+
<text x="105" y="60" font-family="Segoe UI, -apple-system, BlinkMacSystemFont, sans-serif" font-size="32" font-weight="600" fill="#0F4A84" letter-spacing="-0.5">Chapterhouse</text>
|
|
46
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/chapterhouse-icon.svg" />
|
|
6
|
+
<link rel="icon" type="image/png" href="/chapterhouse-icon.png" />
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
8
|
+
<title>Chapterhouse</title>
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-DAg9IrpO.js"></script>
|
|
10
|
+
<link rel="stylesheet" crossorigin href="/assets/index-D-e7K-fT.css">
|
|
11
|
+
</head>
|
|
12
|
+
<body>
|
|
13
|
+
<div id="root"></div>
|
|
14
|
+
</body>
|
|
15
|
+
</html>
|