greentic-setup-dev 1.2.30874038384

End-to-end bundle setup engine for the Greentic platform — pack discovery, QA-driven configuration, secrets persistence, and bundle lifecycle management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
//! CLI argument definitions for greentic-setup.

use std::path::PathBuf;

use clap::{Args, Parser, Subcommand};

/// Tenant a command binds, deploys, or writes secrets under when the operator
/// names none.
///
/// Must equal `greentic_types::DEFAULT_TENANT`. It is duplicated rather than
/// imported because raising the greentic-types floor to 1.1.4 drags ten crates
/// back to 1.1.0 — `greentic-session 1.1.1` requires greentic-types `=1.1.2`
/// exactly. `every_tenant_arg_in_the_command_tree_uses_the_shared_constant`
/// and the literal assertion below guard the copy; delete it in favour of the
/// import once that pin is relaxed.
///
/// Was `demo`, which disagreed with greentic-deployer and produced
/// environments serving deployments under two tenants — tolerated by a dev
/// store, refused by the Vault activation gate.
const DEFAULT_TENANT: &str = "default";
/// Team half of [`DEFAULT_TENANT`]. This one never diverged.
pub(crate) const DEFAULT_TEAM: &str = "default";

#[derive(Parser, Debug)]
#[command(name = "greentic-setup")]
#[command(version)]
#[command(about = "Greentic bundle setup CLI")]
#[command(after_help = r#"EXAMPLES:
  Interactive wizard:
    greentic-setup ./my-bundle

  Preview without executing:
    greentic-setup --dry-run ./my-bundle

  Generate answers template:
    greentic-setup --dry-run --emit-answers answers.json ./my-bundle

  Apply answers file:
    greentic-setup --answers answers.json ./my-bundle.gtbundle

  Deploy a bundle into an environment:
    greentic-setup env-deploy ./my-bundle.gtbundle
    greentic-setup env-deploy ./my-bundle.gtbundle --env staging
    greentic-setup env-deploy --dry-run ./my-bundle.gtbundle

  Add a messaging provider to an environment:
    greentic-setup provider add telegram
    greentic-setup provider add slack --env staging
    greentic-setup provider add telegram --answers answers.json --non-interactive
    greentic-setup provider list
    greentic-setup provider remove <endpoint-id>

  Advanced (bundle subcommands):
    greentic-setup bundle init ./my-bundle
    greentic-setup bundle add pack.gtpack --bundle ./my-bundle
    greentic-setup bundle status --bundle ./my-bundle
"#)]
pub struct Cli {
    /// Bundle path (.gtbundle file or directory)
    #[arg(value_name = "BUNDLE")]
    pub bundle: Option<PathBuf>,

    /// Dry run - show wizard but don't execute
    #[arg(long = "dry-run", global = true)]
    pub dry_run: bool,

    /// Emit answers template to file (combine with --dry-run to only generate)
    #[arg(long = "emit-answers", value_name = "FILE", global = true)]
    pub emit_answers: Option<PathBuf>,

    /// Apply answers from file
    #[arg(long = "answers", short = 'a', value_name = "FILE", global = true)]
    pub answers: Option<PathBuf>,

    /// Encryption/decryption key for answer documents that include secrets
    #[arg(long = "key", value_name = "KEY", global = true)]
    pub key: Option<String>,

    /// Tenant identifier
    #[arg(long = "tenant", short = 't', default_value = DEFAULT_TENANT, global = true)]
    pub tenant: String,

    /// Team identifier
    #[arg(long = "team", global = true)]
    pub team: Option<String>,

    /// Environment (defaults to `local`; legacy `dev` remapped via the A4b
    /// compat alias with a once-per-process warning until removal).
    #[arg(long = "env", short = 'e', default_value = "local", global = true)]
    pub env: String,

    /// UI locale (BCP-47 tag, e.g., en, ja, id)
    #[arg(long = "locale", global = true)]
    pub locale: Option<String>,

    /// Advanced mode — show all questions including optional ones
    #[arg(long = "advanced", global = true)]
    pub advanced: bool,

    /// Launch web-based setup UI in browser (enabled by default).
    /// Use --no-ui to disable the UI; stdin prompts may still be used.
    #[arg(long = "ui", global = true, default_value_t = true)]
    pub ui: bool,

    /// Disable web UI; stdin prompts may still be used.
    #[arg(long = "no-ui", global = true)]
    pub no_ui: bool,

    /// Strict non-interactive mode: no prompts, fail if answers incomplete
    #[arg(long = "non-interactive", global = true)]
    pub non_interactive: bool,

    /// Ignore any cached state: clear the persisted env secrets store and the
    /// bundle's cached setup-state / extraction dirs before running, so setup
    /// rebuilds from scratch instead of reusing prior values.
    #[arg(long = "new-cache", global = true)]
    pub new_cache: bool,

    #[command(subcommand)]
    pub command: Option<Command>,
}

#[derive(Subcommand, Debug)]
pub enum Command {
    /// Diagnose bundle setup inputs and generated setup outputs
    Doctor(DoctorArgs),
    /// Deploy a bundle into an environment via the env-apply engine
    EnvDeploy(EnvDeployArgs),
    /// Manage messaging providers in an environment
    #[command(subcommand)]
    Provider(ProviderCommand),
    /// Bundle lifecycle management (advanced)
    #[command(subcommand)]
    Bundle(Box<BundleCommand>),
}

#[derive(Args, Debug, Clone)]
pub struct EnvDeployArgs {
    /// Bundle path (.gtbundle file or bundle directory)
    #[arg(value_name = "BUNDLE")]
    pub bundle: PathBuf,
}

#[derive(Args, Debug, Clone)]
pub struct DoctorArgs {
    /// Bundle path (.gtbundle file or directory)
    #[arg(value_name = "BUNDLE")]
    pub bundle: Option<PathBuf>,
    #[command(subcommand)]
    pub command: Option<DoctorCommand>,
    /// Emit stable machine-readable JSON
    #[arg(long = "json")]
    pub json: bool,
    /// Treat warnings as command failures
    #[arg(long = "strict")]
    pub strict: bool,
    /// Include fix hints in human-readable output
    #[arg(long = "fix-hints")]
    pub fix_hints: bool,
    /// Show informational diagnostics in human-readable output
    #[arg(long = "show-info")]
    pub show_info: bool,
    /// Limit checks to one stage
    #[arg(long = "stage", value_enum)]
    pub stage: Option<DoctorStageArg>,
}

#[derive(Subcommand, Debug, Clone)]
pub enum DoctorCommand {
    /// Validate a provider pack's setup contract
    Provider(DoctorProviderArgs),
}

#[derive(Args, Debug, Clone)]
pub struct DoctorProviderArgs {
    /// Provider pack path (.gtpack)
    #[arg(value_name = "PACK")]
    pub pack: PathBuf,
}

#[derive(clap::ValueEnum, Debug, Clone, Copy, PartialEq, Eq)]
pub enum DoctorStageArg {
    Setup,
    Cache,
    Locks,
    Answers,
    Runtime,
    Routes,
}

#[derive(Subcommand, Debug, Clone)]
pub enum BundleCommand {
    /// Initialize a new bundle directory
    Init(BundleInitArgs),
    /// Add a pack to a bundle
    Add(BundleAddArgs),
    /// Run setup flow for provider(s) in a bundle
    Setup(BundleSetupArgs),
    /// Update a provider's configuration in a bundle
    Update(BundleSetupArgs),
    /// Show persisted generic provider setup status
    SetupStatus(BundleSetupStatusArgs),
    /// Inspect and record the next generic provider setup step
    SetupNext(BundleSetupNextArgs),
    /// Clear retry-blocking state for a generic provider setup step
    SetupRetry(BundleSetupRetryArgs),
    /// Reset persisted generic provider setup state
    SetupReset(BundleSetupResetArgs),
    /// Migrate legacy provider setup state into the generic setup state layout
    SetupMigrate(BundleSetupMigrateArgs),
    /// Remove a provider from a bundle
    Remove(BundleRemoveArgs),
    /// Build a portable bundle (copy + resolve)
    Build(BundleBuildArgs),
    /// List packs or flows in a bundle
    List(BundleListArgs),
    /// Show bundle status
    Status(BundleStatusArgs),
}

#[derive(Args, Debug, Clone)]
pub struct BundleInitArgs {
    /// Bundle directory (default: current directory)
    #[arg(value_name = "PATH")]
    pub path: Option<PathBuf>,
    /// Bundle name
    #[arg(long = "name", short = 'n')]
    pub name: Option<String>,
}

#[derive(Args, Debug, Clone)]
pub struct BundleAddArgs {
    /// Pack reference (local path or OCI reference)
    #[arg(value_name = "PACK_REF")]
    pub pack_ref: String,
    /// Bundle directory (default: current directory)
    #[arg(long = "bundle", short = 'b')]
    pub bundle: Option<PathBuf>,
    /// Tenant identifier
    #[arg(long = "tenant", short = 't', default_value = DEFAULT_TENANT)]
    pub tenant: String,
    /// Team identifier
    #[arg(long = "team")]
    pub team: Option<String>,
    /// Environment (defaults to `local`; legacy `dev` remapped via the A4b
    /// compat alias with a once-per-process warning until removal).
    #[arg(long = "env", short = 'e', default_value = "local")]
    pub env: String,
    /// Dry run (don't actually add)
    #[arg(long = "dry-run")]
    pub dry_run: bool,
}

#[derive(Args, Debug, Clone)]
pub struct BundleSetupArgs {
    /// Provider ID to setup/update (optional, setup all if not specified)
    #[arg(value_name = "PROVIDER_ID")]
    pub provider_id: Option<String>,
    /// Bundle directory (default: current directory)
    #[arg(long = "bundle", short = 'b')]
    pub bundle: Option<PathBuf>,
    /// Answers file (JSON/YAML)
    #[arg(long = "answers", short = 'a')]
    pub answers: Option<PathBuf>,
    /// Encryption/decryption key for answer documents that include secrets
    #[arg(long = "key", value_name = "KEY")]
    pub key: Option<String>,
    /// Tenant identifier
    #[arg(long = "tenant", short = 't', default_value = DEFAULT_TENANT)]
    pub tenant: String,
    /// Team identifier
    #[arg(long = "team")]
    pub team: Option<String>,
    /// Environment (defaults to `local`; legacy `dev` remapped via the A4b
    /// compat alias with a once-per-process warning until removal).
    #[arg(long = "env", short = 'e', default_value = "local")]
    pub env: String,
    /// Filter by domain (messaging/events/secrets/oauth/all)
    #[arg(long = "domain", short = 'd', default_value = "all")]
    pub domain: String,
    /// Number of parallel setup operations
    #[arg(long = "parallel", default_value = "1")]
    pub parallel: usize,
    /// Backup existing config before setup
    #[arg(long = "backup")]
    pub backup: bool,
    /// Skip secrets initialization
    #[arg(long = "skip-secrets-init")]
    pub skip_secrets_init: bool,
    /// Continue on error (best effort)
    #[arg(long = "best-effort")]
    pub best_effort: bool,
    /// Populated from the global --non-interactive flag before dispatch.
    #[arg(skip)]
    pub non_interactive: bool,
    /// Dry run (plan only, don't execute)
    #[arg(long = "dry-run")]
    pub dry_run: bool,
    /// Emit answers template JSON (use with --dry-run)
    #[arg(long = "emit-answers")]
    pub emit_answers: Option<PathBuf>,
    /// Advanced mode — show all questions including optional ones
    #[arg(long = "advanced")]
    pub advanced: bool,
}

#[derive(Args, Debug, Clone)]
pub struct BundleSetupStatusArgs {
    /// Provider ID to inspect
    #[arg(value_name = "PROVIDER_ID")]
    pub provider_id: String,
    /// Bundle directory (default: current directory)
    #[arg(long = "bundle", short = 'b')]
    pub bundle: Option<PathBuf>,
    /// Tenant identifier
    #[arg(long = "tenant", short = 't', default_value = DEFAULT_TENANT)]
    pub tenant: String,
    /// Team identifier
    #[arg(long = "team")]
    pub team: Option<String>,
    /// Environment (dev/staging/prod)
    #[arg(long = "env", short = 'e', default_value = "dev")]
    pub env: String,
    /// Output format: text or json
    #[arg(long = "format", default_value = "text")]
    pub format: String,
}

#[derive(Args, Debug, Clone)]
pub struct BundleSetupNextArgs {
    /// Provider ID to advance
    #[arg(value_name = "PROVIDER_ID")]
    pub provider_id: String,
    /// Bundle directory (default: current directory)
    #[arg(long = "bundle", short = 'b')]
    pub bundle: Option<PathBuf>,
    /// Tenant identifier
    #[arg(long = "tenant", short = 't', default_value = DEFAULT_TENANT)]
    pub tenant: String,
    /// Team identifier
    #[arg(long = "team")]
    pub team: Option<String>,
    /// Environment (dev/staging/prod)
    #[arg(long = "env", short = 'e', default_value = "dev")]
    pub env: String,
    /// Output format: text or json
    #[arg(long = "format", default_value = "text")]
    pub format: String,
    /// Only report the next action; do not write state or events
    #[arg(long = "dry-run")]
    pub dry_run: bool,
}

#[derive(Args, Debug, Clone)]
pub struct BundleSetupRetryArgs {
    /// Provider ID to retry
    #[arg(value_name = "PROVIDER_ID")]
    pub provider_id: String,
    /// Bundle directory (default: current directory)
    #[arg(long = "bundle", short = 'b')]
    pub bundle: Option<PathBuf>,
    /// Tenant identifier
    #[arg(long = "tenant", short = 't', default_value = DEFAULT_TENANT)]
    pub tenant: String,
    /// Team identifier
    #[arg(long = "team")]
    pub team: Option<String>,
    /// Environment (dev/staging/prod)
    #[arg(long = "env", short = 'e', default_value = "dev")]
    pub env: String,
    /// Optional step to retry; defaults to the last recorded setup step
    #[arg(long = "step")]
    pub step: Option<String>,
    /// Emit stable machine-readable JSON
    #[arg(long = "json")]
    pub json: bool,
}

#[derive(Args, Debug, Clone)]
pub struct BundleSetupResetArgs {
    /// Provider ID to reset
    #[arg(value_name = "PROVIDER_ID")]
    pub provider_id: String,
    /// Bundle directory (default: current directory)
    #[arg(long = "bundle", short = 'b')]
    pub bundle: Option<PathBuf>,
    /// Tenant identifier
    #[arg(long = "tenant", short = 't', default_value = DEFAULT_TENANT)]
    pub tenant: String,
    /// Team identifier
    #[arg(long = "team")]
    pub team: Option<String>,
    /// Confirm destructive reset of setup progress
    #[arg(long = "yes")]
    pub yes: bool,
    /// Emit stable machine-readable JSON
    #[arg(long = "json")]
    pub json: bool,
}

#[derive(Args, Debug, Clone)]
pub struct BundleSetupMigrateArgs {
    /// Provider ID to migrate
    #[arg(value_name = "PROVIDER_ID")]
    pub provider_id: String,
    /// Bundle directory (default: current directory)
    #[arg(long = "bundle", short = 'b')]
    pub bundle: Option<PathBuf>,
    /// Tenant identifier
    #[arg(long = "tenant", short = 't', default_value = DEFAULT_TENANT)]
    pub tenant: String,
    /// Team identifier
    #[arg(long = "team")]
    pub team: Option<String>,
    /// Environment (dev/staging/prod)
    #[arg(long = "env", short = 'e', default_value = "dev")]
    pub env: String,
    /// Emit stable machine-readable JSON
    #[arg(long = "json")]
    pub json: bool,
}

#[derive(Args, Debug, Clone)]
pub struct BundleRemoveArgs {
    /// Provider ID to remove
    #[arg(value_name = "PROVIDER_ID")]
    pub provider_id: String,
    /// Bundle directory (default: current directory)
    #[arg(long = "bundle", short = 'b')]
    pub bundle: Option<PathBuf>,
    /// Tenant identifier
    #[arg(long = "tenant", short = 't', default_value = DEFAULT_TENANT)]
    pub tenant: String,
    /// Team identifier
    #[arg(long = "team")]
    pub team: Option<String>,
    /// Force removal without confirmation
    #[arg(long = "force", short = 'f')]
    pub force: bool,
}

#[derive(Args, Debug, Clone)]
pub struct BundleBuildArgs {
    /// Bundle directory (default: current directory)
    #[arg(long = "bundle", short = 'b')]
    pub bundle: Option<PathBuf>,
    /// Output directory for portable bundle
    #[arg(long = "out", short = 'o')]
    pub out: PathBuf,
    /// Tenant identifier
    #[arg(long = "tenant", short = 't')]
    pub tenant: Option<String>,
    /// Team identifier
    #[arg(long = "team")]
    pub team: Option<String>,
    /// Only include used providers
    #[arg(long = "only-used-providers")]
    pub only_used_providers: bool,
    /// Run doctor validation after build
    #[arg(long = "doctor")]
    pub doctor: bool,
    /// Skip doctor validation
    #[arg(long = "skip-doctor")]
    pub skip_doctor: bool,
}

#[derive(Args, Debug, Clone)]
pub struct BundleListArgs {
    /// Bundle directory (default: current directory)
    #[arg(long = "bundle", short = 'b')]
    pub bundle: Option<PathBuf>,
    /// Filter by domain (messaging/events/secrets/oauth)
    #[arg(long = "domain", short = 'd', default_value = "messaging")]
    pub domain: String,
    /// Show flows for a specific pack
    #[arg(long = "pack", short = 'p')]
    pub pack: Option<String>,
    /// Output format (text/json)
    #[arg(long = "format", default_value = "text")]
    pub format: String,
}

#[derive(Args, Debug, Clone)]
pub struct BundleStatusArgs {
    /// Bundle directory (default: current directory)
    #[arg(long = "bundle", short = 'b')]
    pub bundle: Option<PathBuf>,
    /// Output format (text/json)
    #[arg(long = "format", default_value = "text")]
    pub format: String,
}

// --- Provider subcommands ---------------------------------------------------

#[derive(Subcommand, Debug, Clone)]
pub enum ProviderCommand {
    /// Add a messaging provider to an environment
    Add(ProviderAddArgs),
    /// List messaging providers in an environment
    List(ProviderListArgs),
    /// Remove a messaging provider from an environment
    Remove(ProviderRemoveArgs),
}

#[derive(Args, Debug, Clone)]
pub struct ProviderAddArgs {
    /// Provider kind (telegram, slack, webex, teams)
    #[arg(value_name = "KIND")]
    pub kind: String,
    /// Bundle id to link (auto-detected when the env has exactly one bundle)
    #[arg(long = "bundle-id")]
    pub bundle_id: Option<String>,
    /// Local .gtpack file override (skips OCI fetch)
    #[arg(long = "pack")]
    pub pack: Option<PathBuf>,
    /// OCI tag override (e.g. a specific version like "0.5.6"). Only affects
    /// the OCI reference; ignored when --pack is given.
    #[arg(long = "pack-version")]
    pub pack_version: Option<String>,
    /// Provider instance id (defaults to the kind name)
    #[arg(long = "provider-id")]
    pub provider_id: Option<String>,
    /// Human-readable display name for the endpoint
    #[arg(long = "display-name")]
    pub display_name: Option<String>,
}

#[derive(Args, Debug, Clone)]
pub struct ProviderListArgs {}

#[derive(Args, Debug, Clone)]
pub struct ProviderRemoveArgs {
    /// Endpoint id to remove (from `provider list`)
    #[arg(value_name = "ENDPOINT_ID")]
    pub endpoint_id: String,
}

#[cfg(test)]
mod tests {
    use super::*;
    use clap::{CommandFactory, Parser};

    /// The tenant a bundle binds under when the operator names none.
    ///
    /// This used to be `demo` while greentic-deployer used `default`, so the
    /// same environment ended up serving deployments in two namespaces —
    /// tolerated by a dev store and refused outright by the Vault activation
    /// gate. Both ends now read the same constant; this pins that they do.
    #[test]
    fn tenant_defaults_to_the_shared_constant_not_demo() {
        let cli = Cli::parse_from(["greentic-setup", "env-deploy", "b.gtbundle"]);
        assert_eq!(cli.tenant, DEFAULT_TENANT);
        assert_ne!(cli.tenant, "demo");
        // Pin the literal too: this is a copy of greentic_types::DEFAULT_TENANT
        // that exists only because the greentic-types floor cannot move.
        assert_eq!(DEFAULT_TENANT, "default");
        assert_eq!(DEFAULT_TEAM, "default");
    }

    /// Every `--tenant` in the whole command tree, not just the ones that
    /// exist today. One straggler puts a single command's bundles in a
    /// different namespace from every other command's, which is exactly the
    /// shape of the original defect.
    #[test]
    fn every_tenant_arg_in_the_command_tree_uses_the_shared_constant() {
        fn walk(cmd: &clap::Command, path: &str, seen: &mut usize) {
            for arg in cmd.get_arguments() {
                if arg.get_id() != "tenant" {
                    continue;
                }
                let defaults: Vec<String> = arg
                    .get_default_values()
                    .iter()
                    .map(|value| value.to_string_lossy().into_owned())
                    .collect();
                // No default at all is fine — that arg makes no guess, and the
                // global `--tenant` covers it. A *wrong* default is the defect.
                if defaults.is_empty() {
                    continue;
                }
                *seen += 1;
                assert_eq!(
                    defaults,
                    vec![DEFAULT_TENANT.to_string()],
                    "`{path} --tenant` must default to DEFAULT_TENANT"
                );
            }
            for sub in cmd.get_subcommands() {
                walk(sub, &format!("{path} {}", sub.get_name()), seen);
            }
        }

        let mut seen = 0;
        walk(&Cli::command(), "greentic-setup", &mut seen);
        // 10 today: the 9 declared defaults plus one more the walk reaches
        // through clap's `global = true` propagation of the root `--tenant`.
        // A change here means a new `--tenant` appeared and needs the same
        // treatment; update the number once you have checked it.
        assert_eq!(seen, 10, "the defaulted tenant-arg count changed");
    }
}