@viasat/beam-react-claude-plugin 2.39.2 → 2.39.3
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/.claude-plugin/plugin.json +2 -2
- package/README.md +15 -5
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "beam-react-claude-plugin",
|
|
4
4
|
"displayName": "Beam React Claude Plugin",
|
|
5
5
|
"description": "Equips AI tools with Beam Design System context for building, auditing, and answering implementation questions across tokens, components and data sources in React.",
|
|
6
|
-
"version": "2.39.
|
|
6
|
+
"version": "2.39.3",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Viasat",
|
|
9
9
|
"url": "https://git.viasat.com/vega/beam"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"command": "npx",
|
|
16
16
|
"args": [
|
|
17
17
|
"-y",
|
|
18
|
-
"@viasat/beam-react-mcp@2.39.
|
|
18
|
+
"@viasat/beam-react-mcp@2.39.3"
|
|
19
19
|
]
|
|
20
20
|
}
|
|
21
21
|
}
|
package/README.md
CHANGED
|
@@ -20,21 +20,28 @@ props, stories, and concept docs.
|
|
|
20
20
|
|
|
21
21
|
## ⬇️ Installing it
|
|
22
22
|
|
|
23
|
+
> **Note:** `/plugin` commands are Claude Code slash commands. Run them inside the Claude Code CLI, not in a raw terminal, the desktop app, or the VS Code Claude extension.
|
|
24
|
+
|
|
23
25
|
### 🏢 Via Beam internal Claude plugin marketplace
|
|
24
26
|
|
|
25
27
|
On VPN, add the Beam repo as a marketplace:
|
|
26
28
|
|
|
27
|
-
```
|
|
29
|
+
```
|
|
28
30
|
/plugin marketplace add git@git.viasat.com:vega/beam.git
|
|
29
31
|
/plugin install beam-react-claude-plugin
|
|
30
32
|
```
|
|
31
33
|
|
|
32
34
|
### 📦 Via npm
|
|
33
35
|
|
|
34
|
-
Off VPN, install
|
|
36
|
+
Off VPN, install the npm package in your terminal first:
|
|
35
37
|
|
|
36
38
|
```bash
|
|
37
39
|
npm install --save-dev @viasat/beam-react-claude-plugin
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Then run these commands inside the Claude Code CLI:
|
|
43
|
+
|
|
44
|
+
```
|
|
38
45
|
/plugin marketplace add ./node_modules/@viasat/beam-react-claude-plugin
|
|
39
46
|
/plugin install beam-react-claude-plugin@beam
|
|
40
47
|
```
|
|
@@ -45,11 +52,11 @@ npm install --save-dev @viasat/beam-react-claude-plugin
|
|
|
45
52
|
|
|
46
53
|
To update on VPN use:
|
|
47
54
|
|
|
48
|
-
```
|
|
55
|
+
```
|
|
49
56
|
/plugin update beam-react-claude-plugin
|
|
50
57
|
```
|
|
51
58
|
|
|
52
|
-
|
|
59
|
+
Then run `/reload-plugins` in the Claude Code CLI.
|
|
53
60
|
|
|
54
61
|
### 📦 Via npm
|
|
55
62
|
|
|
@@ -57,10 +64,13 @@ Off VPN, update the npm package and then the marketplace:
|
|
|
57
64
|
|
|
58
65
|
```bash
|
|
59
66
|
npm i @viasat/beam-react-claude-plugin@latest
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
```
|
|
60
70
|
/plugin marketplace update beam
|
|
61
71
|
```
|
|
62
72
|
|
|
63
|
-
|
|
73
|
+
Then run `/reload-plugins` in the Claude Code CLI.
|
|
64
74
|
|
|
65
75
|
## 🖥️ Non Claude Code users
|
|
66
76
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viasat/beam-react-claude-plugin",
|
|
3
|
-
"version": "2.39.
|
|
3
|
+
"version": "2.39.3",
|
|
4
4
|
"description": "Claude Code plugin that reduces AI hallucinations on Beam usage. Ships skills, reference docs, and a user-invocable token audit command.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Viasat",
|