abelworkflow 0.8.1 → 0.8.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/lib/cli.mjs +1 -8
  2. package/package.json +1 -1
package/lib/cli.mjs CHANGED
@@ -1945,14 +1945,7 @@ function buildCodexConfigContent(currentContent, {
1945
1945
  }
1946
1946
 
1947
1947
  function mergeCodexAuthData(auth, envKey, apiKey, legacyEnvKeys = []) {
1948
- const nextAuth = auth && typeof auth === "object" ? { ...auth } : {};
1949
- for (const key of legacyEnvKeys) {
1950
- if (key && key !== envKey) {
1951
- delete nextAuth[key];
1952
- }
1953
- }
1954
- nextAuth[envKey] = apiKey;
1955
- return nextAuth;
1948
+ return { [envKey]: apiKey };
1956
1949
  }
1957
1950
 
1958
1951
  async function installCliTool(tool) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abelworkflow",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Install AbelWorkflow into ~/.agents and create Claude/Codex symlinks.",
5
5
  "type": "module",
6
6
  "scripts": {