@ryuenn3123/agentic-senior-core 3.0.29 → 3.0.30
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 +5 -6
- package/mcp.json +19 -12
- package/package.json +1 -1
package/.cursorrules
CHANGED
package/.windsurfrules
CHANGED
package/README.md
CHANGED
|
@@ -10,13 +10,12 @@
|
|
|
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.30 (2026-04-25).
|
|
14
14
|
|
|
15
|
-
Highlights in 3.0.
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
- Release gate now validates the design-intent seed for token derivation and library verification completeness.
|
|
15
|
+
Highlights in 3.0.30:
|
|
16
|
+
- Root `mcp.json` now reflects the current 9-layer governance model instead of the old 8-layer metadata.
|
|
17
|
+
- MCP knowledge metadata now includes 15 rules, 4 prompts including `bootstrap-design`, and the project-context layer.
|
|
18
|
+
- MCP workflow wording now reinforces scope-first relevant-layer injection instead of eager load-all context.
|
|
20
19
|
|
|
21
20
|
</div>
|
|
22
21
|
|
package/mcp.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.1",
|
|
3
3
|
"name": "agentic-senior-core",
|
|
4
|
-
"description": "MCP configuration for governance-aware diagnostics and self-healing workflows with dynamic knowledge injection.",
|
|
4
|
+
"description": "MCP configuration for governance-aware diagnostics, scoped rule loading, and self-healing workflows with dynamic knowledge injection.",
|
|
5
5
|
"knowledgeLayers": {
|
|
6
6
|
"enabled": true,
|
|
7
|
-
"description": "
|
|
7
|
+
"description": "9-layer dynamic knowledge injection for AI agents",
|
|
8
8
|
"layers": {
|
|
9
9
|
"rules": {
|
|
10
10
|
"path": ".agent-context/rules",
|
|
11
|
-
"count":
|
|
11
|
+
"count": 15,
|
|
12
12
|
"autoLoad": true
|
|
13
13
|
},
|
|
14
14
|
"stack-strategies": {
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
},
|
|
30
30
|
"prompts": {
|
|
31
31
|
"path": ".agent-context/prompts",
|
|
32
|
-
"count":
|
|
32
|
+
"count": 4,
|
|
33
33
|
"autoLoad": true,
|
|
34
|
-
"templates": ["init-project", "refactor", "review-code"]
|
|
34
|
+
"templates": ["init-project", "bootstrap-design", "refactor", "review-code"]
|
|
35
35
|
},
|
|
36
36
|
"governance-modes": {
|
|
37
37
|
"path": "dynamic",
|
|
@@ -41,13 +41,19 @@
|
|
|
41
41
|
},
|
|
42
42
|
"state": {
|
|
43
43
|
"path": ".agent-context/state",
|
|
44
|
-
"count":
|
|
44
|
+
"count": 22,
|
|
45
45
|
"autoLoad": true
|
|
46
46
|
},
|
|
47
47
|
"policies": {
|
|
48
48
|
"path": ".agent-context/policies",
|
|
49
49
|
"count": 1,
|
|
50
50
|
"autoLoad": true
|
|
51
|
+
},
|
|
52
|
+
"project-context": {
|
|
53
|
+
"path": "docs",
|
|
54
|
+
"count": 0,
|
|
55
|
+
"autoLoad": false,
|
|
56
|
+
"sources": ["project-brief", "architecture-decision-record", "flow-overview", "api-contract", "database-schema", "DESIGN", "design-intent"]
|
|
51
57
|
}
|
|
52
58
|
}
|
|
53
59
|
},
|
|
@@ -76,15 +82,16 @@
|
|
|
76
82
|
"full-knowledge-injection": {
|
|
77
83
|
"trigger": ["workspace.initialize", "agent.start"],
|
|
78
84
|
"steps": [
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
85
|
+
"resolve_scope_first",
|
|
86
|
+
"inject_relevant_rules",
|
|
87
|
+
"inject_runtime_decision_signals",
|
|
88
|
+
"inject_structural_planning_signals",
|
|
83
89
|
"inject_execution_contracts",
|
|
84
90
|
"inject_prompts",
|
|
85
91
|
"inject_governance_modes",
|
|
86
92
|
"inject_state",
|
|
87
|
-
"inject_policies"
|
|
93
|
+
"inject_policies",
|
|
94
|
+
"inject_project_context_when_relevant"
|
|
88
95
|
]
|
|
89
96
|
}
|
|
90
97
|
}
|