@happyvertical/smrt-dev-mcp 0.30.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.
@@ -0,0 +1,8 @@
1
+ /**
2
+ * SMRT Development MCP Tools
3
+ * Exports all tool handlers
4
+ */
5
+ export { generateSmrtClass } from './generate-smrt-class.js';
6
+ export { introspectProject } from './introspect-project.js';
7
+ export { reviewSmrtProject } from './review-smrt-project.js';
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Project Introspection Tool
3
+ * Returns a manifest-equivalent inventory of SMRT objects in a project.
4
+ */
5
+ interface IntrospectProjectArgs {
6
+ directory?: string;
7
+ manifestPath?: string;
8
+ includeFields?: boolean;
9
+ includeRelationships?: boolean;
10
+ includeMethods?: boolean;
11
+ }
12
+ export declare function introspectProject(args: IntrospectProjectArgs): Promise<string>;
13
+ export {};
14
+ //# sourceMappingURL=introspect-project.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"introspect-project.d.ts","sourceRoot":"","sources":["../../src/tools/introspect-project.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAYH,UAAU,qBAAqB;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AA+GD,wBAAsB,iBAAiB,CACrC,IAAI,EAAE,qBAAqB,GAC1B,OAAO,CAAC,MAAM,CAAC,CAsEjB"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Ecosystem-aware downstream project review.
3
+ * Advisory only: scans manifests and source files, then reports alignment risks.
4
+ */
5
+ interface ReviewSmrtProjectArgs {
6
+ directory?: string;
7
+ rootDir?: string;
8
+ includeSourceEvidence?: boolean;
9
+ maxFindings?: number;
10
+ }
11
+ export declare function reviewSmrtProject(args: ReviewSmrtProjectArgs): Promise<string>;
12
+ export {};
13
+ //# sourceMappingURL=review-smrt-project.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"review-smrt-project.d.ts","sourceRoot":"","sources":["../../src/tools/review-smrt-project.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAMH,UAAU,qBAAqB;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AA0ED,wBAAsB,iBAAiB,CACrC,IAAI,EAAE,qBAAqB,GAC1B,OAAO,CAAC,MAAM,CAAC,CAyEjB"}
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@happyvertical/smrt-dev-mcp",
3
+ "version": "0.30.0",
4
+ "description": "Development MCP server for SMRT framework knowledge, review context, architecture context, and code generation",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "bin": {
9
+ "smrt-dev-mcp": "./dist/index.js"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js"
15
+ },
16
+ "./knowledge": {
17
+ "types": "./dist/knowledge.d.ts",
18
+ "import": "./dist/knowledge.js"
19
+ }
20
+ },
21
+ "files": [
22
+ "CLAUDE.md",
23
+ "README.md",
24
+ "dist",
25
+ "AGENTS.md",
26
+ "agent-skills"
27
+ ],
28
+ "publishConfig": {
29
+ "registry": "https://registry.npmjs.org",
30
+ "access": "public"
31
+ },
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/happyvertical/smrt.git",
35
+ "directory": "packages/smrt-dev-mcp"
36
+ },
37
+ "bugs": {
38
+ "url": "https://github.com/happyvertical/smrt/issues"
39
+ },
40
+ "homepage": "https://github.com/happyvertical/smrt/tree/main/packages/smrt-dev-mcp#readme",
41
+ "license": "MIT",
42
+ "dependencies": {
43
+ "@modelcontextprotocol/sdk": "^1.25.2",
44
+ "@happyvertical/smrt-core": "0.30.0",
45
+ "@happyvertical/smrt-types": "0.30.0",
46
+ "@happyvertical/smrt-scanner": "0.30.0"
47
+ },
48
+ "devDependencies": {
49
+ "@types/node": "25.0.9",
50
+ "typescript": "^5.9.3",
51
+ "vite": "^7.3.1",
52
+ "vite-plugin-dts": "^4.5.4",
53
+ "vitest": "^4.0.17"
54
+ },
55
+ "author": "HappyVertical",
56
+ "scripts": {
57
+ "test": "vitest run",
58
+ "test:watch": "vitest",
59
+ "typecheck": "tsc --noEmit -p tsconfig.json",
60
+ "build": "vite build",
61
+ "build:watch": "vite build --watch",
62
+ "clean": "rm -rf dist",
63
+ "dev": "npm run build:watch & npm run test:watch",
64
+ "verify:pack": "node ../../scripts/verify-package-types-exports.js . && node scripts/verify-build-artifacts.mjs"
65
+ }
66
+ }