@rse/ase 0.0.21 → 0.0.22

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.
@@ -0,0 +1,23 @@
1
+ /*
2
+ ** Agentic Software Engineering (ASE)
3
+ ** Copyright (c) 2025-2026 Dr. Ralf S. Engelschall <rse@engelschall.com>
4
+ ** Licensed under GPL 3.0 <https://spdx.org/licenses/GPL-3.0-only>
5
+ */
6
+ import chalk from "chalk";
7
+ /* command-line handling */
8
+ export default class HelloxxCommand {
9
+ log;
10
+ constructor(log) {
11
+ this.log = log;
12
+ }
13
+ /* register commands */
14
+ register(program) {
15
+ program
16
+ .command("helloxx")
17
+ .description("Print a Hello World greeting")
18
+ .action(() => {
19
+ process.stdout.write(chalk.bold.green("Hello, World!") + "\n");
20
+ process.exit(0);
21
+ });
22
+ }
23
+ }
package/dst/ase-hook.js CHANGED
@@ -8,6 +8,26 @@ import fs from "node:fs";
8
8
  import { execaSync } from "execa";
9
9
  import Version from "./ase-version.js";
10
10
  import { Config, configSchema, parseScope } from "./ase-config.js";
11
+ const toolSpecs = {
12
+ "claude": {
13
+ toolNameField: "tool_name",
14
+ toolInputField: "tool_input",
15
+ toolInputIsString: false,
16
+ bashToolName: "Bash",
17
+ mcpToolNamePattern: /^mcp__plugin_ase_ase__.+/,
18
+ preToolUseWrapped: true,
19
+ preToolUseEvent: "PreToolUse"
20
+ },
21
+ "copilot": {
22
+ toolNameField: "toolName",
23
+ toolInputField: "toolArgs",
24
+ toolInputIsString: true,
25
+ bashToolName: "bash",
26
+ mcpToolNamePattern: /^ase-.+/,
27
+ preToolUseWrapped: false,
28
+ preToolUseEvent: "preToolUse"
29
+ }
30
+ };
11
31
  /* CLI command "ase hook" */
12
32
  export default class HookCommand {
13
33
  log;
@@ -38,12 +58,13 @@ export default class HookCommand {
38
58
  return this.expandReferences(content, path.dirname(abs), next);
39
59
  });
40
60
  }
41
- /* handler for "ase hook session-start" */
42
- async doSessionStart() {
43
- /* determine plugin root */
44
- const pluginRoot = process.env.CLAUDE_PLUGIN_ROOT ?? "";
61
+ /* handler for "ase hook session-start" (both tools) */
62
+ async doSessionStart(tool) {
63
+ /* determine plugin root (env var name differs per tool) */
64
+ const pluginRootVar = tool === "copilot" ? "COPILOT_PLUGIN_ROOT" : "CLAUDE_PLUGIN_ROOT";
65
+ const pluginRoot = process.env[pluginRootVar] ?? "";
45
66
  if (pluginRoot === "")
46
- throw new Error("CLAUDE_PLUGIN_ROOT environment variable is not set");
67
+ throw new Error(`${pluginRootVar} environment variable is not set`);
47
68
  /* determine path to external files */
48
69
  const filePkg = path.join(pluginRoot, ".claude-plugin", "plugin.json");
49
70
  const fileMd = path.join(pluginRoot, "meta", "ase-constitution.md");
@@ -64,11 +85,12 @@ export default class HookCommand {
64
85
  if (process.env.ASE_SETUP_DEV !== undefined)
65
86
  versionHints.push("**NOTICE:** *development* setup");
66
87
  const versionHint = versionHints.length > 0 ? "(" + versionHints.join(", ") + ")" : "";
67
- /* read session information */
88
+ /* read session information (Claude Code uses snake_case fields,
89
+ Copilot CLI uses camelCase fields) */
68
90
  const stdin = fs.readFileSync(0, "utf8");
69
91
  const input = stdin.trim() !== "" ? JSON.parse(stdin) : {};
70
92
  /* determine session id */
71
- const sessionId = input.session_id ?? "";
93
+ const sessionId = input.session_id ?? input.sessionId ?? "";
72
94
  /* establish config context */
73
95
  const cfg = new Config("config", configSchema, this.log, parseScope(`session:${sessionId}`));
74
96
  try {
@@ -107,14 +129,18 @@ export default class HookCommand {
107
129
  const val = cfg.get("agent.persona");
108
130
  if (typeof val === "string")
109
131
  persona = val;
110
- /* provide ASE information to Claude Code shell commands */
111
- const envFile = process.env.CLAUDE_ENV_FILE ?? "";
132
+ /* determine headless mode */
133
+ const headless = (process.env.ASE_HEADLESS ?? "false") === "true" ? "true" : "false";
134
+ /* provide ASE information to Claude Code shell commands
135
+ (Claude Code only -- Copilot CLI has no equivalent mechanism) */
136
+ const envFile = tool === "claude" ? (process.env.CLAUDE_ENV_FILE ?? "") : "";
112
137
  if (envFile !== "") {
113
138
  const script = `export ASE_VERSION="${versionCurrentPlugin}"\n` +
114
139
  `export ASE_USER_ID="${userId}"\n` +
115
140
  `export ASE_PROJECT_ID="${projectId}"\n` +
116
141
  `export ASE_TASK_ID="${taskId}"\n` +
117
- `export ASE_SESSION_ID="${sessionId}"\n`;
142
+ `export ASE_SESSION_ID="${sessionId}"\n` +
143
+ `export ASE_HEADLESS="${headless}"\n`;
118
144
  fs.appendFileSync(envFile, script, "utf8");
119
145
  }
120
146
  /* prepend ASE information to constitution markdown */
@@ -126,30 +152,49 @@ export default class HookCommand {
126
152
  `<ase-project-id>${projectId}</ase-project-id>\n` +
127
153
  `<ase-task-id>${taskId}</ase-task-id>\n` +
128
154
  `<ase-session-id>${sessionId}</ase-session-id>\n` +
155
+ `<ase-headless>${headless}</ase-headless>\n` +
129
156
  "\n" + md;
130
157
  /* expand all @<file> references manually */
131
158
  md = this.expandReferences(md, path.dirname(fileMd));
132
- fs.writeFileSync("/tmp/xxx", md, "utf8");
133
- /* inject markdown into session context */
134
- process.stdout.write(JSON.stringify({
159
+ /* inject markdown into session context.
160
+ Claude Code expects the context nested in "hookSpecificOutput";
161
+ Copilot CLI expects a flat top-level "additionalContext" field. */
162
+ const payload = tool === "claude" ? {
135
163
  "hookSpecificOutput": {
136
164
  "hookEventName": "SessionStart",
137
165
  "additionalContext": md
138
166
  }
139
- }));
167
+ } : {
168
+ "additionalContext": md
169
+ };
170
+ process.stdout.write(JSON.stringify(payload));
140
171
  return 0;
141
172
  }
142
- /* handler for "ase hook pre-tool-use" */
143
- doPreToolUse() {
173
+ /* handler for "ase hook pre-tool-use" (both tools) */
174
+ doPreToolUse(tool) {
175
+ const spec = toolSpecs[tool];
144
176
  /* read tool invocation information */
145
177
  const stdin = fs.readFileSync(0, "utf8");
146
178
  const input = stdin.trim() !== "" ? JSON.parse(stdin) : {};
147
- /* determine whether to auto-approve the tool invocation */
148
- const toolName = input.tool_name ?? "";
149
- const toolInput = input.tool_input ?? {};
179
+ /* determine whether to auto-approve the tool invocation
180
+ (field names and value shapes differ between tools) */
181
+ const toolName = typeof input[spec.toolNameField] === "string" ?
182
+ input[spec.toolNameField] : "";
183
+ let toolInput = {};
184
+ const rawInput = input[spec.toolInputField];
185
+ if (spec.toolInputIsString && typeof rawInput === "string") {
186
+ try {
187
+ toolInput = JSON.parse(rawInput);
188
+ }
189
+ catch (_e) {
190
+ /* best-effort: leave toolInput empty on parse failure */
191
+ }
192
+ }
193
+ else if (!spec.toolInputIsString && typeof rawInput === "object" && rawInput !== null)
194
+ toolInput = rawInput;
150
195
  let approve = false;
151
196
  let reason = "";
152
- if (toolName === "Bash" && /^ase(\s|$)/.test(toolInput.command ?? "")) {
197
+ if (toolName === spec.bashToolName && /^ase(\s|$)/.test(toolInput.command ?? "")) {
153
198
  approve = true;
154
199
  reason = "ASE CLI invocation auto-approved";
155
200
  }
@@ -157,28 +202,43 @@ export default class HookCommand {
157
202
  approve = true;
158
203
  reason = "ASE skill invocation auto-approved";
159
204
  }
160
- else if (/^mcp__plugin_ase_ase__.+/.test(toolName)) {
205
+ else if (spec.mcpToolNamePattern.test(toolName)) {
161
206
  approve = true;
162
207
  reason = "ASE MCP tool invocation auto-approved";
163
208
  }
164
- /* emit permission decision (or stay silent to defer to default flow) */
209
+ /* emit permission decision (or stay silent to defer to default flow).
210
+ Claude Code expects the decision nested in "hookSpecificOutput";
211
+ Copilot CLI expects flat top-level fields. */
165
212
  if (approve) {
166
- process.stdout.write(JSON.stringify({
213
+ const payload = spec.preToolUseWrapped ? {
167
214
  "hookSpecificOutput": {
168
- "hookEventName": "PreToolUse",
215
+ "hookEventName": spec.preToolUseEvent,
169
216
  "permissionDecision": "allow",
170
217
  "permissionDecisionReason": reason
171
218
  }
172
- }));
219
+ } : {
220
+ "permissionDecision": "allow",
221
+ "permissionDecisionReason": reason
222
+ };
223
+ process.stdout.write(JSON.stringify(payload));
173
224
  }
174
225
  return 0;
175
226
  }
227
+ /* parse and validate the --tool option */
228
+ parseTool(value) {
229
+ if (value !== "claude" && value !== "copilot")
230
+ throw new Error(`invalid --tool value: "${value}" (expected "claude" or "copilot")`);
231
+ return value;
232
+ }
176
233
  /* register commands */
177
234
  register(program) {
235
+ /* default for --tool derived from ASE_TOOL environment variable */
236
+ const envTool = process.env.ASE_TOOL ?? "";
237
+ const toolDflt = envTool !== "" ? envTool : "claude";
178
238
  /* register CLI top-level command "ase hook" */
179
239
  const hookCmd = program
180
240
  .command("hook")
181
- .description("Claude Code hook entry points")
241
+ .description("Claude Code and Copilot CLI hook entry points")
182
242
  .action(() => {
183
243
  hookCmd.outputHelp();
184
244
  process.exit(1);
@@ -186,16 +246,18 @@ export default class HookCommand {
186
246
  /* register CLI sub-command "ase hook session-start" */
187
247
  hookCmd
188
248
  .command("session-start")
189
- .description("handle Claude Code SessionStart hook event")
190
- .action(async () => {
191
- process.exit(await this.doSessionStart());
249
+ .description("handle SessionStart hook event")
250
+ .option("-t, --tool <tool>", "target tool (\"claude\" or \"copilot\")", toolDflt)
251
+ .action(async (opts) => {
252
+ process.exit(await this.doSessionStart(this.parseTool(opts.tool)));
192
253
  });
193
254
  /* register CLI sub-command "ase hook pre-tool-use" */
194
255
  hookCmd
195
256
  .command("pre-tool-use")
196
- .description("handle Claude Code PreToolUse hook event")
197
- .action(() => {
198
- process.exit(this.doPreToolUse());
257
+ .description("handle tool PreToolUse hook event")
258
+ .option("-t, --tool <tool>", "target tool (\"claude\" or \"copilot\")", toolDflt)
259
+ .action((opts) => {
260
+ process.exit(this.doPreToolUse(this.parseTool(opts.tool)));
199
261
  });
200
262
  }
201
263
  }
package/dst/ase-log.js CHANGED
@@ -61,7 +61,7 @@ export default class Log {
61
61
  line += `[${levels[idx].name.toUpperCase()}]`;
62
62
  line += `: ${msg}\n`;
63
63
  if (this._logFile === "-")
64
- process.stdout.write(line);
64
+ process.stderr.write(line);
65
65
  else if (this.stream !== null)
66
66
  this.stream.write(line);
67
67
  }
package/dst/ase-setup.js CHANGED
@@ -8,6 +8,10 @@ import { fileURLToPath } from "node:url";
8
8
  import { execa } from "execa";
9
9
  import which from "which";
10
10
  import Version from "./ase-version.js";
11
+ const toolSpecs = {
12
+ "claude": { cli: "claude", label: "Claude Code" },
13
+ "copilot": { cli: "copilot", label: "Copilot CLI" }
14
+ };
11
15
  /* CLI command "ase setup" */
12
16
  export default class SetupCommand {
13
17
  log;
@@ -65,21 +69,24 @@ export default class SetupCommand {
65
69
  }
66
70
  }
67
71
  }
68
- /* handler for "ase setup install" */
69
- async doInstall(dev) {
72
+ /* handler for "ase setup install" (both tools) */
73
+ async doInstall(tool, dev) {
74
+ const spec = toolSpecs[tool];
70
75
  await this.ensureTool("npm");
71
- await this.ensureTool("claude");
76
+ await this.ensureTool(spec.cli);
72
77
  this.log.write("info", `setup: install${dev ? "[dev]" : ""}: ` +
73
- `installing ASE Claude Code plugin (origin: ${dev ? "local" : "remote"})`);
74
- const source = dev ? process.cwd() : "rse/ase";
75
- await this.run("claude", ["plugin", "marketplace", "add", source]);
76
- await this.run("claude", ["plugin", "install", "ase@ase"], { retries: 3 });
78
+ `installing ASE ${spec.label} plugin (origin: ${dev ? "local" : "remote"})`);
79
+ const basedir = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..", "..");
80
+ const source = dev ? basedir : "rse/ase";
81
+ await this.run(spec.cli, ["plugin", "marketplace", "add", source]);
82
+ await this.run(spec.cli, ["plugin", "install", "ase@ase"], { retries: 3 });
77
83
  return 0;
78
84
  }
79
- /* handler for "ase setup update" */
80
- async doUpdate(force, dev) {
85
+ /* handler for "ase setup update" (both tools) */
86
+ async doUpdate(tool, force, dev) {
87
+ const spec = toolSpecs[tool];
81
88
  await this.ensureTool("npm");
82
- await this.ensureTool("claude");
89
+ await this.ensureTool(spec.cli);
83
90
  /* best-effort stop of background service */
84
91
  this.log.write("info", `setup: update${dev ? "[dev]" : ""}: ` +
85
92
  "stopping potentially running ASE service");
@@ -92,10 +99,10 @@ export default class SetupCommand {
92
99
  await this.run("npm", ["start", "build"], { cwd: tooldir });
93
100
  /* in development mode the local plugin files are already current
94
101
  but there is no version change in the plugin manifest,
95
- so just re-install the plugin to let Claude Code update its copy */
96
- this.log.write("info", "setup: update[dev]: re-install ASE Claude Code plugin (origin: local)");
97
- await this.run("claude", ["plugin", "uninstall", "ase@ase"], { ignoreError: "ASE Claude Code plugin not installed" });
98
- await this.run("claude", ["plugin", "install", "ase@ase"], { retries: 3 });
102
+ so just re-install the plugin to let the tool update its copy */
103
+ this.log.write("info", `setup: update[dev]: re-install ASE ${spec.label} plugin (origin: local)`);
104
+ await this.run(spec.cli, ["plugin", "uninstall", "ase@ase"], { ignoreError: `ASE ${spec.label} plugin not installed` });
105
+ await this.run(spec.cli, ["plugin", "install", "ase@ase"], { retries: 3 });
99
106
  }
100
107
  else {
101
108
  /* perform NPM version check */
@@ -108,26 +115,27 @@ export default class SetupCommand {
108
115
  /* update ASE CLI tool */
109
116
  this.log.write("info", `setup: update: updating ASE CLI tool: ${current} -> ${latest}`);
110
117
  await this.run("npm", ["update", "-g", "@rse/ase"]);
111
- /* update ASE Claude Code plugin */
112
- this.log.write("info", "setup: update: updating ASE Claude Code plugin");
113
- await this.run("claude", ["plugin", "marketplace", "update", "ase"]);
114
- await this.run("claude", ["plugin", "update", "ase@ase"]);
118
+ /* update ASE plugin */
119
+ this.log.write("info", `setup: update: updating ASE ${spec.label} plugin`);
120
+ await this.run(spec.cli, ["plugin", "marketplace", "update", "ase"]);
121
+ await this.run(spec.cli, ["plugin", "update", "ase@ase"]);
115
122
  }
116
123
  return 0;
117
124
  }
118
- /* handler for "ase setup uninstall" */
119
- async doUninstall(dev) {
125
+ /* handler for "ase setup uninstall" (both tools) */
126
+ async doUninstall(tool, dev) {
127
+ const spec = toolSpecs[tool];
120
128
  await this.ensureTool("npm");
121
- await this.ensureTool("claude");
129
+ await this.ensureTool(spec.cli);
122
130
  /* best-effort stop of background service */
123
131
  this.log.write("info", `setup: uninstall${dev ? "[dev]" : ""}: ` +
124
132
  "stopping potentially running ASE service");
125
133
  await this.run("ase", ["service", "stop"], { quiet: true });
126
- /* uninstall ASE Claude Code plugin */
134
+ /* uninstall ASE plugin */
127
135
  this.log.write("info", `setup: uninstall${dev ? "[dev]" : ""}: ` +
128
- `uninstalling ASE Claude Code plugin (origin: ${dev ? "local" : "remote"})`);
129
- await this.run("claude", ["plugin", "uninstall", "ase@ase"], { ignoreError: "ASE Claude Code plugin not installed" });
130
- await this.run("claude", ["plugin", "marketplace", "remove", "ase"], { ignoreError: "ASE Claude Code plugin marketplace not registered" });
136
+ `uninstalling ASE ${spec.label} plugin (origin: ${dev ? "local" : "remote"})`);
137
+ await this.run(spec.cli, ["plugin", "uninstall", "ase@ase"], { ignoreError: `ASE ${spec.label} plugin not installed` });
138
+ await this.run(spec.cli, ["plugin", "marketplace", "remove", "ase"], { ignoreError: `ASE ${spec.label} plugin marketplace not registered` });
131
139
  /* uninstall ASE CLI tool (non-development only) */
132
140
  if (!dev) {
133
141
  this.log.write("info", "setup: uninstall: uninstalling ASE CLI tool (origin: remote)");
@@ -135,11 +143,20 @@ export default class SetupCommand {
135
143
  }
136
144
  return 0;
137
145
  }
146
+ /* parse and validate the --tool option */
147
+ parseTool(value) {
148
+ if (value !== "claude" && value !== "copilot")
149
+ throw new Error(`invalid --tool value: "${value}" (expected "claude" or "copilot")`);
150
+ return value;
151
+ }
138
152
  /* register commands */
139
153
  register(program) {
140
154
  /* default for --dev derived from ASE_SETUP_DEV environment variable */
141
155
  const envDev = process.env.ASE_SETUP_DEV ?? "";
142
156
  const devDflt = envDev !== "" && envDev !== "0" && envDev.toLowerCase() !== "false";
157
+ /* default for --tool derived from ASE_TOOL environment variable */
158
+ const envTool = process.env.ASE_TOOL ?? "";
159
+ const toolDflt = envTool !== "" ? envTool : "claude";
143
160
  /* register CLI top-level command "ase setup" */
144
161
  const setupCmd = program
145
162
  .command("setup")
@@ -151,27 +168,30 @@ export default class SetupCommand {
151
168
  /* register CLI sub-command "ase setup install" */
152
169
  setupCmd
153
170
  .command("install")
154
- .description("install the ASE Claude Code plugin")
171
+ .description("install the ASE plugin for a tool")
172
+ .option("-t, --tool <tool>", "target tool (\"claude\" or \"copilot\")", toolDflt)
155
173
  .option("-d, --dev", "use local working copy instead of remote repository", devDflt)
156
174
  .action(async (opts) => {
157
- process.exit(await this.doInstall(opts.dev));
175
+ process.exit(await this.doInstall(this.parseTool(opts.tool), opts.dev));
158
176
  });
159
177
  /* register CLI sub-command "ase setup update" */
160
178
  setupCmd
161
179
  .command("update")
162
- .description("update the ASE tool and the ASE Claude Code plugin")
180
+ .description("update the ASE tool and the ASE plugin for a tool")
181
+ .option("-t, --tool <tool>", "target tool (\"claude\" or \"copilot\")", toolDflt)
163
182
  .option("-f, --force", "always perform the update, even if already at latest version", false)
164
183
  .option("-d, --dev", "use local working copy instead of remote repository", devDflt)
165
184
  .action(async (opts) => {
166
- process.exit(await this.doUpdate(opts.force, opts.dev));
185
+ process.exit(await this.doUpdate(this.parseTool(opts.tool), opts.force, opts.dev));
167
186
  });
168
187
  /* register CLI sub-command "ase setup uninstall" */
169
188
  setupCmd
170
189
  .command("uninstall")
171
- .description("uninstall the ASE Claude Code plugin and the ASE tool")
190
+ .description("uninstall the ASE plugin for a tool and the ASE tool")
191
+ .option("-t, --tool <tool>", "target tool (\"claude\" or \"copilot\")", toolDflt)
172
192
  .option("-d, --dev", "use local working copy instead of remote repository", devDflt)
173
193
  .action(async (opts) => {
174
- process.exit(await this.doUninstall(opts.dev));
194
+ process.exit(await this.doUninstall(this.parseTool(opts.tool), opts.dev));
175
195
  });
176
196
  }
177
197
  }
@@ -161,11 +161,21 @@ export default class StatuslineCommand {
161
161
  constructor(log) {
162
162
  this.log = log;
163
163
  }
164
+ /* parse and validate the --tool option */
165
+ parseTool(value) {
166
+ if (value !== "claude" && value !== "copilot")
167
+ throw new Error(`invalid --tool value: "${value}" (expected "claude" or "copilot")`);
168
+ return value;
169
+ }
164
170
  /* register commands */
165
171
  register(program) {
172
+ /* default for --tool derived from ASE_TOOL environment variable */
173
+ const envTool = process.env.ASE_TOOL ?? "";
174
+ const toolDflt = envTool !== "" ? envTool : "claude";
166
175
  program
167
176
  .command("statusline")
168
- .description("Render Claude Code statusline from stdin JSON")
177
+ .description("Render Claude Code or GitHub Copilot CLI statusline from stdin JSON")
178
+ .option("-t, --tool <tool>", "target tool (\"claude\" or \"copilot\")", toolDflt)
169
179
  .option("-w, --width <n>", "force terminal width to <n> characters (0 = auto-detect via /dev/tty)", parseInteger("--width"), 0)
170
180
  .option("-m, --margin <n>", "reduce maximum used terminal width by <n> characters on each side", parseInteger("--margin"), 2)
171
181
  .option("--no-icons", "disable icons in placeholder rendering")
@@ -175,6 +185,8 @@ export default class StatuslineCommand {
175
185
  "(color: black, red, green, yellow, blue, magenta, cyan, white, default) " +
176
186
  "(default: single line \"%m %e %t\")")
177
187
  .action(async (lines, opts) => {
188
+ /* validate target tool */
189
+ const tool = this.parseTool(opts.tool);
178
190
  /* read all of stdin */
179
191
  const input = await readStdin();
180
192
  /* parse JSON data */
@@ -187,6 +199,13 @@ export default class StatuslineCommand {
187
199
  this.log.write("error", `statusline: invalid JSON on stdin: ${message}`);
188
200
  process.exit(1);
189
201
  }
202
+ /* normalize Copilot CLI's top-level "cwd" into the
203
+ "workspace.current_dir" structure shared with Claude Code */
204
+ if (tool === "copilot"
205
+ && (data.workspace?.current_dir === undefined || data.workspace.current_dir === "")
206
+ && typeof data.cwd === "string" && data.cwd !== "") {
207
+ data.workspace = { ...(data.workspace ?? {}), current_dir: data.cwd };
208
+ }
190
209
  /* determine effective terminal width and budget */
191
210
  const width = opts.width > 0 ? opts.width : detectTermWidth();
192
211
  const budget = width > 0 ? width - 2 * opts.margin : 0;
@@ -228,7 +247,7 @@ export default class StatuslineCommand {
228
247
  let sessCache = null;
229
248
  const getSession = () => {
230
249
  if (sessCache === null)
231
- sessCache = data.session_name ?? data.session_id ?? "unknown";
250
+ sessCache = data.session_id ?? "unknown";
232
251
  return sessCache;
233
252
  };
234
253
  let cfgCache = null;
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "homepage": "http://github.com/rse/ase",
7
7
  "repository": { "url": "git+https://github.com/rse/ase.git", "type": "git" },
8
8
  "bugs": { "url": "http://github.com/rse/ase/issues" },
9
- "version": "0.0.21",
9
+ "version": "0.0.22",
10
10
  "license": "GPL-3.0-only",
11
11
  "author": {
12
12
  "name": "Dr. Ralf S. Engelschall",