agent-control-plane 0.6.0 → 0.7.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 +38 -5
- package/package.json +1 -1
- package/tools/bin/flow-config-lib.sh +13 -3508
- package/tools/bin/flow-execution-lib.sh +243 -0
- package/tools/bin/flow-forge-lib.sh +1770 -0
- package/tools/bin/flow-profile-lib.sh +335 -0
- package/tools/bin/flow-provider-lib.sh +981 -0
- package/tools/bin/flow-session-lib.sh +317 -0
- package/tools/dashboard/app.js +40 -3
- package/tools/dashboard/requirements.txt +3 -0
- package/tools/dashboard/server.py +250 -152
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# agent-control-plane
|
|
1
|
+
# agent-control-plane (ACP) v0.7.0
|
|
2
2
|
|
|
3
3
|
<p>
|
|
4
4
|
<a href="https://github.com/ducminhnguyen0319/agent-control-plane/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/ducminhnguyen0319/agent-control-plane/actions/workflows/ci.yml/badge.svg?branch=main"></a>
|
|
@@ -7,11 +7,21 @@
|
|
|
7
7
|
<a href="./LICENSE"><img alt="license" src="https://img.shields.io/npm/l/agent-control-plane?style=flat-square"></a>
|
|
8
8
|
<a href="https://github.com/sponsors/ducminhnguyen0319"><img alt="GitHub Sponsors" src="https://img.shields.io/badge/sponsor-GitHub%20Sponsors-ea4aaa?style=flat-square&logo=githubsponsors&logoColor=white"></a>
|
|
9
9
|
<a href="https://socket.dev/npm/package/agent-control-plane"><img alt="Socket" src="https://img.shields.io/badge/Socket-79-f5a623?style=flat-square"></a>
|
|
10
|
+
<a href="./ROADMAP.md"><img alt="Roadmap Complete" src="https://img.shields.io/badge/ROADMAP-v0.7.0-success?style=flat-square"></a>
|
|
11
|
+
<a href="./CHANGELOG.md"><img alt="Changelog" src="https://img.shields.io/badge/CHANGELOG-v0.7.0-blue?style=flat-square"></a>
|
|
10
12
|
</p>
|
|
11
13
|
|
|
12
|
-
|
|
13
|
-
you having to stare at them all day.
|
|
14
|
+
**agent-control-plane (ACP)** keeps your coding agents running reliably without you having to stare at them all day.
|
|
14
15
|
|
|
16
|
+
## ✅ ROADMAP UPDATE (v0.7.0) - New Features!
|
|
17
|
+
|
|
18
|
+
- **Real-time Dashboard**: WebSocket updates (no more 5s polling!)
|
|
19
|
+
- **Hardened Adapters**: All 6 backends now production-ready
|
|
20
|
+
- **Native Windows Support**: Run as Windows Service (NSSM/sc.exe/PowerShell)
|
|
21
|
+
- **Standardized Capabilities**: Worker capability detection across all backends
|
|
22
|
+
- **Provider Failover**: Auto-switch when backend is rate-limited/degraded
|
|
23
|
+
|
|
24
|
+
## ✅ ROADMAP COMPLETE (v0.6.0) - All 5 Sections Delivered!
|
|
15
25
|
**✅ ROADMAP COMPLETE (v0.6.0)** - All planned features delivered!
|
|
16
26
|
|
|
17
27
|
It is the operator layer for coding agents that need to keep running after the
|
|
@@ -140,12 +150,35 @@ familiar:
|
|
|
140
150
|
- Your local machine should behave like a reliable operator box, not a pile of
|
|
141
151
|
shell history that breaks after a reboot.
|
|
142
152
|
|
|
153
|
+
## Screenshots
|
|
154
|
+
|
|
155
|
+
### Light Mode
|
|
156
|
+

|
|
157
|
+
|
|
158
|
+
### Dark Mode
|
|
159
|
+

|
|
160
|
+
|
|
143
161
|
## Roadmap
|
|
144
162
|
|
|
145
163
|
ACP is moving toward a true multi-backend control plane. The goal is one runtime
|
|
146
|
-
and one dashboard for many coding-agent backends, across macOS, Linux,
|
|
147
|
-
Windows.
|
|
164
|
+
and one dashboard for many coding-agent backends, across macOS, Linux, Windows (WSL2),
|
|
165
|
+
and **native Windows** (service model).
|
|
166
|
+
|
|
167
|
+
### Windows Support
|
|
168
|
+
|
|
169
|
+
ACP now supports running as a native Windows Service!
|
|
170
|
+
|
|
171
|
+
- **Docs**: See [Windows Setup Guide](docs/WINDOWS_SETUP.md)
|
|
172
|
+
- **Service managers**: NSSM (recommended), sc.exe, or PowerShell cmdlets
|
|
173
|
+
- **Quick start**:
|
|
174
|
+
```powershell
|
|
175
|
+
# Using NSSM (download from https://nssm.cc/download)
|
|
176
|
+
nssm install "ACP_Dashboard" "C:\Path\To\python.exe" "C:\Path\To\agent-control-plane\tools\dashboard\server.py"
|
|
177
|
+
nssm start "ACP_Dashboard"
|
|
178
|
+
```
|
|
179
|
+
- **PowerShell installer**: `tools/bin/install-windows-service.ps1`
|
|
148
180
|
|
|
181
|
+
### Windows
|
|
149
182
|
### Backend Status
|
|
150
183
|
|
|
151
184
|
| Backend | Status | Notes |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-control-plane",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Help a repo keep GitHub-driven coding agents running reliably without constant human babysitting",
|
|
5
5
|
"homepage": "https://github.com/ducminhnguyen0319/agent-control-plane",
|
|
6
6
|
"bugs": {
|