@ryuenn3123/agentic-senior-core 2.0.10 → 2.0.11
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 +1 -1
- package/.windsurfrules +1 -1
- package/README.md +3 -3
- package/lib/cli/utils.mjs +3 -2
- package/package.json +1 -1
- package/scripts/validate.mjs +6 -0
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.0.
|
|
3
|
+
Generated by Agentic-Senior-Core CLI v2.0.11
|
|
4
4
|
Timestamp: 2026-04-08T14:58:53.570Z
|
|
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.0.
|
|
3
|
+
Generated by Agentic-Senior-Core CLI v2.0.11
|
|
4
4
|
Timestamp: 2026-04-08T14:58:53.570Z
|
|
5
5
|
Selected profile: beginner
|
|
6
6
|
Selected policy file: .agent-context/policies/llm-judge-threshold.json
|
package/README.md
CHANGED
|
@@ -134,10 +134,10 @@ npx @ryuenn3123/agentic-senior-core init --mcp-template
|
|
|
134
134
|
|
|
135
135
|
2. Open Command Palette and run `MCP: Open Workspace Folder Configuration`.
|
|
136
136
|
3. Confirm the file is `.vscode/mcp.json` with server `agentic-senior-core`.
|
|
137
|
-
4. The generated server command is `
|
|
137
|
+
4. The generated server command is `node ./scripts/mcp-server.mjs` with `cwd` set to `${workspaceFolder}`.
|
|
138
138
|
5. Open Chat Customizations > MCP Servers, then trust/start the server.
|
|
139
139
|
|
|
140
|
-
If logs repeatedly show `Waiting for server to respond to initialize request`, upgrade to the latest package version
|
|
140
|
+
If logs repeatedly show `Waiting for server to respond to initialize request`, upgrade to the latest package version, regenerate the workspace config with `--mcp-template`, and restart the MCP server.
|
|
141
141
|
|
|
142
142
|
### CLI Command Reference
|
|
143
143
|
|
|
@@ -374,7 +374,7 @@ Release checklist:
|
|
|
374
374
|
2. Add matching release notes in `CHANGELOG.md`.
|
|
375
375
|
3. Push to `main`.
|
|
376
376
|
|
|
377
|
-
Important notes:
|
|
377
|
+
Important notes for maintainers and forks:
|
|
378
378
|
- If the npm version already exists, publish will fail.
|
|
379
379
|
- Publish requires valid `NPM_TOKEN` in repository secrets.
|
|
380
380
|
|
package/lib/cli/utils.mjs
CHANGED
|
@@ -138,8 +138,9 @@ export async function copyGovernanceAssetsToTarget(
|
|
|
138
138
|
servers: {
|
|
139
139
|
'agentic-senior-core': {
|
|
140
140
|
type: 'stdio',
|
|
141
|
-
command: '
|
|
142
|
-
|
|
141
|
+
command: 'node',
|
|
142
|
+
cwd: '${workspaceFolder}',
|
|
143
|
+
args: ['./scripts/mcp-server.mjs'],
|
|
143
144
|
},
|
|
144
145
|
},
|
|
145
146
|
};
|
package/package.json
CHANGED
package/scripts/validate.mjs
CHANGED
|
@@ -730,6 +730,12 @@ async function validateMcpConfiguration() {
|
|
|
730
730
|
fail('Workspace MCP server command must use Node');
|
|
731
731
|
}
|
|
732
732
|
|
|
733
|
+
if (workspaceServerConfig?.cwd === '${workspaceFolder}') {
|
|
734
|
+
pass('Workspace MCP server cwd uses ${workspaceFolder}');
|
|
735
|
+
} else {
|
|
736
|
+
fail('Workspace MCP server cwd must be ${workspaceFolder}');
|
|
737
|
+
}
|
|
738
|
+
|
|
733
739
|
if (Array.isArray(workspaceServerConfig?.args) && workspaceServerConfig.args.includes('./scripts/mcp-server.mjs')) {
|
|
734
740
|
pass('Workspace MCP server points to scripts/mcp-server.mjs');
|
|
735
741
|
} else {
|