@autohq/cli 0.1.214 → 0.1.216
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/agent-bridge.js +1 -1
- package/dist/index.js +9 -2
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -26801,7 +26801,7 @@ Object.assign(lookup, {
|
|
|
26801
26801
|
// package.json
|
|
26802
26802
|
var package_default = {
|
|
26803
26803
|
name: "@autohq/cli",
|
|
26804
|
-
version: "0.1.
|
|
26804
|
+
version: "0.1.216",
|
|
26805
26805
|
license: "SEE LICENSE IN README.md",
|
|
26806
26806
|
publishConfig: {
|
|
26807
26807
|
access: "public"
|
package/dist/index.js
CHANGED
|
@@ -21829,7 +21829,7 @@ var init_package = __esm({
|
|
|
21829
21829
|
"package.json"() {
|
|
21830
21830
|
package_default = {
|
|
21831
21831
|
name: "@autohq/cli",
|
|
21832
|
-
version: "0.1.
|
|
21832
|
+
version: "0.1.216",
|
|
21833
21833
|
license: "SEE LICENSE IN README.md",
|
|
21834
21834
|
publishConfig: {
|
|
21835
21835
|
access: "public"
|
|
@@ -37046,6 +37046,13 @@ async function setupAction(rawContext, options) {
|
|
|
37046
37046
|
apiBaseUrl
|
|
37047
37047
|
});
|
|
37048
37048
|
context.writeOutput("");
|
|
37049
|
+
context.writeOutput(
|
|
37050
|
+
"To deploy agents using Auto, you add YAML files to the `.auto` directory in your repo."
|
|
37051
|
+
);
|
|
37052
|
+
context.writeOutput(
|
|
37053
|
+
"To kick things off, Auto will open a PR adding an onboarding agent that walks you through the rest of the process. Once you merge the PR, add `@auto` to a Slack channel, tag `@auto.onboarding` in a message, and that agent will take it from there."
|
|
37054
|
+
);
|
|
37055
|
+
context.writeOutput("");
|
|
37049
37056
|
context.writeOutput("Opening the onboarding PR...");
|
|
37050
37057
|
const response = await client.createSetupOnboardingPullRequest(
|
|
37051
37058
|
{
|
|
@@ -37063,7 +37070,7 @@ async function setupAction(rawContext, options) {
|
|
|
37063
37070
|
heading: "Review the onboarding PR",
|
|
37064
37071
|
body: [
|
|
37065
37072
|
"Auto will open the pull request it just created.",
|
|
37066
|
-
"Reviewing and merging this PR adds the onboarding agent to `.auto
|
|
37073
|
+
"Reviewing and merging this PR adds the onboarding agent to `.auto/`. GitHub Sync applies it after merge; then add `@auto` to a Slack channel and tag `@auto.onboarding` to start."
|
|
37067
37074
|
],
|
|
37068
37075
|
prompt: "Press Enter to open the PR."
|
|
37069
37076
|
});
|