narrator-ai-cli-skill

作者 GridLtd-ProductDev已验证

AI Agent skill for narrator-ai-cli — CLI client for Narrator AI video narration API

465
Stars
67
Forks
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/GridLtd-ProductDev/narrator-ai-cli-skill

快速入门

使用 narrator-ai-cli-skill 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

🧠 Narrator AI CLI Skill — Teach Your AI Agent to Create Movie Narration Videos

中文文档

Install this Skill in your AI agent (OpenClaw, Windsurf, WorkBuddy, etc.), then just say "create a movie narration video" — the AI handles the rest.

What is this?

A machine-readable skill file (SKILL.md) that teaches AI agents how to use the narrator-ai-cli tool for automated video narration production.

You say: "Create a narration video for Pegasus in a comedy style"

AI executes: Search movie → Select template → Choose BGM → Pick voice → Generate script → Compose video → Return download link

How CLI and Skill work together

CLI (command-line tool)Skill (capability description)
What it isA set of executable commandsInstructions that teach AI how to use those commands
AnalogyKitchen toolsA recipe book
Works alone?Yes, in terminal manuallyNo, requires CLI

In short: CLI is the hands. Skill is the brain. Together, the AI agent can produce videos end-to-end.


Quick Start

Step 1: Install the CLI tool

pip install "narrator-ai-cli @ git+https://github.com/NarratorAI-Studio/narrator-ai-cli.git"

See narrator-ai-cli for detailed installation options.

Step 2: Configure API key

narrator-ai-cli config set app_key <your_app_key>

📧 Need an API key? Email merlinyang@gridltd.com or scan the QR code at the bottom of this page.

Step 3: Install the Skill

The skill consists of SKILL.md and the references/ directory — both are required. Clone the repo directly into your agent's skills folder:

OpenClaw:

mkdir -p ~/.openclaw/skills
git clone https://github.com/NarratorAI-Studio/narrator-ai-cli-skill.git \
  ~/.openclaw/skills/narrator-ai-cli

Windsurf / Claude Code:

mkdir -p /path/to/your/project/.skills
git clone https://github.com/NarratorAI-Studio/narrator-ai-cli-skill.git \
  /path/to/your/project/.skills/narrator-ai-cli

Cursor:

mkdir -p /path/to/your/project/.cursor/rules
git clone https://github.com/NarratorAI-Studio/narrator-ai-cli-skill.git \
  /path/to/your/project/.cursor/rules/narrator-ai-cli

Any markdown-reading agent:

mkdir -p /path/to/agent/skills
git clone https://github.com/NarratorAI-Studio/narrator-ai-cli-skill.git \
  /path/to/agent/skills/narrator-ai-cli

WorkBuddy / QClaw (Tencent):

Upload SKILL.md and the entire references/ folder through the skill management UI, keeping the directory structure intact (references/ must remain a subfolder alongside SKILL.md — do not flatten the files).

💡 Tip: To update the skill later, just run git pull inside the cloned directory.

Step 4: Start talking!

Once installed, use natural language:

  • "Create a narration video for The Shawshank Redemption"
  • "Show me what movies are available"
  • "Make 5 narration videos for different action movies"
  • "Use a comedy template and generate a narration"


Tested Platforms

PlatformSetupStatus
OpenClawgit clone into skills directory✅ Verified
Windsurfgit clone into .skills directory✅ Verified
WorkBuddy (Tencent)Upload SKILL.md + all files in references/✅ Verified
QClaw (Tencent)Upload SKILL.md + all files in references/✅ Verified
Youdao Lobstergit clone into skills directory✅ Verified
Yuanqi AIgit clone into skills directory✅ Verified
Claude Codegit clone into project .skills directory✅ Verified
Cursorgit clone into .cursor/rules directory✅ Verified
Any markdown-skill agentgit clone repo, point agent to SKILL.md✅ Compatible

Capabilities

FeatureDetails
Two workflow pathsAdapted Narration and Original Narration
Three creation modesHot Drama / Original Mix / New Drama
Built-in resources~100 movies, 146 BGM tracks, 63 dubbing voices, 90+ narration templates
Full pipelineScript → Clip data → Video composing → Visual template
Standalone tasksVoice cloning, text-to-speech
Data flow mappingWhich output feeds into which input
Error handlingAll 18 API error codes with recommended actions
Cost estimationBudget verification before task creation

What's in SKILL.md

SectionDescription
FrontmatterSkill metadata (name, description, requirements)
Reference IndexPointers to detailed lookup tables in references/ (resources, workflows, magic-video, operations)
Pipeline at a GlanceASCII diagram of Fast Path and Standard Path
Agent RulesMandatory rules: confirm before acting, language chain, polling pattern, etc.
PrerequisitesAssumes narrator-ai-cli is installed and NARRATOR_APP_KEY is set
Core ConceptsKey terms: file_id, task_id, task_order_num, etc.
Conversation InitiationHow to open a session and the decision sequence
Two Workflow PathsFast Path (Original Narration) vs Standard Path (Adapted Narration)
Resource Selection ProtocolBGM, dubbing, template selection order and rules
Fast PathSteps 0–4 with parameter notes
Standard PathSteps 0–5 with parameter notes
Standalone TasksVoice clone and TTS
Important Notes7 critical gotchas and best practices
Data & PrivacyAPI endpoint, file handling, credentials scope

Requirements

  • CLI: narrator-ai-cli v1.0.0+
  • Python: 3.10+
  • Dependencies: typer, httpx[socks], httpx-sse, pyyaml, rich
  • API key: Contact us to get one

Links

Contact

Need an API key or help?

Contact us

License

MIT

常见问题

What is narrator-ai-cli-skill?

narrator-ai-cli-skill is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by GridLtd-ProductDev. AI Agent skill for narrator-ai-cli — CLI client for Narrator AI video narration API. It has 465 GitHub stars.

Is narrator-ai-cli-skill safe to use?

Yes. narrator-ai-cli-skill passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install narrator-ai-cli-skill?

Clone the repository with "git clone https://github.com/GridLtd-ProductDev/narrator-ai-cli-skill" and add it to your Claude Code skills directory (see the Installation section above). narrator-ai-cli-skill ships a SKILL.md manifest, so compatible agents can discover and load it automatically.

Are there alternatives to narrator-ai-cli-skill?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh narrator-ai-cli-skill against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情