@linktr.ee/arbor-mcp 0.8.0 → 0.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/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6462,7 +6462,7 @@ function decisionSearchBlob(e) {
|
|
|
6462
6462
|
|
|
6463
6463
|
// src/lib/research.ts
|
|
6464
6464
|
var RESEARCH_ARTIFACT = "research-corpus.json";
|
|
6465
|
-
var RESEARCH_AREAS = ["component-research", "principle", "guideline"];
|
|
6465
|
+
var RESEARCH_AREAS = ["component-research", "principle", "guideline", "accessibility"];
|
|
6466
6466
|
var AREA_SET = new Set(RESEARCH_AREAS);
|
|
6467
6467
|
function asStringArray2(v) {
|
|
6468
6468
|
return Array.isArray(v) ? v.filter((s) => typeof s === "string") : [];
|
|
@@ -6563,7 +6563,7 @@ function toPrecedent(e, relevance) {
|
|
|
6563
6563
|
sections: e.sections.map((s) => ({ heading: s.heading, body: s.body }))
|
|
6564
6564
|
};
|
|
6565
6565
|
}
|
|
6566
|
-
var AREA_RANK = { "component-research": 0, principle: 1,
|
|
6566
|
+
var AREA_RANK = { "component-research": 0, principle: 1, accessibility: 2, guideline: 3 };
|
|
6567
6567
|
function matchResearch(entries, terms, max) {
|
|
6568
6568
|
if (!terms.length) return [];
|
|
6569
6569
|
return entries.map((e) => {
|
|
@@ -7558,7 +7558,7 @@ var compositions_default = [
|
|
|
7558
7558
|
</Menu>`
|
|
7559
7559
|
},
|
|
7560
7560
|
// ── MenuSectionHeading ──
|
|
7561
|
-
// Maps figma-mappings `MenuSectionHeading` (node
|
|
7561
|
+
// Maps figma-mappings `MenuSectionHeading` (node 14340-14894).
|
|
7562
7562
|
{
|
|
7563
7563
|
group: "MenuSectionHeading",
|
|
7564
7564
|
name: "MenuSectionHeading",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linktr.ee/arbor-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Model Context Protocol server exposing Arbor design system tools: Playroom snippets, Figma→code sync health, UX-writing checks, decision-log lookup, and federated component/version metadata.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"arbor",
|