@ryuenn3123/agentic-senior-core 2.5.7 → 2.5.8

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-04-17T06:45:46.860Z",
2
+ "generatedAt": "2026-04-17T07:42:53.417Z",
3
3
  "reportName": "memory-continuity-benchmark",
4
4
  "schemaVersion": "1.0.0",
5
5
  "passed": true,
package/.cursorrules CHANGED
@@ -1,6 +1,6 @@
1
1
  # AGENTIC-SENIOR-CORE DYNAMIC GOVERNANCE RULESET
2
2
 
3
- Generated by Agentic-Senior-Core CLI v2.5.7
3
+ Generated by Agentic-Senior-Core CLI v2.5.8
4
4
  Timestamp: 2026-04-15T00:14:51.184Z
5
5
  Selected profile: beginner
6
6
  Selected policy file: .agent-context/policies/llm-judge-threshold.json
package/.windsurfrules CHANGED
@@ -1,6 +1,6 @@
1
1
  # AGENTIC-SENIOR-CORE DYNAMIC GOVERNANCE RULESET
2
2
 
3
- Generated by Agentic-Senior-Core CLI v2.5.7
3
+ Generated by Agentic-Senior-Core CLI v2.5.8
4
4
  Timestamp: 2026-04-15T00:14:51.184Z
5
5
  Selected profile: beginner
6
6
  Selected policy file: .agent-context/policies/llm-judge-threshold.json
package/README.md CHANGED
@@ -22,6 +22,8 @@ npx @ryuenn3123/agentic-senior-core init
22
22
 
23
23
  That one command initializes your project with compiled rules, review checklists, and state context.
24
24
 
25
+ Golden Standard mode is now the default path: init applies the recommended quality profile automatically, without a beginner/balanced/strict prompt on first run.
26
+
25
27
  Optional team default path:
26
28
 
27
29
  ```bash
@@ -74,6 +76,17 @@ If you see `Property $schema is not allowed`, keep `.vscode/mcp.json` without `$
74
76
 
75
77
  ---
76
78
 
79
+ ## Upgrade Existing Governance Pack
80
+
81
+ ```bash
82
+ npx @ryuenn3123/agentic-senior-core upgrade --dry-run
83
+ npx @ryuenn3123/agentic-senior-core upgrade --yes
84
+ ```
85
+
86
+ Use `--dry-run` first to preview changes safely, then apply with `--yes`.
87
+
88
+ ---
89
+
77
90
  ## Terminology Mapping (Final)
78
91
 
79
92
  | Canonical Enterprise Term | Developer-Facing Alias | Usage Rule |
@@ -11,6 +11,7 @@ import {
11
11
  AGENT_CONTEXT_DIR,
12
12
  INIT_PRESETS,
13
13
  PROFILE_PRESETS,
14
+ GOLDEN_STANDARD_PROFILE_NAME,
14
15
  BLUEPRINT_RECOMMENDATIONS,
15
16
  PROJECT_SCOPE_CHOICES,
16
17
  PROJECT_SCOPE_STACK_FILTERS,
@@ -546,25 +547,32 @@ export async function runInitCommand(targetDirectoryArgument, initOptions = {})
546
547
  || selectedRuntimeEnvironmentKey;
547
548
  }
548
549
 
550
+ const hasExplicitProfileSelection = Boolean(
551
+ initOptions.profile
552
+ || selectedPreset?.profile
553
+ || initOptions.newbie
554
+ || selectedProfilePack?.defaultProfileName
555
+ );
556
+
549
557
  const selectedProfileName = initOptions.profile
550
558
  ? initOptions.profile
551
559
  : selectedPreset?.profile
552
560
  ? selectedPreset.profile
553
- : initOptions.newbie
554
- ? 'beginner'
555
- : selectedProfilePack?.defaultProfileName
556
- ? selectedProfilePack.defaultProfileName
557
- : normalizeChoiceInput(await askChoice(
558
- 'How much guidance do you want?',
559
- Object.values(PROFILE_PRESETS).map((profilePreset) => `${profilePreset.displayName} — ${profilePreset.description}`),
560
- userInterface
561
- )).split('-')[0];
561
+ : initOptions.newbie
562
+ ? 'beginner'
563
+ : selectedProfilePack?.defaultProfileName
564
+ ? selectedProfilePack.defaultProfileName
565
+ : GOLDEN_STANDARD_PROFILE_NAME;
562
566
 
563
567
  const selectedProfile = PROFILE_PRESETS[selectedProfileName];
564
568
  if (!selectedProfile) {
565
569
  throw new Error(`Unknown profile: ${selectedProfileName}`);
566
570
  }
567
571
 
572
+ if (!hasExplicitProfileSelection) {
573
+ console.log(`Golden Standard mode enabled. Using ${selectedProfile.displayName} profile by default.`);
574
+ }
575
+
568
576
  console.log(`\nSelected profile: ${selectedProfile.displayName}`);
569
577
  console.log(`This profile will block these review severities in CI: ${formatBlockingSeverities(selectedProfile.blockingSeverities)}.`);
570
578
 
@@ -160,6 +160,8 @@ export const PROFILE_PRESETS = {
160
160
  },
161
161
  };
162
162
 
163
+ export const GOLDEN_STANDARD_PROFILE_NAME = 'balanced';
164
+
163
165
  export const PROJECT_SCOPE_CHOICES = [
164
166
  {
165
167
  key: 'api-service',
package/lib/cli/utils.mjs CHANGED
@@ -40,10 +40,10 @@ export function printUsage() {
40
40
  console.log('Options:');
41
41
  console.log(' --help Show help');
42
42
  console.log(' --version Show CLI version');
43
- console.log(' --profile Choose beginner, balanced, or strict');
43
+ console.log(' --profile Legacy override for beginner, balanced, or strict (default init path is Golden Standard)');
44
44
  console.log(` --preset Use a plug-and-play starter preset (${presetNames})`);
45
45
  console.log(' --profile-pack Apply a team profile pack (startup, regulated, platform)');
46
- console.log(' --newbie Alias for --profile beginner');
46
+ console.log(' --newbie Legacy alias for --profile beginner');
47
47
  console.log(' --stack Override stack selection');
48
48
  console.log(' --blueprint Override blueprint selection');
49
49
  console.log(' --ci Override CI/CD guardrails (true|false)');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryuenn3123/agentic-senior-core",
3
- "version": "2.5.7",
3
+ "version": "2.5.8",
4
4
  "type": "module",
5
5
  "description": "Force your AI Agent to code like a Staff Engineer, not a Junior.",
6
6
  "bin": {