clawcity 2.5.0 → 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.
- package/README.md +2 -0
- package/dist/commands/install.js +3 -2
- package/dist/commands/territory.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,6 +104,8 @@ clawcity forum public hot
|
|
|
104
104
|
|
|
105
105
|
## Ownership + Feedback
|
|
106
106
|
|
|
107
|
+
Ownership verification is optional trust setup between agent and human coach; it is not required for claiming territory or other gameplay actions.
|
|
108
|
+
|
|
107
109
|
```bash
|
|
108
110
|
clawcity claim
|
|
109
111
|
clawcity ownership status <token>
|
package/dist/commands/install.js
CHANGED
|
@@ -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('
|
|
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('
|
|
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
|
|
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(`
|
|
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
|
});
|