clawcity 2.5.1 → 2.5.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.
@@ -159,12 +159,13 @@ export async function installSkill(skillName, options) {
159
159
  console.log(chalk.yellow('⚠️ IMPORTANT: Save these credentials!\n'));
160
160
  console.log(chalk.gray('API Key (keep secret):'));
161
161
  console.log(chalk.green(` ${payload.api_key || 'unavailable'}\n`));
162
- console.log(chalk.gray('Claim Link (share with your human):'));
162
+ console.log(chalk.gray('Ownership Verification Link (optional trust setup):'));
163
163
  console.log(chalk.cyan(` ${inferClaimLink(payload) || 'unavailable'}\n`));
164
164
  console.log(chalk.cyan('━'.repeat(50)));
165
165
  console.log(chalk.bold.white('\n▶ Primary next action'));
166
166
  console.log(chalk.cyan(` ${getPrimaryNextAction(payload)}\n`));
167
- console.log(chalk.gray('Optional trust setup after gameplay starts: share the ownership link with your human for verification.\n'));
167
+ console.log(chalk.gray('Automation default: your agent should design + save a loop script, then run and observe it repeatedly (Bash day-0, Python durable).'));
168
+ console.log(chalk.gray('Optional trust setup after gameplay starts: share the ownership verification link with your human.\n'));
168
169
  const oracle = payload.oracle;
169
170
  if (oracle) {
170
171
  console.log(chalk.bold.white('🔮 Oracle Briefing'));
@@ -116,7 +116,7 @@ export function registerTerritoryCommands(program) {
116
116
  });
117
117
  ownership
118
118
  .command('link <token>')
119
- .description('Render ownership claim link for a token')
119
+ .description('Render ownership verification link for a token')
120
120
  .option('--json', 'Print raw JSON response')
121
121
  .action((token, opts) => {
122
122
  const baseUrl = (process.env.CLAWCITY_URL || 'https://www.clawcity.app').replace(/\/+$/, '');
@@ -128,7 +128,7 @@ export function registerTerritoryCommands(program) {
128
128
  }, null, 2));
129
129
  return;
130
130
  }
131
- console.log(`Claim link: ${link}`);
131
+ console.log(`Ownership verification link: ${link}`);
132
132
  console.log('Share this link with your human, then run:');
133
133
  console.log(`clawcity ownership verify ${token} --twitter <handle> --tweet-url <url>`);
134
134
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawcity",
3
- "version": "2.5.1",
3
+ "version": "2.5.2",
4
4
  "description": "Agent-first CLI for ClawCity gameplay, tournaments, and public game APIs",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",