@aiam/ciba 0.9.5 → 0.9.6
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/ciba.mjs +30 -0
- package/package.json +1 -1
- package/token.mjs +13 -1
package/ciba.mjs
CHANGED
|
@@ -689,6 +689,35 @@ const refreshCmd = defineCommand({
|
|
|
689
689
|
},
|
|
690
690
|
});
|
|
691
691
|
|
|
692
|
+
const inspectCmd = defineCommand({
|
|
693
|
+
meta: { description: 'Open live device doc inspector in browser' },
|
|
694
|
+
args: {
|
|
695
|
+
url: { ...serverArg },
|
|
696
|
+
},
|
|
697
|
+
async run({ args }) {
|
|
698
|
+
const serverUrl = args.url || process.env.CIBA_URL || loadConfig().url || DEFAULT_SERVER_URL;
|
|
699
|
+
const keys = loadOrGenerateEcdhKeys();
|
|
700
|
+
const { jwt: deviceJwt } = signDeviceJwt(keys.privateKey, keys.publicKey);
|
|
701
|
+
|
|
702
|
+
// POST /inspect with device JWT to get a one-time inspect code.
|
|
703
|
+
const res = await fetch(`${serverUrl}/inspect`, {
|
|
704
|
+
method: 'POST',
|
|
705
|
+
headers: { Authorization: `Bearer ${deviceJwt}` },
|
|
706
|
+
});
|
|
707
|
+
if (!res.ok) {
|
|
708
|
+
const err = await res.json().catch(() => ({}));
|
|
709
|
+
process.stderr.write(`Error: ${err.error || res.status}\n`);
|
|
710
|
+
process.exit(1);
|
|
711
|
+
}
|
|
712
|
+
const { code, url } = await res.json();
|
|
713
|
+
process.stderr.write(`→ inspect code: ${code}\n`);
|
|
714
|
+
process.stderr.write(`→ opening: ${url}\n`);
|
|
715
|
+
const cmd = process.platform === 'darwin' ? 'open' : process.platform === 'win32' ? 'start ""' : 'xdg-open';
|
|
716
|
+
exec(`${cmd} "${url}"`);
|
|
717
|
+
process.exit(0);
|
|
718
|
+
},
|
|
719
|
+
});
|
|
720
|
+
|
|
692
721
|
const logoutCmd = defineCommand({
|
|
693
722
|
meta: { description: 'Clear device keys, session and config (next login generates a new device identity)' },
|
|
694
723
|
args: {},
|
|
@@ -764,6 +793,7 @@ const main = defineCommand({
|
|
|
764
793
|
login: loginCmd,
|
|
765
794
|
token: tokenCmd,
|
|
766
795
|
refresh: refreshCmd,
|
|
796
|
+
inspect: inspectCmd,
|
|
767
797
|
stop: stopCmd,
|
|
768
798
|
status: statusCmd,
|
|
769
799
|
logout: logoutCmd,
|
package/package.json
CHANGED
package/token.mjs
CHANGED
|
@@ -130,7 +130,17 @@ function tryGet(resourcesMap, deviceDoc, res) {
|
|
|
130
130
|
|
|
131
131
|
// ─── Output ───────────────────────────────────────────────────────────────────
|
|
132
132
|
|
|
133
|
-
|
|
133
|
+
// Log entries go to Yjs `log` map on device doc (visible in ciba inspect).
|
|
134
|
+
// Before doc is synced, fall back to stderr.
|
|
135
|
+
let _logMap = null;
|
|
136
|
+
let _logIdx = 0;
|
|
137
|
+
function log(msg) {
|
|
138
|
+
if (_logMap) {
|
|
139
|
+
_logMap.set(`${Date.now()}-${_logIdx++}`, { ts: new Date().toISOString(), msg });
|
|
140
|
+
} else {
|
|
141
|
+
process.stderr.write(msg + '\n');
|
|
142
|
+
}
|
|
143
|
+
}
|
|
134
144
|
|
|
135
145
|
function output(token) {
|
|
136
146
|
if (jsonOut) {
|
|
@@ -170,6 +180,8 @@ await new Promise((resolve, reject) => {
|
|
|
170
180
|
provider.on('authenticationFailed', ({ reason }) => { clearTimeout(t); reject(new Error(reason)); });
|
|
171
181
|
});
|
|
172
182
|
|
|
183
|
+
// Switch logging to Yjs after sync — ciba inspect can now see entries.
|
|
184
|
+
_logMap = deviceDoc.getMap('log');
|
|
173
185
|
log('→ synced');
|
|
174
186
|
|
|
175
187
|
// Write public key
|