@codedrifters/configulator 0.0.283 → 0.0.285

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/lib/index.d.mts CHANGED
@@ -1968,7 +1968,7 @@ interface UnblockDependentsConfig {
1968
1968
  *
1969
1969
  * Every field is optional. When the whole config is absent the
1970
1970
  * convention ships **enabled** with JSON-formatted files stored under
1971
- * `.claude/state/<issue-number>-progress.json`.
1971
+ * `.state/<issue-number>-progress.json`.
1972
1972
  *
1973
1973
  * Malformed configs — empty / whitespace-only or absolute `stateDir`,
1974
1974
  * empty / whitespace-only `filenamePattern`, `filenamePattern` missing
@@ -1997,7 +1997,10 @@ interface ProgressFilesConfig {
1997
1997
  * The directory is added to the project's `.gitignore` at synth
1998
1998
  * time so progress files never land on the default branch.
1999
1999
  *
2000
- * Defaults to `.claude/state`.
2000
+ * Defaults to `.state` — a top-level repo-root directory rather
2001
+ * than a Claude-specific subtree, so the same progress files can
2002
+ * be read and written by any agent runtime (Claude Code, Cursor,
2003
+ * a bespoke worker).
2001
2004
  */
2002
2005
  readonly stateDir?: string;
2003
2006
  /**
@@ -2944,7 +2947,7 @@ interface AgentConfigOptions {
2944
2947
  *
2945
2948
  * When the whole config is omitted, the convention ships
2946
2949
  * **enabled** with JSON-formatted files stored under
2947
- * `.claude/state/<issue-number>-progress.json` and a 72-hour
2950
+ * `.state/<issue-number>-progress.json` and a 72-hour
2948
2951
  * staleness threshold.
2949
2952
  *
2950
2953
  * Supply `enabled: false` to disable the convention entirely,
@@ -4601,9 +4604,15 @@ declare const DEFAULT_PROGRESS_FILES_ENABLED = true;
4601
4604
  * `<stateDir>/<filename>` where `<filename>` is produced from
4602
4605
  * `filenamePattern` at runtime.
4603
4606
  *
4607
+ * Lives at the top-level `.state/` directory rather than under
4608
+ * `.claude/state/` so the path stays harness-neutral — any agent
4609
+ * runtime (Claude Code, Cursor, a bespoke worker) can read and
4610
+ * write the same progress files without having to scope under a
4611
+ * Claude-specific tree.
4612
+ *
4604
4613
  * @see ProgressFilesConfig
4605
4614
  */
4606
- declare const DEFAULT_PROGRESS_FILES_STATE_DIR = ".claude/state";
4615
+ declare const DEFAULT_PROGRESS_FILES_STATE_DIR = ".state";
4607
4616
  /**
4608
4617
  * Default filename pattern for a progress file. The `<ISSUE_NUMBER>`
4609
4618
  * placeholder is substituted at runtime with the numeric id of the
@@ -7511,7 +7520,7 @@ declare const VERSION: {
7511
7520
  /**
7512
7521
  * Version of Astro to pin for AstroProject scaffolding.
7513
7522
  */
7514
- readonly ASTRO_VERSION: "6.1.10";
7523
+ readonly ASTRO_VERSION: "6.2.1";
7515
7524
  /**
7516
7525
  * CDK CLI for workflows and command line operations.
7517
7526
  *
@@ -7523,7 +7532,7 @@ declare const VERSION: {
7523
7532
  *
7524
7533
  * CLI and lib are versioned separately, so this is the lib version.
7525
7534
  */
7526
- readonly AWS_CDK_LIB_VERSION: "2.251.0";
7535
+ readonly AWS_CDK_LIB_VERSION: "2.252.0";
7527
7536
  /**
7528
7537
  * Version of the AWS Constructs library to use.
7529
7538
  */
@@ -7562,7 +7571,7 @@ declare const VERSION: {
7562
7571
  /**
7563
7572
  * What version of the turborepo library should we use?
7564
7573
  */
7565
- readonly TURBO_VERSION: "2.9.6";
7574
+ readonly TURBO_VERSION: "2.9.7";
7566
7575
  /**
7567
7576
  * Version of @types/node to use across all packages (pnpm catalog).
7568
7577
  */
package/lib/index.d.ts CHANGED
@@ -2017,7 +2017,7 @@ interface UnblockDependentsConfig {
2017
2017
  *
2018
2018
  * Every field is optional. When the whole config is absent the
2019
2019
  * convention ships **enabled** with JSON-formatted files stored under
2020
- * `.claude/state/<issue-number>-progress.json`.
2020
+ * `.state/<issue-number>-progress.json`.
2021
2021
  *
2022
2022
  * Malformed configs — empty / whitespace-only or absolute `stateDir`,
2023
2023
  * empty / whitespace-only `filenamePattern`, `filenamePattern` missing
@@ -2046,7 +2046,10 @@ interface ProgressFilesConfig {
2046
2046
  * The directory is added to the project's `.gitignore` at synth
2047
2047
  * time so progress files never land on the default branch.
2048
2048
  *
2049
- * Defaults to `.claude/state`.
2049
+ * Defaults to `.state` — a top-level repo-root directory rather
2050
+ * than a Claude-specific subtree, so the same progress files can
2051
+ * be read and written by any agent runtime (Claude Code, Cursor,
2052
+ * a bespoke worker).
2050
2053
  */
2051
2054
  readonly stateDir?: string;
2052
2055
  /**
@@ -2993,7 +2996,7 @@ interface AgentConfigOptions {
2993
2996
  *
2994
2997
  * When the whole config is omitted, the convention ships
2995
2998
  * **enabled** with JSON-formatted files stored under
2996
- * `.claude/state/<issue-number>-progress.json` and a 72-hour
2999
+ * `.state/<issue-number>-progress.json` and a 72-hour
2997
3000
  * staleness threshold.
2998
3001
  *
2999
3002
  * Supply `enabled: false` to disable the convention entirely,
@@ -4650,9 +4653,15 @@ declare const DEFAULT_PROGRESS_FILES_ENABLED = true;
4650
4653
  * `<stateDir>/<filename>` where `<filename>` is produced from
4651
4654
  * `filenamePattern` at runtime.
4652
4655
  *
4656
+ * Lives at the top-level `.state/` directory rather than under
4657
+ * `.claude/state/` so the path stays harness-neutral — any agent
4658
+ * runtime (Claude Code, Cursor, a bespoke worker) can read and
4659
+ * write the same progress files without having to scope under a
4660
+ * Claude-specific tree.
4661
+ *
4653
4662
  * @see ProgressFilesConfig
4654
4663
  */
4655
- declare const DEFAULT_PROGRESS_FILES_STATE_DIR = ".claude/state";
4664
+ declare const DEFAULT_PROGRESS_FILES_STATE_DIR = ".state";
4656
4665
  /**
4657
4666
  * Default filename pattern for a progress file. The `<ISSUE_NUMBER>`
4658
4667
  * placeholder is substituted at runtime with the numeric id of the
@@ -7560,7 +7569,7 @@ declare const VERSION: {
7560
7569
  /**
7561
7570
  * Version of Astro to pin for AstroProject scaffolding.
7562
7571
  */
7563
- readonly ASTRO_VERSION: "6.1.10";
7572
+ readonly ASTRO_VERSION: "6.2.1";
7564
7573
  /**
7565
7574
  * CDK CLI for workflows and command line operations.
7566
7575
  *
@@ -7572,7 +7581,7 @@ declare const VERSION: {
7572
7581
  *
7573
7582
  * CLI and lib are versioned separately, so this is the lib version.
7574
7583
  */
7575
- readonly AWS_CDK_LIB_VERSION: "2.251.0";
7584
+ readonly AWS_CDK_LIB_VERSION: "2.252.0";
7576
7585
  /**
7577
7586
  * Version of the AWS Constructs library to use.
7578
7587
  */
@@ -7611,7 +7620,7 @@ declare const VERSION: {
7611
7620
  /**
7612
7621
  * What version of the turborepo library should we use?
7613
7622
  */
7614
- readonly TURBO_VERSION: "2.9.6";
7623
+ readonly TURBO_VERSION: "2.9.7";
7615
7624
  /**
7616
7625
  * Version of @types/node to use across all packages (pnpm catalog).
7617
7626
  */
package/lib/index.js CHANGED
@@ -1938,7 +1938,7 @@ function resolveAgentPaths(paths) {
1938
1938
 
1939
1939
  // src/agent/bundles/progress-files.ts
1940
1940
  var DEFAULT_PROGRESS_FILES_ENABLED = true;
1941
- var DEFAULT_PROGRESS_FILES_STATE_DIR = ".claude/state";
1941
+ var DEFAULT_PROGRESS_FILES_STATE_DIR = ".state";
1942
1942
  var DEFAULT_PROGRESS_FILES_FILENAME_PATTERN = "<ISSUE_NUMBER>-progress.json";
1943
1943
  var DEFAULT_PROGRESS_FILES_FORMAT = "json";
1944
1944
  var DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS = 72;
@@ -26494,7 +26494,7 @@ var VERSION = {
26494
26494
  /**
26495
26495
  * Version of Astro to pin for AstroProject scaffolding.
26496
26496
  */
26497
- ASTRO_VERSION: "6.1.10",
26497
+ ASTRO_VERSION: "6.2.1",
26498
26498
  /**
26499
26499
  * CDK CLI for workflows and command line operations.
26500
26500
  *
@@ -26506,7 +26506,7 @@ var VERSION = {
26506
26506
  *
26507
26507
  * CLI and lib are versioned separately, so this is the lib version.
26508
26508
  */
26509
- AWS_CDK_LIB_VERSION: "2.251.0",
26509
+ AWS_CDK_LIB_VERSION: "2.252.0",
26510
26510
  /**
26511
26511
  * Version of the AWS Constructs library to use.
26512
26512
  */
@@ -26545,7 +26545,7 @@ var VERSION = {
26545
26545
  /**
26546
26546
  * What version of the turborepo library should we use?
26547
26547
  */
26548
- TURBO_VERSION: "2.9.6",
26548
+ TURBO_VERSION: "2.9.7",
26549
26549
  /**
26550
26550
  * Version of @types/node to use across all packages (pnpm catalog).
26551
26551
  */