@tloncorp/tlon-skill 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/bin/tlon-run.js +1 -1
  2. package/package.json +6 -8
package/bin/tlon-run.js CHANGED
@@ -37,7 +37,7 @@ function getBinaryPath() {
37
37
  try {
38
38
  // Try to resolve the platform-specific package
39
39
  const packagePath = require.resolve(`${packageName}/package.json`);
40
- const binaryPath = join(dirname(packagePath), "tlon-run");
40
+ const binaryPath = join(dirname(packagePath), "tlon");
41
41
 
42
42
  if (!existsSync(binaryPath)) {
43
43
  throw new Error(`Binary not found at ${binaryPath}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tloncorp/tlon-skill",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Tlon/Urbit skill for OpenClaw agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -17,15 +17,13 @@
17
17
  "test": "bun test"
18
18
  },
19
19
  "optionalDependencies": {
20
- "@tloncorp/tlon-skill-darwin-arm64": "0.1.0",
21
- "@tloncorp/tlon-skill-darwin-x64": "0.1.0",
22
- "@tloncorp/tlon-skill-linux-x64": "0.1.0"
23
- },
24
- "dependencies": {
25
- "@tloncorp/api": "git+https://github.com/tloncorp/api-beta.git#main",
26
- "@urbit/aura": "^3.0.0"
20
+ "@tloncorp/tlon-skill-darwin-arm64": "0.1.2",
21
+ "@tloncorp/tlon-skill-darwin-x64": "0.1.2",
22
+ "@tloncorp/tlon-skill-linux-x64": "0.1.2"
27
23
  },
28
24
  "devDependencies": {
25
+ "@tloncorp/api": "git+https://github.com/tloncorp/api-beta.git#main",
26
+ "@urbit/aura": "^3.0.0",
29
27
  "@types/node": "^22.0.0",
30
28
  "typescript": "^5.9.3"
31
29
  },