vidistill 0.6.1 → 0.6.2

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 CHANGED
@@ -112,17 +112,10 @@ vidistill can run as an MCP server, letting AI coding tools (Claude Code, Cursor
112
112
  vidistill mcp
113
113
  ```
114
114
 
115
- To configure in Claude Code, add to `~/.claude/claude_code_config.json`:
116
-
117
- ```json
118
- {
119
- "mcpServers": {
120
- "vidistill": {
121
- "command": "npx",
122
- "args": ["vidistill", "mcp"]
123
- }
124
- }
125
- }
115
+ To configure in Claude Code:
116
+
117
+ ```bash
118
+ claude mcp add vidistill -- npx vidistill mcp
126
119
  ```
127
120
 
128
121
  **Tools exposed:**
package/dist/index.js CHANGED
@@ -5902,7 +5902,7 @@ async function run2(args) {
5902
5902
  }
5903
5903
 
5904
5904
  // src/cli/index.ts
5905
- var version = "0.6.1";
5905
+ var version = "0.6.2";
5906
5906
  var DEFAULT_OUTPUT2 = "./vidistill-output/";
5907
5907
  var SUBCOMMANDS = {
5908
5908
  mcp: run,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vidistill",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Video intelligence distiller — extract structured notes, transcripts, and insights from any video using Gemini",
5
5
  "type": "module",
6
6
  "license": "MIT",