vidistill 0.6.0 → 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.0";
5905
+ var version = "0.6.2";
5906
5906
  var DEFAULT_OUTPUT2 = "./vidistill-output/";
5907
5907
  var SUBCOMMANDS = {
5908
5908
  mcp: run,
@@ -5940,13 +5940,13 @@ Commands: ${Object.keys(SUBCOMMANDS).join(", ")}`
5940
5940
  }
5941
5941
  },
5942
5942
  async run({ args }) {
5943
- showLogo();
5944
- showIntro();
5945
5943
  const name = args.input;
5946
5944
  if (name != null && name in SUBCOMMANDS) {
5947
5945
  await SUBCOMMANDS[name](process.argv.slice(3));
5948
5946
  return;
5949
5947
  }
5948
+ showLogo();
5949
+ showIntro();
5950
5950
  try {
5951
5951
  await runDistill({
5952
5952
  input: args.input,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vidistill",
3
- "version": "0.6.0",
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",