vistaview 2.0.5 → 2.0.6
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 +20 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -208,6 +208,26 @@ Available extensions:
|
|
|
208
208
|
| `vistaview/extensions/image-story` | Instagram-style story layout |
|
|
209
209
|
| `vistaview/extensions/logger` | Debug logging |
|
|
210
210
|
|
|
211
|
+
## AI Tooling
|
|
212
|
+
|
|
213
|
+
VistaView's documentation is agent-ready. AI assistants can look up docs, check versions, and verify build status via [MCP Server](https://vistaview.jujiplay.com/ai-integration/):
|
|
214
|
+
|
|
215
|
+
```json
|
|
216
|
+
{
|
|
217
|
+
"mcpServers": {
|
|
218
|
+
"vistaview": {
|
|
219
|
+
"url": "https://vistaview.jujiplay.com/mcp"
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
- `get_package_info` — npm registry
|
|
226
|
+
- `get_build_status` — GitHub Actions
|
|
227
|
+
- `search_docs` — search all docs
|
|
228
|
+
|
|
229
|
+
Or just set `Accept: text/markdown` on any doc URL for clean markdown.
|
|
230
|
+
|
|
211
231
|
## Development
|
|
212
232
|
|
|
213
233
|
```bash
|