@focus-mcp/core
Advanced tools
+8
-4
@@ -395,7 +395,11 @@ import { Tracer } from '@opentelemetry/api'; | ||
| * Maps a DetectedStack to a list of recommended bricks, mirroring the | ||
| * decision tree in cli/docs/AGENT_GUIDE.md. Ordering is curated: | ||
| * decision tree in https://github.com/focus-mcp/cli/blob/main/docs/AGENT_GUIDE.md. | ||
| * Ordering is curated: | ||
| * - universal essentials first (filesystem-ish + search) | ||
| * - language-specific code intel next | ||
| * - framework-specific extras after | ||
| * - monorepo extras last | ||
| * - git next when version control is detected | ||
| * - then, depending on the primary stack: | ||
| * - monorepo: workspace extras (repos/impact/graphbuild/graphquery) | ||
| * followed by language-specific intel for each detected ecosystem | ||
| * - typescript/javascript/python/go/rust: language-specific intel | ||
| * followed by framework-specific extras (e.g. routes for next/fastapi/gin/axum) | ||
| * | ||
@@ -402,0 +406,0 @@ * Brick names match the official marketplace catalog. When a composite |
+66
-66
| { | ||
| "name": "@focus-mcp/core", | ||
| "version": "1.6.0-dev-ddbbd96742bb5ac614375eb1bb671d778c4f5c8a", | ||
| "private": false, | ||
| "description": "The runtime behind FocusMCP — Registry + EventBus + Router composing MCP bricks on demand. Browser-compatible, zero-dep, TypeScript strict.", | ||
| "keywords": [ | ||
| "mcp", | ||
| "model-context-protocol", | ||
| "ai", | ||
| "llm", | ||
| "claude", | ||
| "focus", | ||
| "bricks", | ||
| "orchestrator", | ||
| "registry", | ||
| "event-bus", | ||
| "router", | ||
| "sdk", | ||
| "context-engineering", | ||
| "agent-tools", | ||
| "typescript" | ||
| ], | ||
| "author": "FocusMCP contributors", | ||
| "homepage": "https://github.com/focus-mcp/core#readme", | ||
| "bugs": { | ||
| "url": "https://github.com/focus-mcp/core/issues" | ||
| }, | ||
| "license": "MIT", | ||
| "type": "module", | ||
| "main": "./dist/index.js", | ||
| "types": "./dist/index.d.ts", | ||
| "exports": { | ||
| ".": { | ||
| "types": "./dist/index.d.ts", | ||
| "import": "./dist/index.js" | ||
| "name": "@focus-mcp/core", | ||
| "version": "1.6.0", | ||
| "private": false, | ||
| "description": "The runtime behind FocusMCP — Registry + EventBus + Router composing MCP bricks on demand. Browser-compatible, zero-dep, TypeScript strict.", | ||
| "keywords": [ | ||
| "mcp", | ||
| "model-context-protocol", | ||
| "ai", | ||
| "llm", | ||
| "claude", | ||
| "focus", | ||
| "bricks", | ||
| "orchestrator", | ||
| "registry", | ||
| "event-bus", | ||
| "router", | ||
| "sdk", | ||
| "context-engineering", | ||
| "agent-tools", | ||
| "typescript" | ||
| ], | ||
| "author": "FocusMCP contributors", | ||
| "homepage": "https://github.com/focus-mcp/core#readme", | ||
| "bugs": { | ||
| "url": "https://github.com/focus-mcp/core/issues" | ||
| }, | ||
| "license": "MIT", | ||
| "type": "module", | ||
| "main": "./dist/index.js", | ||
| "types": "./dist/index.d.ts", | ||
| "exports": { | ||
| ".": { | ||
| "types": "./dist/index.d.ts", | ||
| "import": "./dist/index.js" | ||
| } | ||
| }, | ||
| "files": [ | ||
| "dist", | ||
| "README.md", | ||
| "LICENSE" | ||
| ], | ||
| "scripts": { | ||
| "build": "tsup", | ||
| "typecheck": "tsc --noEmit", | ||
| "test": "vitest run", | ||
| "test:watch": "vitest" | ||
| }, | ||
| "dependencies": { | ||
| "@opentelemetry/api": "^1.9.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/node": "^22.10.0", | ||
| "fast-check": "^3.23.0", | ||
| "typescript": "^5.7.0", | ||
| "vitest": "^3.2.0" | ||
| }, | ||
| "publishConfig": { | ||
| "access": "public", | ||
| "provenance": true, | ||
| "registry": "https://registry.npmjs.org" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/focus-mcp/core.git", | ||
| "directory": "packages/core" | ||
| } | ||
| }, | ||
| "files": [ | ||
| "dist", | ||
| "README.md", | ||
| "LICENSE" | ||
| ], | ||
| "dependencies": { | ||
| "@opentelemetry/api": "^1.9.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/node": "^22.10.0", | ||
| "fast-check": "^3.23.0", | ||
| "typescript": "^5.7.0", | ||
| "vitest": "^3.2.0" | ||
| }, | ||
| "publishConfig": { | ||
| "access": "public", | ||
| "provenance": true, | ||
| "registry": "https://registry.npmjs.org" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/focus-mcp/core.git", | ||
| "directory": "packages/core" | ||
| }, | ||
| "scripts": { | ||
| "build": "tsup", | ||
| "typecheck": "tsc --noEmit", | ||
| "test": "vitest run", | ||
| "test:watch": "vitest" | ||
| } | ||
| } | ||
| } |
-21
| MIT License | ||
| Copyright (c) 2026 FocusMCP contributors | ||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
| The above copyright notice and this permission notice shall be included in all | ||
| copies or substantial portions of the Software. | ||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| SOFTWARE. |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
325926
0.55%3107
0.42%0
-100%4
-20%