orchestrion 0.0.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.
@@ -0,0 +1,10 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(npm view:*)",
5
+ "Bash(for name in orchestrai orchestr-ai orchest-ai orchesstrai orchestraai orchestra-i orchestrium orchestrion orchestrix orchestraid orchestraiq orchestraize orchestraide)",
6
+ "Bash(do echo -n \"$name: \")",
7
+ "Bash(done)"
8
+ ]
9
+ }
10
+ }
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ <p align="center">
2
+ <img src="assets/logo.svg" alt="orchestrion" width="600" />
3
+ </p>
4
+
5
+ <p align="center">
6
+ Orchestrate AI agents into collaborative swarms.
7
+ </p>
8
+
9
+ ---
10
+
11
+ ## Install
12
+
13
+ ```bash
14
+ npm install orchestrion
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ ```bash
20
+ npx orchestrion
21
+ ```
@@ -0,0 +1,64 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 200" width="600" height="200">
2
+ <defs>
3
+ <linearGradient id="glow" x1="0%" y1="0%" x2="100%" y2="100%">
4
+ <stop offset="0%" style="stop-color:#6366f1"/>
5
+ <stop offset="50%" style="stop-color:#8b5cf6"/>
6
+ <stop offset="100%" style="stop-color:#a78bfa"/>
7
+ </linearGradient>
8
+ <linearGradient id="accent" x1="0%" y1="0%" x2="100%" y2="0%">
9
+ <stop offset="0%" style="stop-color:#8b5cf6"/>
10
+ <stop offset="100%" style="stop-color:#c084fc"/>
11
+ </linearGradient>
12
+ <filter id="shadow" x="-5%" y="-5%" width="110%" height="120%">
13
+ <feDropShadow dx="0" dy="2" stdDeviation="3" flood-color="#6366f1" flood-opacity="0.3"/>
14
+ </filter>
15
+ </defs>
16
+
17
+ <!-- Icon: Orchestrion - stylized conductor nodes in a network -->
18
+ <g transform="translate(45, 100)" filter="url(#shadow)">
19
+ <!-- Connection lines (swarm network) -->
20
+ <line x1="0" y1="0" x2="35" y2="-35" stroke="url(#accent)" stroke-width="2" opacity="0.5"/>
21
+ <line x1="0" y1="0" x2="40" y2="10" stroke="url(#accent)" stroke-width="2" opacity="0.5"/>
22
+ <line x1="0" y1="0" x2="25" y2="38" stroke="url(#accent)" stroke-width="2" opacity="0.5"/>
23
+ <line x1="0" y1="0" x2="-30" y2="-28" stroke="url(#accent)" stroke-width="2" opacity="0.5"/>
24
+ <line x1="0" y1="0" x2="-35" y2="20" stroke="url(#accent)" stroke-width="2" opacity="0.5"/>
25
+ <line x1="35" y1="-35" x2="40" y2="10" stroke="url(#accent)" stroke-width="1.5" opacity="0.3"/>
26
+ <line x1="40" y1="10" x2="25" y2="38" stroke="url(#accent)" stroke-width="1.5" opacity="0.3"/>
27
+ <line x1="-30" y1="-28" x2="-35" y2="20" stroke="url(#accent)" stroke-width="1.5" opacity="0.3"/>
28
+
29
+ <!-- Central conductor node -->
30
+ <circle cx="0" cy="0" r="12" fill="url(#glow)"/>
31
+ <circle cx="0" cy="0" r="7" fill="#1e1b4b" opacity="0.6"/>
32
+ <circle cx="0" cy="0" r="4" fill="#c4b5fd"/>
33
+
34
+ <!-- Orbiting agent nodes -->
35
+ <circle cx="35" cy="-35" r="7" fill="url(#glow)" opacity="0.9"/>
36
+ <circle cx="35" cy="-35" r="3.5" fill="#c4b5fd"/>
37
+
38
+ <circle cx="40" cy="10" r="7" fill="url(#glow)" opacity="0.9"/>
39
+ <circle cx="40" cy="10" r="3.5" fill="#c4b5fd"/>
40
+
41
+ <circle cx="25" cy="38" r="7" fill="url(#glow)" opacity="0.9"/>
42
+ <circle cx="25" cy="38" r="3.5" fill="#c4b5fd"/>
43
+
44
+ <circle cx="-30" cy="-28" r="7" fill="url(#glow)" opacity="0.9"/>
45
+ <circle cx="-30" cy="-28" r="3.5" fill="#c4b5fd"/>
46
+
47
+ <circle cx="-35" cy="20" r="7" fill="url(#glow)" opacity="0.9"/>
48
+ <circle cx="-35" cy="20" r="3.5" fill="#c4b5fd"/>
49
+
50
+ <!-- Pulse rings on central node -->
51
+ <circle cx="0" cy="0" r="18" fill="none" stroke="#8b5cf6" stroke-width="1" opacity="0.25"/>
52
+ <circle cx="0" cy="0" r="28" fill="none" stroke="#8b5cf6" stroke-width="0.7" opacity="0.12"/>
53
+ </g>
54
+
55
+ <!-- Wordmark -->
56
+ <text x="115" y="112" font-family="'SF Pro Display', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif" font-size="52" font-weight="700" letter-spacing="-1" fill="#e2e8f0">
57
+ orchestr<tspan fill="url(#glow)">ion</tspan>
58
+ </text>
59
+
60
+ <!-- Tagline -->
61
+ <text x="117" y="138" font-family="'SF Mono', 'Fira Code', 'Consolas', monospace" font-size="14" fill="#94a3b8" letter-spacing="3">
62
+ AI AGENT ORCHESTRATION
63
+ </text>
64
+ </svg>
Binary file
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "orchestrion",
3
+ "version": "0.0.2",
4
+ "type": "module",
5
+ "bin": {
6
+ "orchestra": "./src/index.js"
7
+ },
8
+ "engines": {
9
+ "node": ">=18"
10
+ },
11
+ "scripts": {
12
+ "test": "node --test tests/**/*.test.js",
13
+ "start": "node src/index.js"
14
+ },
15
+ "dependencies": {
16
+ "ink": "^5.1.0",
17
+ "@inkjs/ui": "^2.0.0",
18
+ "react": "^18.3.0"
19
+ }
20
+ }