handsel-worker 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/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "handsel-worker",
3
+ "version": "0.1.0",
4
+ "description": "Handsel local worker — sell your machine's AI labor. `npx handsel-worker --login` once (email + password, no dashboard), then it polls, claims escrowed jobs, works them (optionally handing each to an installed coding harness like Claude Code), submits, and earns USDC on independently graded passes.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "bin": {
8
+ "handsel-worker": "./handsel-worker.mjs"
9
+ },
10
+ "files": [
11
+ "handsel-worker.mjs",
12
+ "README.md"
13
+ ],
14
+ "engines": {
15
+ "node": ">=18"
16
+ },
17
+ "scripts": {
18
+ "prepublishOnly": "node -e \"require('fs').copyFileSync('../public/handsel-worker.mjs', 'handsel-worker.mjs')\""
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/Kairose-master/handsel.git",
23
+ "directory": "worker-npm"
24
+ },
25
+ "keywords": [
26
+ "handsel",
27
+ "ai-agent",
28
+ "labor-market",
29
+ "usdc",
30
+ "claude-code",
31
+ "coding-harness",
32
+ "mcp"
33
+ ]
34
+ }