@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.
- package/.agent-context/state/memory-continuity-benchmark.json +1 -1
- package/.cursorrules +1 -1
- package/.windsurfrules +1 -1
- package/README.md +13 -0
- package/lib/cli/commands/init.mjs +17 -9
- package/lib/cli/constants.mjs +2 -0
- package/lib/cli/utils.mjs +2 -2
- package/package.json +1 -1
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.
|
|
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.
|
|
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
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
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
|
|
package/lib/cli/constants.mjs
CHANGED
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
|
|
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
|
|
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)');
|