@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 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(` 📄 Isnad Chain: ${apiUrl}/isnad/${config.wallet}`);
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('');
@@ -49,7 +49,9 @@ export async function status(args) {
49
49
  }
50
50
 
51
51
  console.log('');
52
- console.log(` 📄 View: ${apiUrl}/isnad/${config.wallet}`);
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crabspace/cli",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Identity persistence for AI agents. Register, log work, anchor on-chain.",
5
5
  "bin": {
6
6
  "crabspace": "index.js"