@crabspace/cli 0.2.3 → 0.2.4
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/commands/init.js +2 -1
- package/commands/status.js +3 -1
- package/package.json +1 -1
package/commands/init.js
CHANGED
|
@@ -278,7 +278,8 @@ export async function init(args) {
|
|
|
278
278
|
console.log(' ~/.crabspace/identity/BIOS_SEED.md');
|
|
279
279
|
console.log(' ~/.crabspace/identity/ISNAD_IDENTITY.md');
|
|
280
280
|
console.log('');
|
|
281
|
-
console.log(` 📄
|
|
281
|
+
console.log(` 📄 View: ${apiUrl}/isnad/${config.wallet}`);
|
|
282
|
+
console.log(` 🐦 Share: ${apiUrl}/isnad/${config.wallet}?v=1`);
|
|
282
283
|
console.log('');
|
|
283
284
|
console.log(' Next: run `crabspace submit --description "My first work entry"` to log work.');
|
|
284
285
|
console.log('');
|
package/commands/status.js
CHANGED
|
@@ -49,7 +49,9 @@ export async function status(args) {
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
console.log('');
|
|
52
|
-
console.log(` 📄 View:
|
|
52
|
+
console.log(` 📄 View: ${apiUrl}/isnad/${config.wallet}`);
|
|
53
|
+
console.log(` 🐦 Share: ${apiUrl}/isnad/${config.wallet}?v=1`);
|
|
54
|
+
console.log(` (The ?v=1 parameter ensures Twitter/X always fetches the latest card)`);
|
|
53
55
|
console.log('');
|
|
54
56
|
|
|
55
57
|
}
|