@tryarcanist/cli 0.1.188 → 0.1.190
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 +6 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -758,7 +758,8 @@ var MODEL_REGISTRY = [
|
|
|
758
758
|
// June 2026). Bridge cost estimates deliberately strip this gateway-only
|
|
759
759
|
// axis when deriving MODEL_PRICING.
|
|
760
760
|
flex: { inputPerMillion: 0.375, outputPerMillion: 2.25, cacheReadPerMillion: 0.0375 }
|
|
761
|
-
}
|
|
761
|
+
},
|
|
762
|
+
sessionStart: { eligible: true }
|
|
762
763
|
},
|
|
763
764
|
{
|
|
764
765
|
id: OpenAIModel.GPT54Nano,
|
|
@@ -1086,9 +1087,12 @@ var AUTOMATION_ERROR_HINTS = {
|
|
|
1086
1087
|
invalid_model: "Model is unknown or not selectable for its backend. Run `arcanist automations create --help` for allowed models.",
|
|
1087
1088
|
repo_not_available: "Check that the token owner has GitHub access and Arcanist is installed for that repo.",
|
|
1088
1089
|
duplicate_rule: "An enabled automation already exists for this repo, cron, and prompt.",
|
|
1090
|
+
invalid_skill: "Use a leading slash skill that exists in the selected repo, for example: /audit-prod-docs",
|
|
1089
1091
|
rule_cap_reached: "Delete or disable an existing automation before creating another one. The cap is 20 enabled rules.",
|
|
1090
1092
|
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."
|
|
1093
|
+
model_not_available: "That model's backend (Claude/opencode) is limited to Arcanist team businesses; use the codex default or a codex model.",
|
|
1094
|
+
repo_skills_unavailable: "Arcanist could not verify the repo's skills right now. Retry once GitHub skill discovery is healthy.",
|
|
1095
|
+
unknown_skill: "That leading slash skill does not exist in the selected repository."
|
|
1092
1096
|
};
|
|
1093
1097
|
var MAX_ALL_PAGES = 1e3;
|
|
1094
1098
|
async function createAutomationCommand(repoUrl, promptArg, options, command) {
|