hivemind-pipeline 0.1.1 → 0.1.3

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/LICENSE CHANGED
@@ -1,63 +1,21 @@
1
- Business Source License 1.1
2
-
3
- Parameters
4
-
5
- Licensor: Esan Mohammad
6
- Licensed Work: Swarm Pipeline
7
- The Licensed Work is (c) 2026 Esan Mohammad.
8
- Additional Use Grant: You may make use of the Licensed Work, provided that
9
- you may not use the Licensed Work for a Service that
10
- competes with the Licensed Work. A "Service" is a
11
- commercial offering that provides substantially the
12
- same functionality as the Licensed Work to third
13
- parties as a managed service.
14
- Change Date: April 2, 2030
15
- Change License: Apache License, Version 2.0
16
-
17
- For information about alternative licensing arrangements for the Licensed Work,
18
- please contact: esanmohammad
19
-
20
- Notice
21
-
22
- Business Source License 1.1
23
-
24
- Terms
25
-
26
- The Licensor hereby grants you the right to copy, modify, create derivative
27
- works, redistribute, and make non-production use of the Licensed Work. The
28
- Licensor may make an Additional Use Grant, above, permitting limited production
29
- use.
30
-
31
- Effective on the Change Date, or the fourth anniversary of the first publicly
32
- available distribution of a specific version of the Licensed Work under this
33
- License, whichever comes first, the Licensor hereby grants you rights under the
34
- terms of the Change License, and the rights granted in the paragraph above
35
- terminate.
36
-
37
- If your use of the Licensed Work does not comply with the requirements currently
38
- in effect as described in this License, you must purchase a commercial license
39
- from the Licensor, its affiliated entities, or authorized resellers, or you must
40
- refrain from using the Licensed Work.
41
-
42
- All copies of the original and modified Licensed Work, and derivative works of
43
- the Licensed Work, are subject to this License. This License applies separately
44
- for each version of the Licensed Work and the Change Date may vary for each
45
- version of the Licensed Work released by Licensor.
46
-
47
- You must conspicuously display this License on each original or modified copy of
48
- the Licensed Work. If you receive the Licensed Work in original or modified form
49
- from a third party, the terms and conditions set forth in this License apply to
50
- your use of that work.
51
-
52
- Any use of the Licensed Work in violation of this License will automatically
53
- terminate your rights under this License for the current and all other versions
54
- of the Licensed Work.
55
-
56
- This License does not grant you any right in any trademark or logo of Licensor
57
- or its affiliates (provided that you may use a trademark or logo of Licensor as
58
- expressly required by this License).
59
-
60
- TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN
61
- "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS
62
- OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY,
63
- FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Esan Mohammad
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -18,14 +18,14 @@
18
18
  </p>
19
19
 
20
20
  <p align="center">
21
- <img src="https://img.shields.io/badge/license-BUSL--1.1-blue" alt="License" />
21
+ <img src="https://img.shields.io/badge/license-MIT-green" alt="License" />
22
22
  <img src="https://img.shields.io/badge/node-%3E%3D18-brightgreen" alt="Node" />
23
23
  <img src="https://img.shields.io/badge/claude_code-required-orange" alt="Claude Code" />
24
24
  <img src="https://img.shields.io/badge/TypeScript-strict-blue" alt="TypeScript" />
25
25
  </p>
26
26
 
27
27
  <p align="center">
28
- <img src=".github/assets/dashboard.png" alt="Hivemind Dashboard" width="800" />
28
+ <img src="https://raw.githubusercontent.com/esanmohammad/swarm/main/.github/assets/dashboard.png" alt="Hivemind Dashboard" width="800" />
29
29
  </p>
30
30
 
31
31
  ---
@@ -58,22 +58,32 @@ Hivemind:
58
58
  - **Node.js** >= 18
59
59
  - **Claude Code CLI** installed and authenticated (`claude` command available)
60
60
 
61
- ### Install
61
+ ### Install from npm
62
62
 
63
63
  ```bash
64
- git clone https://github.com/esanmohammad/swarm.git
65
- cd swarm
66
- npm install
67
- npm run build
64
+ npm install -g hivemind-pipeline
68
65
  ```
69
66
 
70
- Add the CLI alias to your shell:
67
+ Or run without installing:
71
68
 
72
69
  ```bash
70
+ npx hivemind-pipeline "add a login page"
71
+ ```
72
+
73
+ <details>
74
+ <summary><strong>Install from source</strong></summary>
75
+
76
+ ```bash
77
+ git clone https://github.com/esanmohammad/swarm.git
78
+ cd swarm
79
+ npm install
80
+ npm run build
73
81
  echo 'alias hivemind="node '$(pwd)'/packages/cli/dist/bin/swarm.js"' >> ~/.zshrc
74
82
  source ~/.zshrc
75
83
  ```
76
84
 
85
+ </details>
86
+
77
87
  ### First Run
78
88
 
79
89
  ```bash
@@ -342,7 +352,7 @@ A: Hivemind uses Claude Code under the hood. Any model available through your Cl
342
352
 
343
353
  ## License
344
354
 
345
- [Business Source License 1.1](LICENSE)
355
+ [MIT License](LICENSE)
346
356
 
347
357
  ---
348
358