@ryuenn3123/agentic-senior-core 2.5.3 → 2.5.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-17T03:41:09.595Z",
2
+ "generatedAt": "2026-04-17T04:00:01.015Z",
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 v2.5.3
3
+ Generated by Agentic-Senior-Core CLI v2.5.4
4
4
  Timestamp: 2026-04-15T00:14:51.184Z
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.5.3
3
+ Generated by Agentic-Senior-Core CLI v2.5.4
4
4
  Timestamp: 2026-04-15T00:14:51.184Z
5
5
  Selected profile: beginner
6
6
  Selected policy file: .agent-context/policies/llm-judge-threshold.json
package/README.md CHANGED
@@ -152,7 +152,8 @@ npx @ryuenn3123/agentic-senior-core init --newbie
152
152
  - `init` project discovery accepts answers in any language; prompts stay in English, but non-English answers are supported.
153
153
  - Generated docs default to English for consistency; use `--docs-lang` only when you explicitly need a different output language.
154
154
  - After docs scaffolding, CLI prints prompt starter examples so users can iterate by prompt without rewriting full project context.
155
- - MCP server registration and trust/start are manual in IDE settings.
155
+ - MCP server trust approval is manual in IDE settings (initial start).
156
+ - Optional MCP auto-restart on config changes is available via `chat.mcp.autoStart` (Experimental setting in VS Code).
156
157
  - MCP workspace scaffold is opt-in via `--mcp-template` and creates `.vscode/mcp.json`.
157
158
 
158
159
  **What files are created?**
@@ -180,6 +181,9 @@ npx @ryuenn3123/agentic-senior-core init --mcp-template
180
181
  3. Confirm the file is `.vscode/mcp.json` with server `agentic-senior-core`.
181
182
  4. The generated server command is `node ./scripts/mcp-server.mjs` with `cwd` set to `${workspaceFolder}`.
182
183
  5. Open Chat Customizations > MCP Servers, then trust/start the server.
184
+ 6. Optional: enable `chat.mcp.autoStart` in VS Code Settings to auto-restart MCP servers when config changes are detected.
185
+
186
+ If VS Code shows `Property $schema is not allowed` for `.vscode/mcp.json`, remove the `$schema` field. Newer MCP configuration schema versions infer this automatically.
183
187
 
184
188
  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.
185
189
 
@@ -553,9 +557,14 @@ Important notes for maintainers and forks:
553
557
  - Operations playbook and release-operations checklist shipped.
554
558
 
555
559
  ### Current Forward Plan
556
- - V2.0: Skill marketplace trust tiers, transactional installs, rollback safety, and launch-menu onboarding.
557
- - V2.5: Cross-model benchmark harness, anti-regression quality gates, and advanced frontend design quality track (non-template UI direction, stronger UX craft, and frontend parity beyond baseline benchmark repos).
558
- - V3.0: Enterprise governance cloud, policy drift detection, and org-level override registry.
560
+ - V2.0: Delivered baseline maintained. Skill marketplace trust tiers, transactional installs, rollback safety, and launch-menu onboarding are active foundations.
561
+ - V2.5: Released. Benchmark anti-regression track, frontend excellence enforcement, and memory continuity pilot are complete.
562
+ - V3.0: Planning and intake phase for enterprise governance cloud, policy drift detection, and org-level override registry.
563
+
564
+ Roadmap-first execution policy for V3.0:
565
+ 1. Record ideas (optimization, refactor, reliability, security, DX) in roadmap top goals first.
566
+ 2. Define measurable success metrics and explicit exit criteria before execution.
567
+ 3. Bump to `3.0.0` only after V3.0 exit criteria are fully satisfied.
559
568
 
560
569
  Detailed timeline and success metrics: [docs/roadmap.md](docs/roadmap.md)
561
570
 
package/lib/cli/utils.mjs CHANGED
@@ -141,7 +141,6 @@ export async function copyGovernanceAssetsToTarget(
141
141
  const workspaceMcpConfigurationPath = path.join(vscodeDirectoryPath, 'mcp.json');
142
142
 
143
143
  const workspaceMcpConfiguration = {
144
- $schema: 'vscode://schemas/mcp',
145
144
  servers: {
146
145
  'agentic-senior-core': {
147
146
  type: 'stdio',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryuenn3123/agentic-senior-core",
3
- "version": "2.5.3",
3
+ "version": "2.5.4",
4
4
  "type": "module",
5
5
  "description": "Force your AI Agent to code like a Staff Engineer, not a Junior.",
6
6
  "bin": {
@@ -743,10 +743,12 @@ async function validateMcpConfiguration() {
743
743
  fail('MCP test server must use Node');
744
744
  }
745
745
 
746
- if (workspaceMcpConfiguration.$schema === 'vscode://schemas/mcp') {
746
+ if (typeof workspaceMcpConfiguration.$schema === 'undefined') {
747
+ pass('Workspace MCP config omits $schema (supported by current VS Code MCP schema inference)');
748
+ } else if (workspaceMcpConfiguration.$schema === 'vscode://schemas/mcp') {
747
749
  pass('Workspace MCP config uses trusted VS Code schema');
748
750
  } else {
749
- fail('Workspace MCP config must use $schema: vscode://schemas/mcp');
751
+ fail('Workspace MCP config $schema must be omitted or set to vscode://schemas/mcp');
750
752
  }
751
753
 
752
754
  if (workspaceServerConfig?.command === 'node') {