@tryarcanist/cli 0.1.280 → 0.1.282

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -11275,6 +11275,7 @@ var ERROR_CODES = [
11275
11275
  "api_error",
11276
11276
  "model_overloaded",
11277
11277
  "config_error",
11278
+ "github_app_permission",
11278
11279
  "failed_edits",
11279
11280
  // No producer since the memory subsystem was removed. Retained because the code is
11280
11281
  // persisted on historical session rows, which would otherwise render as "unknown".
@@ -11320,6 +11321,7 @@ var ERROR_CODE_LABELS = {
11320
11321
  api_error: "Model service error",
11321
11322
  model_overloaded: "Model at capacity",
11322
11323
  config_error: "Configuration error",
11324
+ github_app_permission: "GitHub App permissions missing",
11323
11325
  failed_edits: "Edit failure",
11324
11326
  memory_enforcement_failed: "Memory enforcement failed",
11325
11327
  failure_loop_suspected: "Suspected failure loop",
@@ -12508,9 +12510,9 @@ Examples:
12508
12510
  arcanist tokens revoke 42 --yes --json
12509
12511
  `
12510
12512
  ).action((id, options, command) => revokeTokenCommand(id, options, command));
12511
- var testCreds = program.command("test-creds").description("Manage repo-scoped test credentials referenced by appRuntime.e2e.credentials in .arcanist.json");
12513
+ var testCreds = program.command("test-creds").description("Manage repo-scoped test credentials referenced by the Environment App Runtime Profile");
12512
12514
  testCreds.command("list").description("List test credentials configured for a repo").argument("<repo>", "Repository in 'owner/name' form").requiredOption("--business <id>", "Business ID that owns the repo").action((repo, options, command) => listTestCredentialsCommand(repo, options, command));
12513
- testCreds.command("set").description("Set or rotate a test credential value").argument("<repo>", "Repository in 'owner/name' form").argument("<name>", "Credential name (must match credentials[].name in .arcanist.json)").requiredOption("--business <id>", "Business ID that owns the repo").option("--value <value>", "Credential value (insecure on shared shells; prefer --value-stdin)").option("--value-file <path>", "Read value from a file").option("--value-stdin", "Read value from stdin").addHelpText(
12515
+ testCreds.command("set").description("Set or rotate a test credential value").argument("<repo>", "Repository in 'owner/name' form").argument("<name>", "Credential name (must match the Environment profile's credentials[].name)").requiredOption("--business <id>", "Business ID that owns the repo").option("--value <value>", "Credential value (insecure on shared shells; prefer --value-stdin)").option("--value-file <path>", "Read value from a file").option("--value-stdin", "Read value from stdin").addHelpText(
12514
12516
  "after",
12515
12517
  `
12516
12518
  Examples:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tryarcanist/cli",
3
- "version": "0.1.280",
4
- "description": "CLI for Arcanist create and manage coding agent sessions",
3
+ "version": "0.1.282",
4
+ "description": "CLI for Arcanist - create and manage coding agent sessions",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "arcanist": "dist/index.js"