takumi-cli 1.2.2 → 1.2.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/README.md +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -87,7 +87,7 @@ takumi info ./videos
|
|
|
87
87
|
|
|
88
88
|
## AI Integration (MCP)
|
|
89
89
|
|
|
90
|
-
takumi includes an MCP server so AI clients like Claude Code and Kiro can use all commands as tools. No syntax to remember
|
|
90
|
+
takumi includes an MCP server so AI clients like Claude Code and Kiro can use all commands as tools. No syntax to remember, just describe what you want.
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
93
|
takumi mcp-config
|
|
@@ -99,6 +99,15 @@ This prints the JSON config block for each client. Paste the relevant one into:
|
|
|
99
99
|
- **Claude Code:** `~/.claude.json` or project `.mcp.json` (uses `"mcpServers"`)
|
|
100
100
|
- **Kiro:** `.kiro/settings/mcp.json` (uses `"mcpServers"`)
|
|
101
101
|
|
|
102
|
+
Once configured, just ask in natural language:
|
|
103
|
+
|
|
104
|
+
- "convert all the videos in ~/projects/campaign for FireTV"
|
|
105
|
+
- "what's the resolution and duration of this video?"
|
|
106
|
+
- "generate Japanese captions for the videos in this folder"
|
|
107
|
+
- "trim the intro, keep only 00:01:30 to 00:04:00"
|
|
108
|
+
- "extract the audio from meeting.mp4"
|
|
109
|
+
- "make a gif from the first 5 seconds of demo.mp4"
|
|
110
|
+
|
|
102
111
|
## Update
|
|
103
112
|
|
|
104
113
|
```bash
|