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 CHANGED
@@ -1,4 +1,8 @@
1
- # Singleton Pipeline Builder (v0.4.0-beta.0)
1
+ # Singleton Pipeline Builder (v0.4.0-beta.1)
2
+
3
+ [![npm version](https://img.shields.io/npm/v/singleton-pipeline/beta.svg)](https://www.npmjs.com/package/singleton-pipeline)
4
+ [![npm downloads](https://img.shields.io/npm/dm/singleton-pipeline.svg)](https://www.npmjs.com/package/singleton-pipeline)
5
+ [![license](https://img.shields.io/npm/l/singleton-pipeline.svg)](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.0",
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",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@singleton/cli",
3
- "version": "0.4.0-beta.0",
3
+ "version": "0.4.0-beta.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "singleton": "./src/index.js"
@@ -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.0';
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 child = spawn('which', [command], { stdio: 'ignore' });
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
  });
@@ -22,7 +22,7 @@ function groupAgentsByProvider(agents) {
22
22
  program
23
23
  .name('singleton')
24
24
  .description('Singleton Pipeline Builder — scan agents and build pipelines')
25
- .version('0.4.0-beta.0');
25
+ .version('0.4.0-beta.1');
26
26
 
27
27
  program
28
28
  .command('scan')
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@singleton/server",
3
- "version": "0.4.0-beta.0",
3
+ "version": "0.4.0-beta.1",
4
4
  "type": "module",
5
5
  "main": "./src/index.js",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@singleton/web",
3
- "version": "0.4.0-beta.0",
3
+ "version": "0.4.0-beta.1",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "scripts": {