cli-aimlock 7.0.28 → 7.0.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.
@@ -125,7 +125,7 @@ const RESPONSE_SCHEMA = "aimlock.skill.response/1.1";
125
125
  const ERROR_SCHEMA = "aimlock.skill.error/1.0";
126
126
  const CONTRACT_SCHEMA = "aimlock.scope-contract/1.0";
127
127
  const COMPILER_NAME = "aimlock";
128
- const COMPILER_VERSION = "v7.0.28";
128
+ const COMPILER_VERSION = "v7.0.30";
129
129
  const KEEP_ALIVE_SECONDS = 90;
130
130
  const KEEP_ALIVE_MESSAGE = "智能目标持续执行中,请勿关闭!";
131
131
  const BYPASS_LINE_BUDGET = 500;
package/cli.mjs CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ import { realpathSync } from 'node:fs'
2
3
  import { dirname, resolve } from 'node:path'
3
4
  import { cwd, stdin, stdout } from 'node:process'
4
5
  import { createInterface } from 'node:readline/promises'
@@ -182,7 +183,7 @@ async function dispatchLocal(args) {
182
183
  }
183
184
 
184
185
  const cliPath = fileURLToPath(import.meta.url)
185
- if (process.argv[1] && resolve(process.argv[1]) === cliPath) {
186
+ if (process.argv[1] && realpathSync(resolve(process.argv[1])) === cliPath) {
186
187
  if (process.argv[2] === 'local') {
187
188
  try {
188
189
  console.log(JSON.stringify(await dispatchLocal(process.argv.slice(3))))
package/package.json CHANGED
@@ -3,9 +3,14 @@
3
3
  "cli-aimlock": "./cli.mjs"
4
4
  },
5
5
  "dependencies": {
6
- "cli-swarm": "7.0.28"
6
+ "cli-swarm": "7.0.30"
7
7
  },
8
8
  "description": "Aimlock skill installer for CLI.Tax: lock a user request into an executable aim and route Blueprint, Swarm, and Calctool.",
9
+ "exports": {
10
+ "./coordination": "./aimlock-coordination.mjs",
11
+ "./local-runner": "./aimlock-local-runner.mjs",
12
+ "./runtime": "./aimlock-runtime.mjs"
13
+ },
9
14
  "files": [
10
15
  "cli.mjs",
11
16
  "installer.mjs",
@@ -27,5 +32,5 @@
27
32
  "url": "https://github.com/88208555/aimlock-clitax.git"
28
33
  },
29
34
  "type": "module",
30
- "version": "7.0.28"
35
+ "version": "7.0.30"
31
36
  }
package/skill/SKILL.md CHANGED
@@ -5,7 +5,7 @@ description: "Aimlock 仅用于大型、深度、跨模块、高风险、需要
5
5
 
6
6
  # Aimlock Skill
7
7
 
8
- Package version: v7.0.28
8
+ Package version: v7.0.30
9
9
 
10
10
  Endpoint: https://cli.tax/R3mQ8kWpXn
11
11
 
package/skill/skill.json CHANGED
@@ -6,5 +6,5 @@
6
6
  "name": "aimlock",
7
7
  "schemaVersion": "aimlock.skill.request/1.1",
8
8
  "type": "Skill",
9
- "version": "v7.0.28"
9
+ "version": "v7.0.30"
10
10
  }