@ryuenn3123/agentic-senior-core 3.0.34 → 3.0.35

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-26T23:40:08.786Z",
2
+ "generatedAt": "2026-04-27T02:24:13.742Z",
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 v3.0.34
3
+ Generated by Agentic-Senior-Core CLI v3.0.35
4
4
  Timestamp: 2026-04-26T23:31:29.580Z
5
5
  Selected policy file: .agent-context/policies/llm-judge-threshold.json
6
6
 
package/.windsurfrules CHANGED
@@ -1,6 +1,6 @@
1
1
  # AGENTIC-SENIOR-CORE DYNAMIC GOVERNANCE RULESET
2
2
 
3
- Generated by Agentic-Senior-Core CLI v3.0.34
3
+ Generated by Agentic-Senior-Core CLI v3.0.35
4
4
  Timestamp: 2026-04-26T23:31:29.580Z
5
5
  Selected policy file: .agent-context/policies/llm-judge-threshold.json
6
6
 
@@ -8,6 +8,7 @@ export function shouldBootstrapDesignDocument(discoveryAnswers, initContext) {
8
8
  const isUiDomain = normalizedDomain.includes('web')
9
9
  || normalizedDomain.includes('mobile')
10
10
  || normalizedDomain.includes('frontend')
11
+ || normalizedDomain.includes('fullstack')
11
12
  || normalizedDomain.includes('ui');
12
13
 
13
14
  const isBackendOnlyDomain = normalizedDomain.includes('api service')
@@ -165,7 +165,8 @@ export function resolveProjectDocTargets(discoveryAnswers) {
165
165
  const hasDatabase = !discoveryAnswers.databaseChoice.toLowerCase().startsWith('none');
166
166
  const isApiOrWebDomain = ['API service', 'Web application'].includes(discoveryAnswers.primaryDomain)
167
167
  || discoveryAnswers.primaryDomain.toLowerCase().includes('api')
168
- || discoveryAnswers.primaryDomain.toLowerCase().includes('web');
168
+ || discoveryAnswers.primaryDomain.toLowerCase().includes('web')
169
+ || discoveryAnswers.primaryDomain.toLowerCase().includes('fullstack');
169
170
 
170
171
  const requiredDocFileNames = [
171
172
  'project-brief.md',
@@ -43,6 +43,15 @@ export async function generateProjectDocumentation(
43
43
  const expectedDocFileNames = [...requiredDocFileNames];
44
44
  const generatedPromptFileNames = [];
45
45
  const materializedFileNames = [];
46
+ const shouldCreateDesignContract = shouldBootstrapDesignDocument(discoveryAnswers, initContext);
47
+
48
+ if (shouldCreateDesignContract) {
49
+ for (const designContractFileName of UI_DESIGN_CONTRACT_FILE_NAMES) {
50
+ if (!expectedDocFileNames.includes(designContractFileName)) {
51
+ expectedDocFileNames.push(designContractFileName);
52
+ }
53
+ }
54
+ }
46
55
 
47
56
  const projectContextPromptFileName = 'bootstrap-project-context.md';
48
57
  const projectContextPromptContent = buildProjectContextBootstrapPrompt({
@@ -58,7 +67,7 @@ export async function generateProjectDocumentation(
58
67
  );
59
68
  generatedPromptFileNames.push(projectContextPromptFileName);
60
69
 
61
- if (shouldBootstrapDesignDocument(discoveryAnswers, initContext)) {
70
+ if (shouldCreateDesignContract) {
62
71
  const designPromptFileName = 'bootstrap-design.md';
63
72
  const designPromptContent = buildDesignBootstrapPrompt({
64
73
  discoveryAnswers,
@@ -75,12 +84,6 @@ export async function generateProjectDocumentation(
75
84
  });
76
85
  await fs.writeFile(path.join(docsDirectoryPath, designIntentSeedFileName), designIntentSeedContent, 'utf8');
77
86
  materializedFileNames.push(designIntentSeedFileName);
78
-
79
- for (const designContractFileName of UI_DESIGN_CONTRACT_FILE_NAMES) {
80
- if (!expectedDocFileNames.includes(designContractFileName)) {
81
- expectedDocFileNames.push(designContractFileName);
82
- }
83
- }
84
87
  }
85
88
 
86
89
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryuenn3123/agentic-senior-core",
3
- "version": "3.0.34",
3
+ "version": "3.0.35",
4
4
  "type": "module",
5
5
  "description": "Force your AI Agent to code like a Staff Engineer, not a Junior.",
6
6
  "bin": {