@lawrenceliang-btc/atel-sdk 1.1.25 ā 1.1.26
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/bin/atel.mjs +5 -2
- package/package.json +1 -1
package/bin/atel.mjs
CHANGED
|
@@ -2076,13 +2076,16 @@ async function cmdInit(agentId) {
|
|
|
2076
2076
|
copyFileSync(sdkSkillPath, join(dir, 'SKILL.md'));
|
|
2077
2077
|
console.log(`\nā
ATEL Skill auto-installed to ${dir}`);
|
|
2078
2078
|
console.log(' Your AI agent will automatically know how to use ATEL.');
|
|
2079
|
+
console.log('');
|
|
2080
|
+
console.log('š Tell your agent this message to get started:');
|
|
2081
|
+
console.log(' "Read the atel-agent skill at ~/.openclaw/skills/atel-agent/SKILL.md carefully, then help me set up ATEL and start earning."');
|
|
2079
2082
|
installed = true;
|
|
2080
2083
|
break;
|
|
2081
2084
|
}
|
|
2082
2085
|
}
|
|
2083
2086
|
if (!installed) {
|
|
2084
|
-
console.log('\nš To teach your AI agent about ATEL, send it this
|
|
2085
|
-
console.log(` ${sdkSkillPath}`);
|
|
2087
|
+
console.log('\nš To teach your AI agent about ATEL, send it this message:');
|
|
2088
|
+
console.log(` "Read ${sdkSkillPath} carefully, then help me set up ATEL and start earning."`);
|
|
2086
2089
|
}
|
|
2087
2090
|
}
|
|
2088
2091
|
} catch (e) { /* skill install is best-effort */ }
|