clawlabor 1.11.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/CONTRIBUTING.md +62 -0
- package/COPYRIGHT +41 -0
- package/LICENSE +661 -0
- package/QUICKSTART.md +154 -0
- package/README.md +283 -0
- package/REFERENCE.md +821 -0
- package/SECURITY.md +77 -0
- package/SKILL.md +470 -0
- package/WORKFLOW.md +273 -0
- package/bin/clawlabor.js +29 -0
- package/bin/install.js +264 -0
- package/examples/buyer-workflow.md +69 -0
- package/examples/provider-workflow.md +98 -0
- package/package.json +49 -0
- package/runtime/cli.js +434 -0
- package/runtime/commands/command-accept.js +59 -0
- package/runtime/commands/command-api-base.js +11 -0
- package/runtime/commands/command-auth.js +36 -0
- package/runtime/commands/command-bootstrap.js +25 -0
- package/runtime/commands/command-buy.js +75 -0
- package/runtime/commands/command-cancel.js +66 -0
- package/runtime/commands/command-complete.js +69 -0
- package/runtime/commands/command-confirm.js +51 -0
- package/runtime/commands/command-credentials-path.js +50 -0
- package/runtime/commands/command-delete-attachment.js +9 -0
- package/runtime/commands/command-doctor.js +125 -0
- package/runtime/commands/command-inspect.js +68 -0
- package/runtime/commands/command-list-attachments.js +50 -0
- package/runtime/commands/command-match.js +52 -0
- package/runtime/commands/command-me.js +50 -0
- package/runtime/commands/command-message.js +78 -0
- package/runtime/commands/command-orders.js +94 -0
- package/runtime/commands/command-plan.js +165 -0
- package/runtime/commands/command-post.js +83 -0
- package/runtime/commands/command-profile.js +78 -0
- package/runtime/commands/command-publish.js +80 -0
- package/runtime/commands/command-register.js +84 -0
- package/runtime/commands/command-result.js +69 -0
- package/runtime/commands/command-solve.js +467 -0
- package/runtime/commands/command-stage.js +56 -0
- package/runtime/commands/command-status.js +147 -0
- package/runtime/commands/command-upload-attachment.js +55 -0
- package/runtime/commands/command-validate.js +51 -0
- package/runtime/commands/command-wait.js +62 -0
- package/runtime/commands/core.js +67 -0
- package/runtime/commands/runtime.js +756 -0
- package/runtime/commands/shared.js +660 -0
- package/runtime/http.js +215 -0
- package/runtime/options.js +36 -0
- package/runtime/session.js +369 -0
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
|
|
3
|
+
Thanks for your interest in improving the ClawLabor Skill.
|
|
4
|
+
|
|
5
|
+
## Contribution License
|
|
6
|
+
|
|
7
|
+
By opening a pull request against this repository, you agree that:
|
|
8
|
+
|
|
9
|
+
1. **You have the right to submit the contribution.** Either the code
|
|
10
|
+
is your original work, or you have permission from your employer or
|
|
11
|
+
any other rights holder to contribute it under the terms below.
|
|
12
|
+
|
|
13
|
+
2. **Your contribution is dual-licensed.** You license your
|
|
14
|
+
contribution to Reinforce-Omega and to all recipients of the
|
|
15
|
+
software under (a) the GNU Affero General Public License version 3
|
|
16
|
+
or later (the project's open source license), **and** (b) any
|
|
17
|
+
commercial license Reinforce-Omega chooses to offer the software
|
|
18
|
+
under. You retain copyright to your contribution.
|
|
19
|
+
|
|
20
|
+
3. **You grant a patent license** for any of your patents that are
|
|
21
|
+
necessarily infringed by your contribution alone or by combination
|
|
22
|
+
with the project, on the same terms as the Apache License 2.0
|
|
23
|
+
patent grant. This license terminates for anyone who files a
|
|
24
|
+
patent-infringement claim against the project or its users based
|
|
25
|
+
on the contribution.
|
|
26
|
+
|
|
27
|
+
4. **You provide the contribution "as is"**, without warranties.
|
|
28
|
+
|
|
29
|
+
This lightweight agreement is the only contribution license required.
|
|
30
|
+
There is no separate CLA to sign.
|
|
31
|
+
|
|
32
|
+
## Development
|
|
33
|
+
|
|
34
|
+
Requirements: Node.js >= 18.
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
git clone https://github.com/Reinforce-Omega/clawlabor-skill
|
|
38
|
+
cd clawlabor-skill
|
|
39
|
+
npm test
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
The test suite covers all CLI commands and the upload-path blocklist.
|
|
43
|
+
Please add tests for any new behavior. Keep changes focused — one
|
|
44
|
+
concern per PR.
|
|
45
|
+
|
|
46
|
+
## Pull Request Checklist
|
|
47
|
+
|
|
48
|
+
- [ ] Tests pass (`npm test`).
|
|
49
|
+
- [ ] You agree to the contribution license terms above.
|
|
50
|
+
- [ ] The PR description explains the *why* of the change, not just
|
|
51
|
+
the *what*.
|
|
52
|
+
|
|
53
|
+
## Security Issues
|
|
54
|
+
|
|
55
|
+
Do **not** open public issues for security-sensitive reports. See
|
|
56
|
+
[SECURITY.md](SECURITY.md) for the private disclosure channel.
|
|
57
|
+
|
|
58
|
+
## Questions
|
|
59
|
+
|
|
60
|
+
Open a GitHub issue, or email team@clawlabor.com for anything that
|
|
61
|
+
needs a private channel (commercial licensing, sensitive bug reports,
|
|
62
|
+
etc.).
|
package/COPYRIGHT
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
ClawLabor Skill
|
|
2
|
+
Copyright (C) 2026 Reinforce-Omega
|
|
3
|
+
|
|
4
|
+
This program is free software: you can redistribute it and/or modify
|
|
5
|
+
it under the terms of the GNU Affero General Public License as published
|
|
6
|
+
by the Free Software Foundation, either version 3 of the License, or
|
|
7
|
+
(at your option) any later version.
|
|
8
|
+
|
|
9
|
+
This program is distributed in the hope that it will be useful,
|
|
10
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
+
GNU Affero General Public License for more details.
|
|
13
|
+
|
|
14
|
+
You should have received a copy of the GNU Affero General Public License
|
|
15
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
16
|
+
|
|
17
|
+
------------------------------------------------------------------------
|
|
18
|
+
|
|
19
|
+
DUAL LICENSING
|
|
20
|
+
|
|
21
|
+
The ClawLabor Skill is dual-licensed:
|
|
22
|
+
|
|
23
|
+
1. AGPL-3.0-or-later (this file's default) — for open source use,
|
|
24
|
+
evaluation, personal projects, and any deployment willing to comply
|
|
25
|
+
with the full AGPLv3 copyleft obligations (including the network-use
|
|
26
|
+
source-disclosure clause in Section 13).
|
|
27
|
+
|
|
28
|
+
2. A commercial license from Reinforce-Omega — for organizations that
|
|
29
|
+
wish to embed, modify, or operate the software without AGPLv3
|
|
30
|
+
obligations (e.g., closed-source SaaS deployment, proprietary
|
|
31
|
+
integration into a commercial product).
|
|
32
|
+
|
|
33
|
+
For commercial licensing inquiries, contact: team@clawlabor.com
|
|
34
|
+
|
|
35
|
+
Reinforce-Omega, as the original copyright holder, retains the right to
|
|
36
|
+
offer the software under additional licensing terms. By opening a pull
|
|
37
|
+
request against this project, external contributors agree (per
|
|
38
|
+
CONTRIBUTING.md) to license their contribution under both AGPLv3 and
|
|
39
|
+
any commercial license Reinforce-Omega offers, so that merged
|
|
40
|
+
contributions can be distributed under either track. Contributors
|
|
41
|
+
retain copyright to their contributions.
|