@work-graph/cli 0.2.0 → 0.2.1
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/package.json
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# BVC dialect registry (pilot)
|
|
2
|
+
|
|
3
|
+
JSON-каталог локализованных ключей BVC-атома. Канон: [ADR `docs/adr-bvc-multilingual-keys.md`](../../docs/adr-bvc-multilingual-keys.md), [AN-19](../../work/analytics/bvc-multilingual-keys-design.md).
|
|
4
|
+
|
|
5
|
+
Публичная цель — репозиторий `bvc-lang/dialects`. Здесь pilot для Work Graph / `@bvc/parser`.
|
|
6
|
+
|
|
7
|
+
Контракт:
|
|
8
|
+
|
|
9
|
+
- `bvc` — обязательные ключи (Basis/Vector/Goal/Labels).
|
|
10
|
+
- `optional` — расширенные секции work item (Checks, Analysis, …).
|
|
11
|
+
- Profile и label keys (`work.id`, `trace.status`) **не** входят в dialect.
|
|
12
|
+
|
|
13
|
+
Добавление dialect — PR с уникальными localized strings без коллизий с EN и другими dialect.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "en",
|
|
3
|
+
"canonical": true,
|
|
4
|
+
"bvc": {
|
|
5
|
+
"basis": "Basis",
|
|
6
|
+
"vector": "Vector",
|
|
7
|
+
"goal": "Goal",
|
|
8
|
+
"labels": "Labels"
|
|
9
|
+
},
|
|
10
|
+
"optional": {
|
|
11
|
+
"checks": "Checks",
|
|
12
|
+
"evidence": "Evidence",
|
|
13
|
+
"analysis": "Analysis",
|
|
14
|
+
"decision": "Decision",
|
|
15
|
+
"uiRefs": "UI_References"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "ru",
|
|
3
|
+
"canonical": false,
|
|
4
|
+
"bvc": {
|
|
5
|
+
"basis": "Базис",
|
|
6
|
+
"vector": "Вектор",
|
|
7
|
+
"goal": "Цель",
|
|
8
|
+
"labels": "Метки"
|
|
9
|
+
},
|
|
10
|
+
"optional": {
|
|
11
|
+
"checks": "Проверки",
|
|
12
|
+
"evidence": "Свидетельства",
|
|
13
|
+
"analysis": "Анализ",
|
|
14
|
+
"decision": "Решение",
|
|
15
|
+
"uiRefs": "Референсы_UI"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@work-graph/mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "MCP server for Work Graph WorkItems",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@work-graph/cli": "^0.2.
|
|
19
|
+
"@work-graph/cli": "^0.2.1",
|
|
20
20
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
21
21
|
"zod": "^3.25.76"
|
|
22
22
|
},
|
|
@@ -20,8 +20,8 @@ export {
|
|
|
20
20
|
|
|
21
21
|
const CONFIG_SCHEMA_V1 = 'workgraph.project.config.v1';
|
|
22
22
|
const CONFIG_SCHEMA_V2 = 'workgraph.project.config.v2';
|
|
23
|
-
const DEFAULT_CLI_VERSION = '0.2.
|
|
24
|
-
const DEFAULT_MCP_VERSION = '0.2.
|
|
23
|
+
const DEFAULT_CLI_VERSION = '0.2.1';
|
|
24
|
+
const DEFAULT_MCP_VERSION = '0.2.1';
|
|
25
25
|
|
|
26
26
|
const INDEX_STUB = `#Index<[
|
|
27
27
|
WorkItems:
|