@ryuenn3123/agentic-senior-core 3.0.2 → 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.
|
@@ -84,19 +84,19 @@ Now scaffold the initial project structure following the blueprint exactly:
|
|
|
84
84
|
- Initialize the ORM/Database connection
|
|
85
85
|
|
|
86
86
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
87
|
+
Every file must follow [naming conventions](../rules/naming-conv.md).
|
|
88
|
+
Every module must follow [architecture.md](../rules/architecture.md).
|
|
89
|
+
Every dependency must be justified per [efficiency-vs-hype.md](../rules/efficiency-vs-hype.md).
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
---
|
|
93
93
|
|
|
94
|
-
##
|
|
94
|
+
## Stacks & Blueprints Reference
|
|
95
95
|
|
|
96
|
-
|
|
96
|
+
See [docs/roadmap.md](../../docs/roadmap.md) and [docs/deep-dive.md](../../docs/deep-dive.md) for the latest stack and blueprint list.
|
|
97
97
|
|
|
98
98
|
---
|
|
99
99
|
|
|
100
100
|
## Bootstrap UI/UX (DESIGN.md)
|
|
101
101
|
|
|
102
|
-
|
|
102
|
+
To start UI/UX design from scratch, use the [bootstrap-design.md](./bootstrap-design.md) prompt to synthesize `docs/DESIGN.md`.
|
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.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
|
+
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.
|
|
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
|
|
350
|
-
const
|
|
351
|
-
const
|
|
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
|
-
|
|
363
|
-
|
|
364
|
-
|
|
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
|
-
|
|
367
|
-
|
|
368
|
-
|
|
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)
|