@happyvertical/smrt-dev-mcp 0.40.13 → 0.40.15
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/README.md +8 -8
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @happyvertical/smrt-dev-mcp
|
|
2
2
|
|
|
3
|
-
Development MCP server for the
|
|
3
|
+
Development MCP server for the s-m-r-t framework providing code generation,
|
|
4
4
|
project introspection, deterministic ecosystem knowledge, and portable review
|
|
5
5
|
or architecture prompt bundles.
|
|
6
6
|
|
|
@@ -64,7 +64,7 @@ Codex, Claude, or any other model provider directly. They return deterministic
|
|
|
64
64
|
findings plus a reusable prompt bundle that can be sent to the local model plan
|
|
65
65
|
or provider of your choice.
|
|
66
66
|
|
|
67
|
-
Downstream
|
|
67
|
+
Downstream s-m-r-t packages/apps can publish their own scoped
|
|
68
68
|
`smrt-knowledge.json` artifact. Discovery prefers local
|
|
69
69
|
`.smrt/smrt-knowledge.json`, then `dist/smrt-knowledge.json`, then source
|
|
70
70
|
manifest artifacts before falling back to raw manifest/doc scanning. The runtime
|
|
@@ -102,7 +102,7 @@ smrt knowledge:architecture-context "tenant-aware publishing workflow" --format
|
|
|
102
102
|
The package ships harness-agnostic agent skills under `agent-skills/`.
|
|
103
103
|
|
|
104
104
|
Downstream agents should fetch the review procedure before starting a formal
|
|
105
|
-
|
|
105
|
+
s-m-r-t review:
|
|
106
106
|
|
|
107
107
|
```json
|
|
108
108
|
{
|
|
@@ -126,7 +126,7 @@ The server exposes these MCP tools:
|
|
|
126
126
|
|
|
127
127
|
### `generate-smrt-class`
|
|
128
128
|
|
|
129
|
-
Generate a complete
|
|
129
|
+
Generate a complete s-m-r-t class with `@smrt()` decorator, fields, and imports.
|
|
130
130
|
|
|
131
131
|
| Parameter | Type | Required | Description |
|
|
132
132
|
|-----------|------|----------|-------------|
|
|
@@ -148,7 +148,7 @@ Supported property types: `text`, `integer`, `decimal`, `boolean`, `datetime`, `
|
|
|
148
148
|
|
|
149
149
|
### `introspect-project`
|
|
150
150
|
|
|
151
|
-
Scan a project directory for
|
|
151
|
+
Scan a project directory for s-m-r-t objects and return a manifest-equivalent
|
|
152
152
|
class/field/relationship report. Discovery prefers `.smrt/manifest.json`, then
|
|
153
153
|
`dist/manifest.json`, then `src/manifest/manifest.json`; when no artifact is
|
|
154
154
|
available it falls back to `@happyvertical/smrt-scanner`.
|
|
@@ -179,7 +179,7 @@ and suggested follow-up issue titles; it does not modify files.
|
|
|
179
179
|
### `reflect-knowledge`
|
|
180
180
|
|
|
181
181
|
Return package coverage, SDK package coverage, relationship-v2 counts, and
|
|
182
|
-
freshness status from the deterministic
|
|
182
|
+
freshness status from the deterministic s-m-r-t + HappyVertical SDK knowledge
|
|
183
183
|
index.
|
|
184
184
|
|
|
185
185
|
| Parameter | Type | Required | Description |
|
|
@@ -222,7 +222,7 @@ Alias over the deterministic checker that emphasizes downstream
|
|
|
222
222
|
|
|
223
223
|
### `build-review-context`
|
|
224
224
|
|
|
225
|
-
Select relevant
|
|
225
|
+
Select relevant s-m-r-t and HappyVertical SDK package expertise for changed files,
|
|
226
226
|
then return a model-ready prompt bundle.
|
|
227
227
|
|
|
228
228
|
| Parameter | Type | Required | Description |
|
|
@@ -251,7 +251,7 @@ Return deterministic review findings, a prompt bundle, or both.
|
|
|
251
251
|
|
|
252
252
|
### `build-architecture-context`
|
|
253
253
|
|
|
254
|
-
Select relevant
|
|
254
|
+
Select relevant s-m-r-t and SDK package expertise for an idea or documentation,
|
|
255
255
|
then return a model-ready architecture prompt bundle.
|
|
256
256
|
|
|
257
257
|
| Parameter | Type | Required | Description |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@happyvertical/smrt-dev-mcp",
|
|
3
|
-
"version": "0.40.
|
|
3
|
+
"version": "0.40.15",
|
|
4
4
|
"description": "Development MCP server for SMRT framework knowledge, review context, architecture context, and code generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"license": "MIT",
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
44
|
-
"@happyvertical/smrt-core": "0.40.
|
|
45
|
-
"@happyvertical/smrt-
|
|
46
|
-
"@happyvertical/smrt-
|
|
44
|
+
"@happyvertical/smrt-core": "0.40.15",
|
|
45
|
+
"@happyvertical/smrt-types": "0.40.15",
|
|
46
|
+
"@happyvertical/smrt-scanner": "0.40.15"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/node": "24.13.2",
|