diragent 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 +57 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +1621 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/client/index.d.ts +63 -0
- package/dist/client/index.js +145 -0
- package/dist/client/index.js.map +1 -0
- package/dist/index.d.ts +256 -0
- package/dist/index.js +879 -0
- package/dist/index.js.map +1 -0
- package/dist/server/index.d.ts +8 -0
- package/dist/server/index.js +861 -0
- package/dist/server/index.js.map +1 -0
- package/package.json +90 -0
- package/scripts/install.sh +67 -0
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Dirigent
|
|
2
|
+
|
|
3
|
+
> AI Agent Orchestration Platform
|
|
4
|
+
|
|
5
|
+
Enterprise-grade orchestration for AI coding agents. Self-hosted, simple to deploy, powerful to scale.
|
|
6
|
+
|
|
7
|
+
## Quick Start
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
curl -fsSL https://get.dirigent.dev | bash
|
|
11
|
+
diragent init
|
|
12
|
+
diragent up
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Features
|
|
16
|
+
|
|
17
|
+
- π€ **Multi-Agent Orchestration** - Spawn, monitor, and coordinate AI agents
|
|
18
|
+
- π’ **Enterprise Ready** - Role-based access, audit logs, compliance controls
|
|
19
|
+
- π **Self-Hosted** - Your infrastructure, your data, your control
|
|
20
|
+
- π **Real-time Dashboard** - Monitor all agents from a single pane
|
|
21
|
+
- π **Agent Agnostic** - Works with Claude Code, Codex, OpenCode, and more
|
|
22
|
+
- β‘ **Simple Install** - One command setup on any Linux VM
|
|
23
|
+
|
|
24
|
+
## Architecture
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
28
|
+
β Dirigent Dashboard β
|
|
29
|
+
β (React + WebSocket Real-time) β
|
|
30
|
+
βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββ
|
|
31
|
+
β
|
|
32
|
+
βββββββββββββββββββββββΌββββββββββββββββββββββββββββββββ
|
|
33
|
+
β Control Plane β
|
|
34
|
+
β βββββββββββ βββββββββββ βββββββββββ ββββββββββββ β
|
|
35
|
+
β β Auth & β β Agent β β Task β β Audit & β β
|
|
36
|
+
β β RBAC β β Registryβ β Router β β Logging β β
|
|
37
|
+
β βββββββββββ βββββββββββ βββββββββββ ββββββββββββ β
|
|
38
|
+
βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββ
|
|
39
|
+
β
|
|
40
|
+
βββββββββββββββββββββββΌββββββββββββββββββββββββββββββββ
|
|
41
|
+
β Agent Runtime β
|
|
42
|
+
β βββββββββββ βββββββββββ βββββββββββ ββββββββββββ β
|
|
43
|
+
β β Agent 1 β β Agent 2 β β Agent 3 β β Agent N β β
|
|
44
|
+
β β (Claude)β β (Codex) β β (Custom)β β ... β β
|
|
45
|
+
β βββββββββββ βββββββββββ βββββββββββ ββββββββββββ β
|
|
46
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
Apache 2.0 - Free to use, modify, and distribute.
|
|
52
|
+
|
|
53
|
+
## Commercial Support
|
|
54
|
+
|
|
55
|
+
Enterprise support, custom integrations, and managed hosting available.
|
|
56
|
+
Contact: hello@dirigent.dev
|
|
57
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|