@bicharts/chart-mcp 0.2.1 → 0.3.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/README.md +15 -0
- package/dist/index.mjs +30 -30
- package/package.json +4 -3
- package/skills/bic-charts/SKILL.md +122 -0
package/README.md
CHANGED
|
@@ -172,6 +172,21 @@ visual (the MCP hits the same billed endpoint):
|
|
|
172
172
|
|
|
173
173
|
The response header line shows `credits: N` so you can see what each call cost.
|
|
174
174
|
|
|
175
|
+
## The agent skill (recommended)
|
|
176
|
+
|
|
177
|
+
This package ships `skills/bic-charts/SKILL.md` — the golden path from empty directory to a
|
|
178
|
+
working cross-filtered dashboard: the scaffold command block, when to use the authoritative
|
|
179
|
+
contract parameters instead of `prompt` prose, the coordinated-dashboard recipe, and the
|
|
180
|
+
handful of places builds measurably lose time. Copy it where your agent looks for skills:
|
|
181
|
+
|
|
182
|
+
```powershell
|
|
183
|
+
mkdir -Force .claude\skills
|
|
184
|
+
Copy-Item -Recurse (npm root)\@bicharts\chart-mcp\skills\bic-charts .claude\skills\
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
An agent that reads it first does in a few calls what otherwise takes thirty — most of the
|
|
188
|
+
difference is not knowing the API, it is not knowing the shape of the answer.
|
|
189
|
+
|
|
175
190
|
## Register with Claude Code
|
|
176
191
|
|
|
177
192
|
```powershell
|