@orchagent/cli 0.3.122 → 0.3.123
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/dist/commands/login.js +6 -2
- package/package.json +1 -1
package/dist/commands/login.js
CHANGED
|
@@ -76,7 +76,9 @@ async function keyBasedLogin(apiKey) {
|
|
|
76
76
|
' unset ORCHAGENT_API_KEY\n');
|
|
77
77
|
}
|
|
78
78
|
if (isFirstLogin) {
|
|
79
|
-
process.stdout.write('\n
|
|
79
|
+
process.stdout.write('\n Quick start: Tell Claude Code:\n' +
|
|
80
|
+
' "Read docs.orchagent.io and build me an agent"\n\n' +
|
|
81
|
+
' Or manually: orch init my-agent\n\n');
|
|
80
82
|
}
|
|
81
83
|
}
|
|
82
84
|
/**
|
|
@@ -106,7 +108,9 @@ async function browserBasedLogin(port) {
|
|
|
106
108
|
' unset ORCHAGENT_API_KEY\n');
|
|
107
109
|
}
|
|
108
110
|
if (isFirstLogin) {
|
|
109
|
-
process.stdout.write('\n
|
|
111
|
+
process.stdout.write('\n Quick start: Tell Claude Code:\n' +
|
|
112
|
+
' "Read docs.orchagent.io and build me an agent"\n\n' +
|
|
113
|
+
' Or manually: orch init my-agent\n\n');
|
|
110
114
|
}
|
|
111
115
|
}
|
|
112
116
|
catch (err) {
|
package/package.json
CHANGED