@tryarcanist/cli 0.1.188 → 0.1.189
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/index.js +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1086,9 +1086,12 @@ var AUTOMATION_ERROR_HINTS = {
|
|
|
1086
1086
|
invalid_model: "Model is unknown or not selectable for its backend. Run `arcanist automations create --help` for allowed models.",
|
|
1087
1087
|
repo_not_available: "Check that the token owner has GitHub access and Arcanist is installed for that repo.",
|
|
1088
1088
|
duplicate_rule: "An enabled automation already exists for this repo, cron, and prompt.",
|
|
1089
|
+
invalid_skill: "Use a leading slash skill that exists in the selected repo, for example: /audit-prod-docs",
|
|
1089
1090
|
rule_cap_reached: "Delete or disable an existing automation before creating another one. The cap is 20 enabled rules.",
|
|
1090
1091
|
installation_unresolved: "Reconnect or reinstall the GitHub integration for that repository, then retry.",
|
|
1091
|
-
model_not_available: "That model's backend (Claude/opencode) is limited to Arcanist team businesses; use the codex default or a codex model."
|
|
1092
|
+
model_not_available: "That model's backend (Claude/opencode) is limited to Arcanist team businesses; use the codex default or a codex model.",
|
|
1093
|
+
repo_skills_unavailable: "Arcanist could not verify the repo's skills right now. Retry once GitHub skill discovery is healthy.",
|
|
1094
|
+
unknown_skill: "That leading slash skill does not exist in the selected repository."
|
|
1092
1095
|
};
|
|
1093
1096
|
var MAX_ALL_PAGES = 1e3;
|
|
1094
1097
|
async function createAutomationCommand(repoUrl, promptArg, options, command) {
|