@superclawd-ai/pipelines 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/LICENSE ADDED
@@ -0,0 +1,72 @@
1
+ SuperClawd Pipelines — End User License Agreement
2
+
3
+ Copyright (c) 2026 SharpComputing LLC. All rights reserved.
4
+
5
+ This License Agreement ("Agreement") governs your use of "SuperClawd Pipelines"
6
+ (the "@superclawd-ai/pipelines" package) and its accompanying files (the
7
+ "Software"), published by SharpComputing LLC ("Licensor"). "SuperClawd" is a
8
+ product of SharpComputing LLC. By installing, copying, or otherwise using the
9
+ Software, you agree to be bound by this Agreement. If you do not agree, do not
10
+ install or use the Software.
11
+
12
+ 1. License Grant
13
+ Subject to your compliance with this Agreement and the SuperClawd Terms of
14
+ Service (https://superclawd.com), Licensor grants you a personal,
15
+ non-exclusive, non-transferable, non-sublicensable, revocable license to
16
+ install and run the Software solely to access and use the SuperClawd service
17
+ with your own account and credentials.
18
+
19
+ 2. Restrictions
20
+ You may not, in whole or in part:
21
+ (a) copy, distribute, publish, sublicense, sell, rent, lease, or otherwise
22
+ make the Software available to any third party;
23
+ (b) modify, adapt, translate, or create derivative works of the Software;
24
+ (c) reverse engineer, decompile, disassemble, or otherwise attempt to derive
25
+ the source code or underlying ideas of the Software, except to the extent
26
+ this restriction is prohibited by applicable law;
27
+ (d) remove, alter, or obscure any proprietary notices (including copyright,
28
+ trademark, or this Agreement) in or on the Software;
29
+ (e) use the Software to build or assist in building a competing product or
30
+ service, or in any manner that violates applicable law or the SuperClawd
31
+ Terms of Service.
32
+
33
+ 3. Ownership
34
+ The Software is licensed, not sold. Licensor and its licensors retain all
35
+ right, title, and interest in and to the Software, including all intellectual
36
+ property rights. No rights are granted to you other than as expressly set
37
+ forth in this Agreement.
38
+
39
+ 4. Service and Fees
40
+ The Software is a client for the SuperClawd service. Access to that service
41
+ may require an account and the payment of fees, and is subject to the
42
+ SuperClawd Terms of Service and Privacy Policy. Licensor may modify, suspend,
43
+ or discontinue the service or the Software at any time.
44
+
45
+ 5. Termination
46
+ This Agreement is effective until terminated. It terminates automatically if
47
+ you breach any of its terms. Upon termination, you must cease all use of the
48
+ Software and destroy all copies in your possession or control. Sections 2
49
+ through 8 survive termination.
50
+
51
+ 6. Disclaimer of Warranty
52
+ THE SOFTWARE IS PROVIDED "AS IS" AND "AS AVAILABLE", WITHOUT WARRANTY OF ANY
53
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
54
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND
55
+ NON-INFRINGEMENT. YOU USE THE SOFTWARE AT YOUR OWN RISK.
56
+
57
+ 7. Limitation of Liability
58
+ TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT WILL LICENSOR BE LIABLE
59
+ FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR
60
+ ANY LOSS OF PROFITS, REVENUE, DATA, OR GOODWILL, ARISING OUT OF OR RELATED TO
61
+ YOUR USE OF OR INABILITY TO USE THE SOFTWARE, WHETHER BASED ON WARRANTY,
62
+ CONTRACT, TORT, OR ANY OTHER LEGAL THEORY, EVEN IF ADVISED OF THE POSSIBILITY
63
+ OF SUCH DAMAGES.
64
+
65
+ 8. General
66
+ This Agreement constitutes the entire agreement between you and Licensor
67
+ regarding the Software and supersedes all prior or contemporaneous
68
+ understandings. If any provision is held unenforceable, the remaining
69
+ provisions will remain in full force and effect. Licensor's failure to
70
+ enforce any right or provision is not a waiver of that right or provision.
71
+
72
+ For licensing inquiries, contact support@superclawd.com.
package/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # SuperClawd Pipelines
2
+
3
+ **Turn your board into an autonomous pipeline.** SuperClawd Pipelines is a local web app that puts your own Claude to work on your tickets: assign an issue and Claude plans it, works in an isolated git worktree, opens a pull request, and hands it back for your review.
4
+
5
+ It's an opt-in extension to the [SuperClawd](https://superclawd.com) CLI, and it runs entirely on your machine.
6
+
7
+ ## Requirements
8
+
9
+ - [Node.js](https://nodejs.org/) 18 or newer
10
+ - The [SuperClawd CLI](https://www.npmjs.com/package/superclawd), logged in — run `superclawd login` once
11
+
12
+ ## Install
13
+
14
+ ```bash
15
+ npm install -g superclawd # the CLI, if you don't have it yet
16
+ npm install -g @superclawd-ai/pipelines
17
+ ```
18
+
19
+ ## Quick start
20
+
21
+ ```bash
22
+ superclawd pipelines start
23
+ ```
24
+
25
+ This launches the app and opens your browser at **http://localhost:63210**. Connect a workspace, bring in a board, assign a ticket, and start a run.
26
+
27
+ | Command | What it does |
28
+ | --- | --- |
29
+ | `superclawd pipelines start [--port <n>] [-d]` | Start the app (`-d` runs it in the background) |
30
+ | `superclawd pipelines status` | Show whether it's running |
31
+ | `superclawd pipelines stop` | Stop it |
32
+ | `superclawd pipelines update` | Update to the latest version |
33
+
34
+ ## What you can do
35
+
36
+ - **Work your real board** — Linear, Jira, Asana, ClickUp, Monday, or a built-in local board.
37
+ - **Autonomous, isolated runs** — each ticket works in its own git worktree and opens its own PR, so concurrent runs never collide.
38
+ - **Stay in control** — supervised or autonomous per run, with a human sign-off before anything is marked Done.
39
+ - **Schedule work and watch PRs** — run tasks on a cadence, and let the built-in PR monitor auto-fix failing CI.
40
+ - **Chat in your workspace** — an interactive session that carries your team, guardrails, and memory.
41
+ - **Automate with the API** — an optional key-authenticated HTTP API and signed webhooks drive the board and stream run events to your own tooling.
42
+
43
+ ## How it works
44
+
45
+ Pipelines doesn't ship its own model. For every run it launches the SuperClawd CLI, which starts Claude Code with your directives, memory, and guardrails — so **your own Claude does the work** while Pipelines orchestrates. State lives in a local SQLite database on your machine; nothing runs in SuperClawd's cloud, and runs pause when your machine sleeps and resume when you come back.
46
+
47
+ ## Documentation
48
+
49
+ Full guide: **[docs.superclawd.com/pipelines.html](https://docs.superclawd.com/pipelines.html)**