@ryuenn3123/agentic-senior-core 3.0.3 → 3.0.4

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-18T13:26:49.303Z",
2
+ "generatedAt": "2026-04-18T13:38:56.746Z",
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.3
3
+ Generated by Agentic-Senior-Core CLI v3.0.4
4
4
  Timestamp: 2026-04-18T00: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 v3.0.3
3
+ Generated by Agentic-Senior-Core CLI v3.0.4
4
4
  Timestamp: 2026-04-18T00:00:00.000Z
5
5
  Selected profile: beginner
6
6
  Selected policy file: .agent-context/policies/llm-judge-threshold.json
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
  **Production-grade Rules Engine (Governance Engine) for AI coding agents.**
11
11
  Works with Cursor, Windsurf, GitHub Copilot, Claude Code, Gemini, and other LLM-powered IDE workflows.
12
12
 
13
- Latest release: 3.0.3 (2026-04-18).
13
+ Latest release: 3.0.4 (2026-04-18).
14
14
 
15
15
  Highlights in 3.0.0:
16
16
  - Universal IDE adapter surface is completed and synchronized through thin adapters.
package/lib/cli/utils.mjs CHANGED
@@ -346,9 +346,10 @@ export async function copyGovernanceAssetsToTarget(
346
346
  const projectName = path.basename(resolvedTargetDirectoryPath);
347
347
  const mcpArgs = ['./scripts/mcp-server.mjs'];
348
348
 
349
- // 1. VS Code & 2. Cursor (Workspace Local Settings)
350
- const ideLocalDirs = ['.vscode', '.cursor'];
351
- const workspaceMcpConfig = {
349
+ // 1. VS Code (Workspace Local Settings)
350
+ const vscodeDirPath = path.join(resolvedTargetDirectoryPath, '.vscode');
351
+ const vscodeMcpJsonPath = path.join(vscodeDirPath, 'mcp.json');
352
+ const vscodeWorkspaceMcpConfig = {
352
353
  servers: {
353
354
  'agentic-senior-core': {
354
355
  type: 'stdio',
@@ -359,14 +360,27 @@ export async function copyGovernanceAssetsToTarget(
359
360
  },
360
361
  };
361
362
 
362
- for (const ideDir of ideLocalDirs) {
363
- const dirPath = path.join(resolvedTargetDirectoryPath, ideDir);
364
- const mcpJsonPath = path.join(dirPath, 'mcp.json');
363
+ if (!(await pathExists(vscodeMcpJsonPath))) {
364
+ await ensureDirectory(vscodeDirPath);
365
+ await fs.writeFile(vscodeMcpJsonPath, JSON.stringify(vscodeWorkspaceMcpConfig, null, 2) + '\n', 'utf8');
366
+ }
365
367
 
366
- if (!(await pathExists(mcpJsonPath))) {
367
- await ensureDirectory(dirPath);
368
- await fs.writeFile(mcpJsonPath, JSON.stringify(workspaceMcpConfig, null, 2) + '\n', 'utf8');
369
- }
368
+ // 2. Cursor (Workspace Local Settings)
369
+ const cursorDirPath = path.join(resolvedTargetDirectoryPath, '.cursor');
370
+ const cursorMcpJsonPath = path.join(cursorDirPath, 'mcp.json');
371
+ const cursorWorkspaceMcpConfig = {
372
+ mcpServers: {
373
+ 'agentic-senior-core': {
374
+ command: 'node',
375
+ args: mcpArgs,
376
+ cwd: '${workspaceFolder}',
377
+ },
378
+ },
379
+ };
380
+
381
+ if (!(await pathExists(cursorMcpJsonPath))) {
382
+ await ensureDirectory(cursorDirPath);
383
+ await fs.writeFile(cursorMcpJsonPath, JSON.stringify(cursorWorkspaceMcpConfig, null, 2) + '\n', 'utf8');
370
384
  }
371
385
 
372
386
  // 3. Zed IDE (Workspace Local Settings)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryuenn3123/agentic-senior-core",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
4
4
  "type": "module",
5
5
  "description": "Force your AI Agent to code like a Staff Engineer, not a Junior.",
6
6
  "bin": {