singleton-pipeline 0.4.0-beta.0 → 0.4.0-beta.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/README.md +26 -3
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/cli/src/commands/repl.js +1 -1
- package/packages/cli/src/executor.js +2 -1
- package/packages/cli/src/index.js +1 -1
- package/packages/server/package.json +1 -1
- package/packages/web/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
# Singleton Pipeline Builder (v0.4.0-beta.
|
|
1
|
+
# Singleton Pipeline Builder (v0.4.0-beta.1)
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/singleton-pipeline)
|
|
4
|
+
[](https://www.npmjs.com/package/singleton-pipeline)
|
|
5
|
+
[](LICENSE)
|
|
2
6
|
|
|
3
7
|
Build multi-agent pipelines for your codebase, visually.
|
|
4
8
|
|
|
@@ -57,13 +61,32 @@ This beta focused on multi-provider execution, Copilot support, inspection, and
|
|
|
57
61
|
|
|
58
62
|
## Install
|
|
59
63
|
|
|
64
|
+
The fastest path is via npm:
|
|
65
|
+
|
|
60
66
|
```bash
|
|
67
|
+
npm install -g singleton-pipeline@beta
|
|
68
|
+
singleton --version
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
Or run it directly without installing globally:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
npx singleton-pipeline@beta --help
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Singleton drives the provider CLIs you already use; install the ones you want in your `$PATH` with a working session: `claude`, `codex`, `copilot`, `opencode`.
|
|
78
|
+
|
|
79
|
+
Requirements: Node 20+.
|
|
80
|
+
|
|
81
|
+
### From source (development)
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
git clone https://github.com/RomainLENTZ/singleton_pipeline.git
|
|
85
|
+
cd singleton_pipeline
|
|
61
86
|
npm install
|
|
62
87
|
npm link # optional, to use `singleton` globally
|
|
63
88
|
```
|
|
64
89
|
|
|
65
|
-
Requirements: Node 20+, plus the provider CLIs you want to use in your `$PATH` with a working session: `claude`, `codex`, `copilot`, and/or `opencode`.
|
|
66
|
-
|
|
67
90
|
## Quickstart
|
|
68
91
|
|
|
69
92
|
Run the bundled mixed-provider example end-to-end (uses Claude for scouting/review and Codex for implementation):
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "singleton-pipeline",
|
|
3
|
-
"version": "0.4.0-beta.
|
|
3
|
+
"version": "0.4.0-beta.1",
|
|
4
4
|
"description": "Visual pipeline builder for multi-agent AI workflows. Orchestrates Claude Code, Codex, Copilot, and OpenCode under a unified security policy.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -202,7 +202,7 @@ const SINGLETON_RAW = [
|
|
|
202
202
|
];
|
|
203
203
|
|
|
204
204
|
const ART_WIDTH = Math.max(...SINGLETON_RAW.map((l) => l.length));
|
|
205
|
-
const APP_VERSION = 'v0.4.0-beta.
|
|
205
|
+
const APP_VERSION = 'v0.4.0-beta.1';
|
|
206
206
|
|
|
207
207
|
async function showWelcome(root, shell) {
|
|
208
208
|
const now = new Date();
|
|
@@ -1076,7 +1076,8 @@ function shouldHighlightSecurity({ provider, permissionMode, securityPolicy }) {
|
|
|
1076
1076
|
|
|
1077
1077
|
function commandExists(command) {
|
|
1078
1078
|
return new Promise((resolve) => {
|
|
1079
|
-
const
|
|
1079
|
+
const lookup = process.platform === 'win32' ? 'where' : 'which';
|
|
1080
|
+
const child = spawn(lookup, [command], { stdio: 'ignore' });
|
|
1080
1081
|
child.on('error', () => resolve(false));
|
|
1081
1082
|
child.on('close', (code) => resolve(code === 0));
|
|
1082
1083
|
});
|