@ryuenn3123/agentic-senior-core 2.5.20 → 2.5.21
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/.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.21
|
|
4
4
|
Timestamp: 2026-04-18T03:00:00.000Z
|
|
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.21
|
|
4
4
|
Timestamp: 2026-04-18T03:00:00.000Z
|
|
5
5
|
Selected profile: beginner
|
|
6
6
|
Selected policy file: .agent-context/policies/llm-judge-threshold.json
|
package/README.md
CHANGED
|
@@ -36,7 +36,13 @@ Project-description-first path (AI as Architect with veto control):
|
|
|
36
36
|
npx @ryuenn3123/agentic-senior-core init --project-description "Machine learning API for fraud detection"
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
Default init path now attempts trusted realtime stack research first (with automatic snapshot fallback):
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npx @ryuenn3123/agentic-senior-core init --project-description "Event-driven payments platform"
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Force deterministic snapshot-only mode:
|
|
40
46
|
|
|
41
47
|
```bash
|
|
42
48
|
npx @ryuenn3123/agentic-senior-core init --project-description "Event-driven payments platform" --architect-research-mode snapshot
|
|
@@ -65,7 +65,6 @@ import { evaluateSkillDomainCompatibility } from '../compatibility.mjs';
|
|
|
65
65
|
import {
|
|
66
66
|
ARCHITECT_DEFAULT_TOKEN_BUDGET,
|
|
67
67
|
ARCHITECT_DEFAULT_TIMEOUT_MS,
|
|
68
|
-
ARCHITECT_DEFAULT_RESEARCH_MODE,
|
|
69
68
|
ARCHITECT_MIN_TOKEN_BUDGET,
|
|
70
69
|
ARCHITECT_MAX_TOKEN_BUDGET,
|
|
71
70
|
ARCHITECT_MIN_TIMEOUT_MS,
|
|
@@ -80,6 +79,8 @@ import {
|
|
|
80
79
|
|
|
81
80
|
export { REPO_ROOT } from '../constants.mjs';
|
|
82
81
|
|
|
82
|
+
const INIT_DEFAULT_RESEARCH_MODE = 'realtime';
|
|
83
|
+
|
|
83
84
|
export function parseInitArguments(commandArguments) {
|
|
84
85
|
const parsedInitOptions = {
|
|
85
86
|
targetDirectory: '.',
|
|
@@ -101,8 +102,8 @@ export function parseInitArguments(commandArguments) {
|
|
|
101
102
|
projectDescription: '',
|
|
102
103
|
architectTokenBudget: ARCHITECT_DEFAULT_TOKEN_BUDGET,
|
|
103
104
|
architectTimeoutMs: ARCHITECT_DEFAULT_TIMEOUT_MS,
|
|
104
|
-
architectResearchMode:
|
|
105
|
-
enableRealtimeResearch:
|
|
105
|
+
architectResearchMode: INIT_DEFAULT_RESEARCH_MODE,
|
|
106
|
+
enableRealtimeResearch: true,
|
|
106
107
|
architectRealtimeSignalFile: null,
|
|
107
108
|
runtimeEnv: 'auto',
|
|
108
109
|
runtimeEnvProvided: false,
|
|
@@ -313,13 +314,13 @@ export function parseInitArguments(commandArguments) {
|
|
|
313
314
|
}
|
|
314
315
|
|
|
315
316
|
if (currentArgument === '--architect-research-mode') {
|
|
316
|
-
parsedInitOptions.architectResearchMode = commandArguments[argumentIndex + 1] ||
|
|
317
|
+
parsedInitOptions.architectResearchMode = commandArguments[argumentIndex + 1] || INIT_DEFAULT_RESEARCH_MODE;
|
|
317
318
|
argumentIndex += 1;
|
|
318
319
|
continue;
|
|
319
320
|
}
|
|
320
321
|
|
|
321
322
|
if (currentArgument.startsWith('--architect-research-mode=')) {
|
|
322
|
-
parsedInitOptions.architectResearchMode = currentArgument.split('=')[1] ||
|
|
323
|
+
parsedInitOptions.architectResearchMode = currentArgument.split('=')[1] || INIT_DEFAULT_RESEARCH_MODE;
|
|
323
324
|
continue;
|
|
324
325
|
}
|
|
325
326
|
|
|
@@ -387,7 +388,7 @@ export function parseInitArguments(commandArguments) {
|
|
|
387
388
|
}
|
|
388
389
|
|
|
389
390
|
const normalizedArchitectResearchMode = normalizeChoiceInput(
|
|
390
|
-
parsedInitOptions.architectResearchMode ||
|
|
391
|
+
parsedInitOptions.architectResearchMode || INIT_DEFAULT_RESEARCH_MODE
|
|
391
392
|
);
|
|
392
393
|
const supportedArchitectResearchModes = new Set(['snapshot', 'realtime']);
|
|
393
394
|
if (!supportedArchitectResearchModes.has(normalizedArchitectResearchMode)) {
|
package/lib/cli/utils.mjs
CHANGED
|
@@ -49,8 +49,9 @@ export function printUsage() {
|
|
|
49
49
|
console.log(' --project-description Architecture intent text used for stack/blueprint recommendation');
|
|
50
50
|
console.log(' --architect-token-budget Max token estimate used by recommendation research (default: 900)');
|
|
51
51
|
console.log(' --architect-timeout-ms Max recommendation research time in milliseconds (default: 1500)');
|
|
52
|
-
console.log(' --architect-research-mode Recommendation evidence mode (snapshot or realtime; default:
|
|
53
|
-
console.log(' --enable-realtime-research
|
|
52
|
+
console.log(' --architect-research-mode Recommendation evidence mode (snapshot or realtime; default: realtime in init)');
|
|
53
|
+
console.log(' --enable-realtime-research Allow trusted realtime evidence ingestion (enabled by default in init)');
|
|
54
|
+
console.log(' --disable-realtime-research Force deterministic snapshot-only baseline in init');
|
|
54
55
|
console.log(' --architect-realtime-signal-file Optional JSON payload path for trusted realtime stack/design signals');
|
|
55
56
|
console.log(' --ci Override CI/CD quality checks (guardrails) (true|false)');
|
|
56
57
|
console.log(' --token-optimize Explicitly enable token optimization policy during init (default behavior)');
|