@arbidocs/cli 0.3.75 → 0.3.77

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/CHANGELOG.md CHANGED
@@ -1,12 +1,39 @@
1
1
  # Changelog
2
2
 
3
- ## v0.3.75
3
+ ## v0.3.77
4
+
5
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.76...HEAD)
6
+
7
+ ### 🚀 Enhancements
8
+
9
+ - **chronology:** Persist & display saved chronology; manual generate/regenerate ([e7a69bac](https://github.com/arbicity/ARBI-frontend/commit/e7a69bac))
10
+ - Add show_chronology feature flag to Experimental settings ([e4fb4830](https://github.com/arbicity/ARBI-frontend/commit/e4fb4830))
11
+
12
+ ## v0.3.76
4
13
 
5
14
  [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.74...HEAD)
6
15
 
7
- ### 🏡 Chore
16
+ ### 🩹 Fixes
17
+
18
+ - **auth:** Stop SSO-callback 401 storm + third-party-cookie reliance ([#809](https://github.com/arbicity/ARBI-frontend/pull/809))
19
+ - Reconcile DM thread against persisted notifications so missed ws pushes self-heal " ([#807](https://github.com/arbicity/ARBI-frontend/pull/807), [#811](https://github.com/arbicity/ARBI-frontend/pull/811))
20
+ - **auth:** Require isArbiAuthenticated in the session gate to stop SSO-callback 401 storm ([#812](https://github.com/arbicity/ARBI-frontend/pull/812))
21
+ - **sdk:** Keep the DM listener reconnecting through drops and token expiry ([#815](https://github.com/arbicity/ARBI-frontend/pull/815))
22
+
23
+ ## v0.3.74
24
+
25
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.73...HEAD)
26
+
27
+ ### 🚀 Enhancements
28
+
29
+ - Skills marketplace UI — wrench icon, /create-skill, live skills_updated refresh ([#805](https://github.com/arbicity/ARBI-frontend/pull/805))
30
+ - Skills on by default, wrench empty-state, + skills tests ([#806](https://github.com/arbicity/ARBI-frontend/pull/806))
31
+
32
+ ### 🩹 Fixes
8
33
 
9
- - Release v0.3.74 [skip ci] ([a895eccc1](https://github.com/arbicity/ARBI-frontend/commit/a895eccc1))
34
+ - Fall back to multipart upload when workspace key is unavailable ([#803](https://github.com/arbicity/ARBI-frontend/pull/803))
35
+ - Show callback URL fallback when MCP OAuth redirect targets localhost ([#804](https://github.com/arbicity/ARBI-frontend/pull/804))
36
+ - Reconcile DM thread against persisted notifications so missed ws pushes self-heal ([#807](https://github.com/arbicity/ARBI-frontend/pull/807))
10
37
 
11
38
  ## v0.3.73
12
39
 
package/dist/index.js CHANGED
@@ -3694,7 +3694,7 @@ function getLatestVersion(skipCache = false) {
3694
3694
  }
3695
3695
  }
3696
3696
  function getCurrentVersion() {
3697
- return "0.3.75";
3697
+ return "0.3.77";
3698
3698
  }
3699
3699
  function readChangelog(fromVersion, toVersion) {
3700
3700
  try {
@@ -3747,17 +3747,17 @@ function showChangelog(fromVersion, toVersion) {
3747
3747
  async function checkForUpdates(autoUpdate) {
3748
3748
  try {
3749
3749
  const latest = getLatestVersion();
3750
- if (!latest || latest === "0.3.75") return;
3750
+ if (!latest || latest === "0.3.77") return;
3751
3751
  if (autoUpdate) {
3752
3752
  warn(`
3753
- Your arbi version is out of date (${"0.3.75"} \u2192 ${latest}). Updating...`);
3753
+ Your arbi version is out of date (${"0.3.77"} \u2192 ${latest}). Updating...`);
3754
3754
  child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
3755
- showChangelog("0.3.75", latest);
3755
+ showChangelog("0.3.77", latest);
3756
3756
  console.log(`Updated to ${latest}.`);
3757
3757
  } else {
3758
3758
  warn(
3759
3759
  `
3760
- Your arbi version is out of date (${"0.3.75"} \u2192 ${latest}).
3760
+ Your arbi version is out of date (${"0.3.77"} \u2192 ${latest}).
3761
3761
  Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
3762
3762
  );
3763
3763
  }
@@ -3789,10 +3789,10 @@ function markNagShown(latest) {
3789
3789
  function hintUpdateOnError() {
3790
3790
  try {
3791
3791
  const cached = readCache();
3792
- if (!cached || cached.latest === "0.3.75") return;
3792
+ if (!cached || cached.latest === "0.3.77") return;
3793
3793
  if (!shouldShowNag(cached.latest)) return;
3794
3794
  warn(
3795
- `Your arbi version is out of date (${"0.3.75"} \u2192 ${cached.latest}). Run "arbi update".`
3795
+ `Your arbi version is out of date (${"0.3.77"} \u2192 ${cached.latest}). Run "arbi update".`
3796
3796
  );
3797
3797
  markNagShown(cached.latest);
3798
3798
  } catch {
@@ -4261,14 +4261,12 @@ async function startListening(agentName, config) {
4261
4261
  const sessionId = arbi.session.getState().userExtId ?? "default";
4262
4262
  const agentId = backend === "openclaw" ? sessionId.toLowerCase() : void 0;
4263
4263
  const orchestrator = createOrchestrator(backend, sessionId, agentId);
4264
- const accessToken = arbi.session.getState().accessToken;
4265
- if (!accessToken) {
4264
+ if (!arbi.session.getState().accessToken) {
4266
4265
  error("No access token \u2014 run `arbi login` first.");
4267
4266
  process.exit(1);
4268
4267
  }
4269
4268
  const listener = await sdk.startDmListener({
4270
4269
  arbi,
4271
- accessToken,
4272
4270
  baseUrl: fullConfig.baseUrl,
4273
4271
  crypto: crypto2,
4274
4272
  orchestrator,
@@ -10228,7 +10226,7 @@ console.info = (...args) => {
10228
10226
  _origInfo(...args);
10229
10227
  };
10230
10228
  var program = new commander.Command();
10231
- program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.75").showHelpAfterError(true).showSuggestionAfterError(true);
10229
+ program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.77").showHelpAfterError(true).showSuggestionAfterError(true);
10232
10230
  registerConfigCommand(program);
10233
10231
  registerLoginCommand(program);
10234
10232
  registerRegisterCommand(program);