@ryuenn3123/agentic-senior-core 1.8.1 → 1.9.0

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/mcp.json CHANGED
@@ -2,7 +2,56 @@
2
2
  "$schema": "https://modelcontextprotocol.io/schemas/mcp.json",
3
3
  "version": "1.0",
4
4
  "name": "agentic-senior-core",
5
- "description": "MCP configuration for governance-aware diagnostics and self-healing workflows.",
5
+ "description": "MCP configuration for governance-aware diagnostics and self-healing workflows with full knowledge injection.",
6
+ "knowledgeLayers": {
7
+ "enabled": true,
8
+ "description": "8-layer unified knowledge injection for AI agents",
9
+ "layers": {
10
+ "rules": {
11
+ "path": ".agent-context/rules",
12
+ "count": 14,
13
+ "autoLoad": true
14
+ },
15
+ "stacks": {
16
+ "path": ".agent-context/stacks",
17
+ "count": 10,
18
+ "autoLoad": true
19
+ },
20
+ "blueprints": {
21
+ "path": ".agent-context/blueprints",
22
+ "count": 14,
23
+ "autoLoad": true
24
+ },
25
+ "skills": {
26
+ "path": ".agent-context/skills",
27
+ "count": 6,
28
+ "autoLoad": true,
29
+ "packs": ["backend", "frontend", "cli", "distribution", "fullstack", "review-quality"]
30
+ },
31
+ "prompts": {
32
+ "path": ".agent-context/prompts",
33
+ "count": 3,
34
+ "autoLoad": true,
35
+ "templates": ["init-project", "refactor", "review-code"]
36
+ },
37
+ "profiles": {
38
+ "path": ".agent-context/profiles",
39
+ "count": 3,
40
+ "autoLoad": true,
41
+ "governance": ["platform", "regulated", "startup"]
42
+ },
43
+ "state": {
44
+ "path": ".agent-context/state",
45
+ "count": 6,
46
+ "autoLoad": true
47
+ },
48
+ "policies": {
49
+ "path": ".agent-context/policies",
50
+ "count": 1,
51
+ "autoLoad": true
52
+ }
53
+ }
54
+ },
6
55
  "servers": {
7
56
  "lint": {
8
57
  "command": "node",
@@ -24,6 +73,20 @@
24
73
  "propose_patch",
25
74
  "run_checklist_review"
26
75
  ]
76
+ },
77
+ "full-knowledge-injection": {
78
+ "trigger": ["workspace.initialize", "agent.start"],
79
+ "steps": [
80
+ "load_all_knowledge_layers",
81
+ "inject_rules",
82
+ "inject_stacks",
83
+ "inject_blueprints",
84
+ "inject_skills",
85
+ "inject_prompts",
86
+ "inject_profiles",
87
+ "inject_state",
88
+ "inject_policies"
89
+ ]
27
90
  }
28
91
  }
29
92
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryuenn3123/agentic-senior-core",
3
- "version": "1.8.1",
3
+ "version": "1.9.0",
4
4
  "description": "Force your AI Agent to code like a Staff Engineer, not a Junior.",
5
5
  "bin": {
6
6
  "agentic-senior-core": "bin/agentic-senior-core.js"
@@ -560,7 +560,7 @@ async function validateDocumentationFlow() {
560
560
  'GitHub Template',
561
561
  'scripts/init-project.ps1',
562
562
  'scripts/init-project.sh',
563
- 'npx @fatidaprilian/agentic-senior-core init',
563
+ 'npx @ryuenn3123/agentic-senior-core init',
564
564
  'npm run validate',
565
565
  'docs/faq.md',
566
566
  'docs/deep-dive.md',
@@ -633,4 +633,4 @@ async function main() {
633
633
  main().catch((error) => {
634
634
  console.error('Validator crashed:', error);
635
635
  process.exit(1);
636
- });
636
+ });