@ryuenn3123/agentic-senior-core 3.0.4 → 3.0.5
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 v3.0.
|
|
3
|
+
Generated by Agentic-Senior-Core CLI v3.0.5
|
|
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
|
+
Generated by Agentic-Senior-Core CLI v3.0.5
|
|
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.
|
|
13
|
+
Latest release: 3.0.5 (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,6 +346,13 @@ export async function copyGovernanceAssetsToTarget(
|
|
|
346
346
|
const projectName = path.basename(resolvedTargetDirectoryPath);
|
|
347
347
|
const mcpArgs = ['./scripts/mcp-server.mjs'];
|
|
348
348
|
|
|
349
|
+
// Ensure the MCP server entrypoint exists in the target project.
|
|
350
|
+
// The workspace MCP configs point at ./scripts/mcp-server.mjs, so we must copy it.
|
|
351
|
+
const sourceMcpServerPath = path.join(REPO_ROOT, 'scripts', 'mcp-server.mjs');
|
|
352
|
+
const targetMcpServerPath = path.join(resolvedTargetDirectoryPath, 'scripts', 'mcp-server.mjs');
|
|
353
|
+
await ensureDirectory(path.dirname(targetMcpServerPath));
|
|
354
|
+
await fs.copyFile(sourceMcpServerPath, targetMcpServerPath);
|
|
355
|
+
|
|
349
356
|
// 1. VS Code (Workspace Local Settings)
|
|
350
357
|
const vscodeDirPath = path.join(resolvedTargetDirectoryPath, '.vscode');
|
|
351
358
|
const vscodeMcpJsonPath = path.join(vscodeDirPath, 'mcp.json');
|