@techsologic/unolock-agent 0.1.28 → 0.1.30
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
|
@@ -11,7 +11,7 @@ UnoLock Agent is currently in alpha. It is available for evaluation and early te
|
|
|
11
11
|
For skill-aware agents, the primary starting point is the UnoLock agent-access skill:
|
|
12
12
|
|
|
13
13
|
* [skills/unolock-agent-access/SKILL.md](skills/unolock-agent-access/SKILL.md)
|
|
14
|
-
* `https://github.com/TechSologic/unolock-agent
|
|
14
|
+
* `https://github.com/TechSologic/unolock-agent/blob/main/skills/unolock-agent-access/SKILL.md`
|
|
15
15
|
|
|
16
16
|
That skill is the agent-facing onboarding layer.
|
|
17
17
|
The local UnoLock `stdio` MCP is the implementation layer underneath it.
|
|
@@ -75,8 +75,8 @@ These environments are harder to support because they often cannot satisfy UnoLo
|
|
|
75
75
|
|
|
76
76
|
Official GitHub repository:
|
|
77
77
|
|
|
78
|
-
* `https://github.com/TechSologic/unolock-agent
|
|
79
|
-
* Releases: `https://github.com/TechSologic/unolock-agent
|
|
78
|
+
* `https://github.com/TechSologic/unolock-agent`
|
|
79
|
+
* Releases: `https://github.com/TechSologic/unolock-agent/releases`
|
|
80
80
|
|
|
81
81
|
Agent-first onboarding site:
|
|
82
82
|
|
|
@@ -184,8 +184,8 @@ Once the local stdio MCP is running, the normal flow is:
|
|
|
184
184
|
If you prefer manual install from source:
|
|
185
185
|
|
|
186
186
|
```bash
|
|
187
|
-
git clone https://github.com/TechSologic/unolock-agent
|
|
188
|
-
cd unolock-agent
|
|
187
|
+
git clone https://github.com/TechSologic/unolock-agent.git
|
|
188
|
+
cd unolock-agent
|
|
189
189
|
python3 -m pip install --user -e .
|
|
190
190
|
unolock-agent-probe probe
|
|
191
191
|
unolock-agent --help
|
|
@@ -236,7 +236,7 @@ The npm package is both:
|
|
|
236
236
|
|
|
237
237
|
Project home:
|
|
238
238
|
|
|
239
|
-
* `https://github.com/TechSologic/unolock-agent
|
|
239
|
+
* `https://github.com/TechSologic/unolock-agent`
|
|
240
240
|
|
|
241
241
|
Use it as a command that OpenClaw can launch, for example:
|
|
242
242
|
|
package/bin/unolock-agent.js
CHANGED
|
@@ -7,9 +7,9 @@ const path = require("path");
|
|
|
7
7
|
const https = require("https");
|
|
8
8
|
const { spawn } = require("child_process");
|
|
9
9
|
|
|
10
|
-
const PACKAGE_VERSION = "0.1.
|
|
11
|
-
const FALLBACK_BINARY_VERSION = "0.1.
|
|
12
|
-
const REPO = "TechSologic/unolock-agent
|
|
10
|
+
const PACKAGE_VERSION = "0.1.30";
|
|
11
|
+
const FALLBACK_BINARY_VERSION = "0.1.30";
|
|
12
|
+
const REPO = "TechSologic/unolock-agent";
|
|
13
13
|
|
|
14
14
|
function platformAssetInfo() {
|
|
15
15
|
const platform = process.platform;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "unolock-agent-access",
|
|
3
3
|
"name": "UnoLock Agent Access",
|
|
4
|
-
"description": "Ships the UnoLock agent-access skill for OpenClaw. The skill uses the local UnoLock
|
|
4
|
+
"description": "Ships the UnoLock agent-access skill for OpenClaw. The skill uses the local UnoLock stdio MCP.",
|
|
5
5
|
"configSchema": {
|
|
6
6
|
"type": "object",
|
|
7
7
|
"additionalProperties": false,
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techsologic/unolock-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.30",
|
|
4
4
|
"description": "npx wrapper for the official UnoLock Agent release binaries",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://unolock.ai",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/TechSologic/unolock-agent
|
|
9
|
+
"url": "git+https://github.com/TechSologic/unolock-agent.git"
|
|
10
10
|
},
|
|
11
11
|
"bugs": {
|
|
12
|
-
"url": "https://github.com/TechSologic/unolock-agent
|
|
12
|
+
"url": "https://github.com/TechSologic/unolock-agent/issues"
|
|
13
13
|
},
|
|
14
14
|
"bin": {
|
|
15
15
|
"unolock-agent": "bin/unolock-agent.js"
|