@beastmode-develeap/beastmode 0.1.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.
- package/README.md +94 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +9802 -0
- package/dist/index.js.map +1 -0
- package/dist/methodologies/bmad.json +40 -0
- package/dist/methodologies/lean-startup.json +32 -0
- package/dist/methodologies/traditional-prd.json +40 -0
- package/dist/web/board.html +5660 -0
- package/dist/web/develeap-icon.png +0 -0
- package/dist/web/develeap-logo.png +0 -0
- package/dist/web/favicon.svg +25 -0
- package/dist/web/index.html +1241 -0
- package/dist/web/logo-dark.svg +30 -0
- package/dist/web/logo-full.svg +48 -0
- package/dist/web/logo-horizontal.svg +46 -0
- package/dist/web/logo-icon.svg +53 -0
- package/dist/web/logo-light.svg +30 -0
- package/package.json +62 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<svg viewBox="0 0 400 320" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g transform="translate(200,130)">
|
|
3
|
+
<rect fill="#f0f0f0" x="-52" y="8" width="62" height="56" rx="2"/>
|
|
4
|
+
<rect fill="#f0f0f0" x="12" y="-12" width="44" height="76" rx="2"/>
|
|
5
|
+
<rect fill="#f0f0f0" x="20" y="-50" width="13" height="42" rx="1.5"/>
|
|
6
|
+
<rect fill="#f0f0f0" x="39" y="-32" width="10" height="24" rx="1.5"/>
|
|
7
|
+
<rect fill="#141414" x="-43" y="18" width="10" height="9" rx="1"/>
|
|
8
|
+
<rect fill="#141414" x="-28" y="18" width="10" height="9" rx="1"/>
|
|
9
|
+
<rect fill="#141414" x="-43" y="34" width="10" height="9" rx="1"/>
|
|
10
|
+
<rect fill="#141414" x="-28" y="34" width="10" height="9" rx="1"/>
|
|
11
|
+
<rect fill="#141414" x="20" y="0" width="10" height="10" rx="1"/>
|
|
12
|
+
<rect fill="#141414" x="38" y="0" width="10" height="10" rx="1"/>
|
|
13
|
+
<rect fill="#141414" x="20" y="18" width="10" height="10" rx="1"/>
|
|
14
|
+
<rect fill="#141414" x="38" y="18" width="10" height="10" rx="1"/>
|
|
15
|
+
<rect fill="#f0f0f0" x="-58" y="64" width="120" height="3" rx="1.5"/>
|
|
16
|
+
<line stroke="#F5A623" fill="none" x1="26" y1="-54" x2="26" y2="-98" stroke-width="3.5" stroke-linecap="round"/>
|
|
17
|
+
<polygon fill="#F5A623" points="26,-98 17,-82 35,-82"/>
|
|
18
|
+
<line stroke="#F5A623" fill="none" x1="14" y1="-56" x2="5" y2="-80" stroke-width="1.8" stroke-linecap="round"/>
|
|
19
|
+
<polygon fill="#F5A623" points="5,-80 0,-70 10,-70"/>
|
|
20
|
+
<line stroke="#F5A623" fill="none" x1="40" y1="-46" x2="48" y2="-72" stroke-width="1.8" stroke-linecap="round"/>
|
|
21
|
+
<polygon fill="#F5A623" points="48,-72 43,-62 53,-62"/>
|
|
22
|
+
<circle fill="#F5A623" cx="26" cy="-108" r="3"/>
|
|
23
|
+
<circle fill="#F5A623" cx="0" cy="-86" r="1.8"/>
|
|
24
|
+
<circle fill="#F5A623" cx="53" cy="-78" r="1.8"/>
|
|
25
|
+
<circle fill="#F5A623" cx="13" cy="-96" r="1.5"/>
|
|
26
|
+
<circle fill="#F5A623" cx="42" cy="-88" r="1.3"/>
|
|
27
|
+
</g>
|
|
28
|
+
<text fill="#f0f0f0" x="200" y="255" text-anchor="middle" font-family="system-ui,-apple-system,sans-serif" font-size="30" font-weight="500" letter-spacing="7">BEASTMODE</text>
|
|
29
|
+
<text fill="#666" x="200" y="280" text-anchor="middle" font-family="system-ui,-apple-system,sans-serif" font-size="11" letter-spacing="4">DARK FACTORY</text>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<svg viewBox="0 0 400 320" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<style>
|
|
3
|
+
@media (prefers-color-scheme: dark) {
|
|
4
|
+
.body { fill: #f0f0f0; }
|
|
5
|
+
.win { fill: #141414; }
|
|
6
|
+
.amber { fill: #F5A623; }
|
|
7
|
+
.amber-s { stroke: #F5A623; fill: none; }
|
|
8
|
+
.wm { fill: #f0f0f0; }
|
|
9
|
+
.sub { fill: #666; }
|
|
10
|
+
}
|
|
11
|
+
@media (prefers-color-scheme: light) {
|
|
12
|
+
.body { fill: #1a1a1a; }
|
|
13
|
+
.win { fill: #f5f5f5; }
|
|
14
|
+
.amber { fill: #F5A623; }
|
|
15
|
+
.amber-s { stroke: #F5A623; fill: none; }
|
|
16
|
+
.wm { fill: #1a1a1a; }
|
|
17
|
+
.sub { fill: #999; }
|
|
18
|
+
}
|
|
19
|
+
</style>
|
|
20
|
+
<g transform="translate(200,130)">
|
|
21
|
+
<rect class="body" x="-52" y="8" width="62" height="56" rx="2"/>
|
|
22
|
+
<rect class="body" x="12" y="-12" width="44" height="76" rx="2"/>
|
|
23
|
+
<rect class="body" x="20" y="-50" width="13" height="42" rx="1.5"/>
|
|
24
|
+
<rect class="body" x="39" y="-32" width="10" height="24" rx="1.5"/>
|
|
25
|
+
<rect class="win" x="-43" y="18" width="10" height="9" rx="1"/>
|
|
26
|
+
<rect class="win" x="-28" y="18" width="10" height="9" rx="1"/>
|
|
27
|
+
<rect class="win" x="-43" y="34" width="10" height="9" rx="1"/>
|
|
28
|
+
<rect class="win" x="-28" y="34" width="10" height="9" rx="1"/>
|
|
29
|
+
<rect class="win" x="20" y="0" width="10" height="10" rx="1"/>
|
|
30
|
+
<rect class="win" x="38" y="0" width="10" height="10" rx="1"/>
|
|
31
|
+
<rect class="win" x="20" y="18" width="10" height="10" rx="1"/>
|
|
32
|
+
<rect class="win" x="38" y="18" width="10" height="10" rx="1"/>
|
|
33
|
+
<rect class="body" x="-58" y="64" width="120" height="3" rx="1.5"/>
|
|
34
|
+
<line class="amber-s" x1="26" y1="-54" x2="26" y2="-98" stroke-width="3.5" stroke-linecap="round"/>
|
|
35
|
+
<polygon class="amber" points="26,-98 17,-82 35,-82"/>
|
|
36
|
+
<line class="amber-s" x1="14" y1="-56" x2="5" y2="-80" stroke-width="1.8" stroke-linecap="round"/>
|
|
37
|
+
<polygon class="amber" points="5,-80 0,-70 10,-70"/>
|
|
38
|
+
<line class="amber-s" x1="40" y1="-46" x2="48" y2="-72" stroke-width="1.8" stroke-linecap="round"/>
|
|
39
|
+
<polygon class="amber" points="48,-72 43,-62 53,-62"/>
|
|
40
|
+
<circle class="amber" cx="26" cy="-108" r="3"/>
|
|
41
|
+
<circle class="amber" cx="0" cy="-86" r="1.8"/>
|
|
42
|
+
<circle class="amber" cx="53" cy="-78" r="1.8"/>
|
|
43
|
+
<circle class="amber" cx="13" cy="-96" r="1.5"/>
|
|
44
|
+
<circle class="amber" cx="42" cy="-88" r="1.3"/>
|
|
45
|
+
</g>
|
|
46
|
+
<text class="wm" x="200" y="255" text-anchor="middle" font-family="system-ui,-apple-system,sans-serif" font-size="30" font-weight="500" letter-spacing="7">BEASTMODE</text>
|
|
47
|
+
<text class="sub" x="200" y="280" text-anchor="middle" font-family="system-ui,-apple-system,sans-serif" font-size="11" letter-spacing="4">DARK FACTORY</text>
|
|
48
|
+
</svg>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<svg viewBox="0 0 520 80" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<style>
|
|
3
|
+
@media (prefers-color-scheme: dark) {
|
|
4
|
+
.body { fill: #f0f0f0; }
|
|
5
|
+
.win { fill: #141414; }
|
|
6
|
+
.amber { fill: #F5A623; }
|
|
7
|
+
.amber-s { stroke: #F5A623; fill: none; }
|
|
8
|
+
.wm { fill: #f0f0f0; }
|
|
9
|
+
.sub { fill: #555; }
|
|
10
|
+
}
|
|
11
|
+
@media (prefers-color-scheme: light) {
|
|
12
|
+
.body { fill: #1a1a1a; }
|
|
13
|
+
.win { fill: #f5f5f5; }
|
|
14
|
+
.amber { fill: #F5A623; }
|
|
15
|
+
.amber-s { stroke: #F5A623; fill: none; }
|
|
16
|
+
.wm { fill: #1a1a1a; }
|
|
17
|
+
.sub { fill: #999; }
|
|
18
|
+
}
|
|
19
|
+
</style>
|
|
20
|
+
<g transform="translate(45,48) scale(0.3)">
|
|
21
|
+
<rect class="body" x="-52" y="8" width="62" height="56" rx="2"/>
|
|
22
|
+
<rect class="body" x="12" y="-12" width="44" height="76" rx="2"/>
|
|
23
|
+
<rect class="body" x="20" y="-50" width="13" height="42" rx="1.5"/>
|
|
24
|
+
<rect class="body" x="39" y="-32" width="10" height="24" rx="1.5"/>
|
|
25
|
+
<rect class="win" x="-43" y="18" width="10" height="9" rx="1"/>
|
|
26
|
+
<rect class="win" x="-28" y="18" width="10" height="9" rx="1"/>
|
|
27
|
+
<rect class="win" x="-43" y="34" width="10" height="9" rx="1"/>
|
|
28
|
+
<rect class="win" x="-28" y="34" width="10" height="9" rx="1"/>
|
|
29
|
+
<rect class="win" x="20" y="0" width="10" height="10" rx="1"/>
|
|
30
|
+
<rect class="win" x="38" y="0" width="10" height="10" rx="1"/>
|
|
31
|
+
<rect class="win" x="20" y="18" width="10" height="10" rx="1"/>
|
|
32
|
+
<rect class="win" x="38" y="18" width="10" height="10" rx="1"/>
|
|
33
|
+
<rect class="body" x="-58" y="64" width="120" height="3" rx="1.5"/>
|
|
34
|
+
<line class="amber-s" x1="26" y1="-54" x2="26" y2="-90" stroke-width="3.5" stroke-linecap="round"/>
|
|
35
|
+
<polygon class="amber" points="26,-90 18,-76 34,-76"/>
|
|
36
|
+
<line class="amber-s" x1="14" y1="-56" x2="6" y2="-76" stroke-width="1.8" stroke-linecap="round"/>
|
|
37
|
+
<polygon class="amber" points="6,-76 1,-67 11,-67"/>
|
|
38
|
+
<line class="amber-s" x1="40" y1="-46" x2="47" y2="-68" stroke-width="1.8" stroke-linecap="round"/>
|
|
39
|
+
<polygon class="amber" points="47,-68 42,-59 52,-59"/>
|
|
40
|
+
<circle class="amber" cx="26" cy="-98" r="2.5"/>
|
|
41
|
+
<circle class="amber" cx="0" cy="-82" r="1.5"/>
|
|
42
|
+
<circle class="amber" cx="52" cy="-74" r="1.5"/>
|
|
43
|
+
</g>
|
|
44
|
+
<text class="wm" x="90" y="44" font-family="system-ui,-apple-system,sans-serif" font-size="26" font-weight="500" letter-spacing="6">BEASTMODE</text>
|
|
45
|
+
<text class="sub" x="90" y="62" font-family="system-ui,-apple-system,sans-serif" font-size="9" letter-spacing="3">DARK FACTORY</text>
|
|
46
|
+
</svg>
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<svg viewBox="0 0 200 220" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<style>
|
|
3
|
+
@media (prefers-color-scheme: dark) {
|
|
4
|
+
.body { fill: #f0f0f0; }
|
|
5
|
+
.win { fill: #141414; }
|
|
6
|
+
.amber { fill: #F5A623; }
|
|
7
|
+
.amber-s { stroke: #F5A623; fill: none; }
|
|
8
|
+
}
|
|
9
|
+
@media (prefers-color-scheme: light) {
|
|
10
|
+
.body { fill: #1a1a1a; }
|
|
11
|
+
.win { fill: #f5f5f5; }
|
|
12
|
+
.amber { fill: #F5A623; }
|
|
13
|
+
.amber-s { stroke: #F5A623; fill: none; }
|
|
14
|
+
}
|
|
15
|
+
</style>
|
|
16
|
+
<g transform="translate(100,130)">
|
|
17
|
+
<!-- Factory left body -->
|
|
18
|
+
<rect class="body" x="-52" y="8" width="62" height="56" rx="2"/>
|
|
19
|
+
<!-- Factory right body (taller) -->
|
|
20
|
+
<rect class="body" x="12" y="-12" width="44" height="76" rx="2"/>
|
|
21
|
+
<!-- Stack tall -->
|
|
22
|
+
<rect class="body" x="20" y="-50" width="13" height="42" rx="1.5"/>
|
|
23
|
+
<!-- Stack short -->
|
|
24
|
+
<rect class="body" x="39" y="-32" width="10" height="24" rx="1.5"/>
|
|
25
|
+
<!-- Windows left -->
|
|
26
|
+
<rect class="win" x="-43" y="18" width="10" height="9" rx="1"/>
|
|
27
|
+
<rect class="win" x="-28" y="18" width="10" height="9" rx="1"/>
|
|
28
|
+
<rect class="win" x="-43" y="34" width="10" height="9" rx="1"/>
|
|
29
|
+
<rect class="win" x="-28" y="34" width="10" height="9" rx="1"/>
|
|
30
|
+
<!-- Windows right -->
|
|
31
|
+
<rect class="win" x="20" y="0" width="10" height="10" rx="1"/>
|
|
32
|
+
<rect class="win" x="38" y="0" width="10" height="10" rx="1"/>
|
|
33
|
+
<rect class="win" x="20" y="18" width="10" height="10" rx="1"/>
|
|
34
|
+
<rect class="win" x="38" y="18" width="10" height="10" rx="1"/>
|
|
35
|
+
<!-- Base -->
|
|
36
|
+
<rect class="body" x="-58" y="64" width="120" height="3" rx="1.5"/>
|
|
37
|
+
<!-- Amber burst: main arrow -->
|
|
38
|
+
<line class="amber-s" x1="26" y1="-54" x2="26" y2="-98" stroke-width="3.5" stroke-linecap="round"/>
|
|
39
|
+
<polygon class="amber" points="26,-98 17,-82 35,-82"/>
|
|
40
|
+
<!-- Left arrow -->
|
|
41
|
+
<line class="amber-s" x1="14" y1="-56" x2="5" y2="-80" stroke-width="1.8" stroke-linecap="round"/>
|
|
42
|
+
<polygon class="amber" points="5,-80 0,-70 10,-70"/>
|
|
43
|
+
<!-- Right arrow -->
|
|
44
|
+
<line class="amber-s" x1="40" y1="-46" x2="48" y2="-72" stroke-width="1.8" stroke-linecap="round"/>
|
|
45
|
+
<polygon class="amber" points="48,-72 43,-62 53,-62"/>
|
|
46
|
+
<!-- Sparks -->
|
|
47
|
+
<circle class="amber" cx="26" cy="-108" r="3"/>
|
|
48
|
+
<circle class="amber" cx="0" cy="-86" r="1.8"/>
|
|
49
|
+
<circle class="amber" cx="53" cy="-78" r="1.8"/>
|
|
50
|
+
<circle class="amber" cx="13" cy="-96" r="1.5"/>
|
|
51
|
+
<circle class="amber" cx="42" cy="-88" r="1.3"/>
|
|
52
|
+
</g>
|
|
53
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<svg viewBox="0 0 400 320" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g transform="translate(200,130)">
|
|
3
|
+
<rect fill="#1a1a1a" x="-52" y="8" width="62" height="56" rx="2"/>
|
|
4
|
+
<rect fill="#1a1a1a" x="12" y="-12" width="44" height="76" rx="2"/>
|
|
5
|
+
<rect fill="#1a1a1a" x="20" y="-50" width="13" height="42" rx="1.5"/>
|
|
6
|
+
<rect fill="#1a1a1a" x="39" y="-32" width="10" height="24" rx="1.5"/>
|
|
7
|
+
<rect fill="#f5f5f5" x="-43" y="18" width="10" height="9" rx="1"/>
|
|
8
|
+
<rect fill="#f5f5f5" x="-28" y="18" width="10" height="9" rx="1"/>
|
|
9
|
+
<rect fill="#f5f5f5" x="-43" y="34" width="10" height="9" rx="1"/>
|
|
10
|
+
<rect fill="#f5f5f5" x="-28" y="34" width="10" height="9" rx="1"/>
|
|
11
|
+
<rect fill="#f5f5f5" x="20" y="0" width="10" height="10" rx="1"/>
|
|
12
|
+
<rect fill="#f5f5f5" x="38" y="0" width="10" height="10" rx="1"/>
|
|
13
|
+
<rect fill="#f5f5f5" x="20" y="18" width="10" height="10" rx="1"/>
|
|
14
|
+
<rect fill="#f5f5f5" x="38" y="18" width="10" height="10" rx="1"/>
|
|
15
|
+
<rect fill="#1a1a1a" x="-58" y="64" width="120" height="3" rx="1.5"/>
|
|
16
|
+
<line stroke="#F5A623" fill="none" x1="26" y1="-54" x2="26" y2="-98" stroke-width="3.5" stroke-linecap="round"/>
|
|
17
|
+
<polygon fill="#F5A623" points="26,-98 17,-82 35,-82"/>
|
|
18
|
+
<line stroke="#F5A623" fill="none" x1="14" y1="-56" x2="5" y2="-80" stroke-width="1.8" stroke-linecap="round"/>
|
|
19
|
+
<polygon fill="#F5A623" points="5,-80 0,-70 10,-70"/>
|
|
20
|
+
<line stroke="#F5A623" fill="none" x1="40" y1="-46" x2="48" y2="-72" stroke-width="1.8" stroke-linecap="round"/>
|
|
21
|
+
<polygon fill="#F5A623" points="48,-72 43,-62 53,-62"/>
|
|
22
|
+
<circle fill="#F5A623" cx="26" cy="-108" r="3"/>
|
|
23
|
+
<circle fill="#F5A623" cx="0" cy="-86" r="1.8"/>
|
|
24
|
+
<circle fill="#F5A623" cx="53" cy="-78" r="1.8"/>
|
|
25
|
+
<circle fill="#F5A623" cx="13" cy="-96" r="1.5"/>
|
|
26
|
+
<circle fill="#F5A623" cx="42" cy="-88" r="1.3"/>
|
|
27
|
+
</g>
|
|
28
|
+
<text fill="#1a1a1a" x="200" y="255" text-anchor="middle" font-family="system-ui,-apple-system,sans-serif" font-size="30" font-weight="500" letter-spacing="7">BEASTMODE</text>
|
|
29
|
+
<text fill="#999" x="200" y="280" text-anchor="middle" font-family="system-ui,-apple-system,sans-serif" font-size="11" letter-spacing="4">DARK FACTORY</text>
|
|
30
|
+
</svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@beastmode-develeap/beastmode",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "BeastMode Dark Factory — turn intent into verified software",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"beastmode": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public",
|
|
11
|
+
"registry": "https://registry.npmjs.org/"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist/",
|
|
15
|
+
"public/",
|
|
16
|
+
"views/",
|
|
17
|
+
"package.json",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup",
|
|
22
|
+
"dev": "tsup --watch",
|
|
23
|
+
"test": "vitest run",
|
|
24
|
+
"test:watch": "vitest",
|
|
25
|
+
"lint": "tsc --noEmit",
|
|
26
|
+
"prepublishOnly": "npm run build"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"ai",
|
|
30
|
+
"cli",
|
|
31
|
+
"automation",
|
|
32
|
+
"pipeline",
|
|
33
|
+
"dark-factory"
|
|
34
|
+
],
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=20.0.0"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@anthropic-ai/sdk": "^0.80.0",
|
|
41
|
+
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
42
|
+
"@types/ws": "^8.18.1",
|
|
43
|
+
"chalk": "^5.6.2",
|
|
44
|
+
"commander": "^13.1.0",
|
|
45
|
+
"fs-extra": "^11.3.4",
|
|
46
|
+
"inquirer": "^12.11.1",
|
|
47
|
+
"open": "^10.2.0",
|
|
48
|
+
"ora": "^8.2.0",
|
|
49
|
+
"semver": "^7.7.4",
|
|
50
|
+
"ws": "^8.20.0",
|
|
51
|
+
"zod": "^3.25.76"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/fs-extra": "^11.0.4",
|
|
55
|
+
"@types/inquirer": "^9.0.9",
|
|
56
|
+
"@types/node": "^22.19.15",
|
|
57
|
+
"@types/semver": "^7.7.1",
|
|
58
|
+
"tsup": "^8.5.1",
|
|
59
|
+
"typescript": "^5.9.3",
|
|
60
|
+
"vitest": "^3.2.4"
|
|
61
|
+
}
|
|
62
|
+
}
|