@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.
- package/.agent-context/state/memory-continuity-benchmark.json +1 -1
- package/.cursorrules +1 -1
- package/.windsurfrules +1 -1
- package/README.md +13 -4
- package/lib/cli/utils.mjs +0 -1
- package/package.json +1 -1
- package/scripts/validate.mjs +4 -2
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
|
+
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
|
+
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
|
|
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:
|
|
558
|
-
- V3.0:
|
|
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
package/scripts/validate.mjs
CHANGED
|
@@ -743,10 +743,12 @@ async function validateMcpConfiguration() {
|
|
|
743
743
|
fail('MCP test server must use Node');
|
|
744
744
|
}
|
|
745
745
|
|
|
746
|
-
if (workspaceMcpConfiguration.$schema === '
|
|
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
|
|
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') {
|