dactyclaw 1.2.0 → 1.2.1

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.
@@ -15,7 +15,9 @@ program
15
15
  .action(async (options) => {
16
16
  const configPath = path.join(process.cwd(), 'agent.json');
17
17
  if (!fs.existsSync(configPath)) {
18
- console.error('❌ Error: agent.json not found. Run `npx dacty-create <name>` first.');
18
+ console.error('❌ Error: agent.json not found. You must create an Agent first!');
19
+ console.error('\n💡 To create an agent, run this command with your desired Name and Ticker:');
20
+ console.error(' npx dacty-create "MyAgentName" --ticker "TICKER"');
19
21
  process.exit(1);
20
22
  }
21
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dactyclaw",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "**Agent Monitor & Deployer for Clawn Ecosystem on Base**",
5
5
  "main": "proxy.js",
6
6
  "bin": {
@@ -30,5 +30,6 @@
30
30
  "dotenv": "^17.3.1",
31
31
  "ethers": "^6.16.0",
32
32
  "viem": "^2.46.3"
33
- }
33
+ },
34
+ "devDependencies": {}
34
35
  }